Optimization Management
Update Optimization
Request
The /optimizations/update
API accepts requests in the following format:
UpdateOptimizationRequest Model - Updates the name of an optimization. | |
---|---|
optimizationId | string Optimization ID we want to update. |
name | string Name we'd like to assign to the optimization. |
Example |
{ "optimizationId": "string", "name": "string" } |
Responses
The /optimizations/update
API provides a response in the following format:
200 Success
RestResponse Model - Base API response class for the QuantConnect API. | |
---|---|
success | boolean Indicate if the API request was successful. |
errors | string Array List of errors with the API call. |
Example |
{ "success": true, "errors": [ "string" ] } |
401 Authentication Error
UnauthorizedError Model - Unauthorized response from the API. Key is missing, invalid, or timestamp is too old for hash. | |
---|---|
www_authenticate | string Header |