Overview
This endpoint can be used to delete a manual reserve of a product.
In order to consume the endpoint, you must:
- Be authenticated user
For information on how you can authenticate, see: Authentication.
As soon as you do authentication and receive a valid token, it needs to be passed to the call.
Endpoint
Example for such endpoint for server XX is https://xx.api.sellercloud.com/rest/api/Inventory/ManualReserves/Delete
For your server endpoint will be:
https://{your_server_id}.api.sellercloud.com/rest/api/Inventory/ManualReserves/Delete
Request
- Method Type: HttpPost
- Authorization: Use Bearer Token + token received from token authentication
- Header info: Content-Type: application/json
- Parameters:
Parameter | Data Type | Description | Required |
ProductId | String | ID of a product | Yes |
ReserveId | Long | ID of a manual reserve | Yes |
Response
- If the user is authenticated and the request is successful, then the response will be Status Code 200 => OK.
- If the user is not authenticated, then the response will be Status Code 401 => Not Valid Token.
- In case of error, the response will be Status Code 500 => Internal Server Error.
- In case of incorrect request, the response will be with Status Code 400 Bad Request.