Skip to main content

Putaways

Get All Putaways

This endpoint retrieves all putaways associated to current user.

HTTP Request

GET /v1/putaways

Query Parameters

ParameterDefaultDescription
page1The current page
count30The number of items per page

Example

$ curl --request GET --url 'https://app.winesitting.com/v1/putaways' \
--header 'AccessKey: YourAccessKey' \
--header 'SecretKey: YourSecretKey' \
--header 'content-type: application/json'

Get a Specific Putaway

This endpoint retrieves a specific Putaway.

HTTP Request

GET /v1/putaways/{id}

URL Parameters

ParameterDescription
idThe id of the Putaway to retrieve
info

You can't get a Putaway that you don't own.

Example

$ curl --request GET --url 'https://app.winesitting.com/v1/putaways/28' \
--header 'AccessKey: YourAccessKey' \
--header 'SecretKey: YourSecretKey' \
--header 'content-type: application/json'