Object Store Management
Delete Object Store File
Request
Delete the Object Store file of a specific organization and key. The /object/delete
API accepts requests in the following format:
DeleteObjectStoreRequest Model - Request to delete Object Store metadata of a specific organization and key. | |
---|---|
organizationId | string Organization ID we'd like to delete the Object Store file from. |
key | string Key to the Object Store file. |
Example |
{ "organizationId": "string", "key": "string" } |
Responses
The /object/delete
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 |