Get Manual Reserves - Sellercloud API Docs

Overview

This endpoint can be used to get the manual reserves for an existing product.

In order to consume the endpoint, you must:

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

An example of such endpoint for server XX is: https://xx.api.sellercloud.com/rest/api/Inventory/ManualReserves/Get

For your server endpoint will be:

https://{your_server_id}.api.sellercloud.com/rest/api/Inventory/ManualReserves/Get

Request

Parameter Data Type Description Required
ProductId String ID of existing product Yes
PageNumber Integer Page number
Records are returned in pages. This is the requested page number.
Optional. Default is 1.
No
PageSize Integer Page size
Records are returned in pages. This is the requested page size.
Minimum page size is 10. Maximum page size is 50.
Optional. Default is 10.
No

Response

Response Body

{

“ProductId”: “string”,

“ManualReserves”: [

{

“ReserveId”: 0,

“ProductId”: “string”,

“Channel”: 0,

“WarehouseId”: 0,

“WarehouseName”: “string”,

“Quantity”: 0,

“TotalOrders”: 0,

“StartDate”: “2023-07-17T17:40:56.700Z”,

“EndDate”: “2023-07-17T17:40:56.700Z”,

“ReserveType”: 0,

“CreatedOn”: “2023-07-17T17:40:56.700Z”,

“CustomerId”: 0,

“CustomerName”: “string”,

“CreatedById”: 0,

“CreatedByName”: “string”,

“IsActive”: true

}

],

“TotalManualReserves”: 0

}