Putaways
Get All Putaways
HTTP Request
GET /putaways
Query Parameters
See pagination
Example
- Request
- Response
$ curl --request GET --url 'https://app.winesitting.com/api/v2/putaways' \
--header 'Authorization: Bearer YourBearerToken' \
--header 'content-type: application/json'
[
{
"id": 3,
"status": {
"value": 35,
"name": "ACQUITTING",
"label": "En cours d'acquittement"
},
"expeditor": null,
"reference": null,
"warehouse": {
"id": 4,
"public_name": "WineSitting Wissous B",
"street1": "14/16 bd Arago",
"street2": "",
"city": "Wissous",
"zipcode": "91320",
"country": "FR"
},
"validatedAt": {
"date": "2024-08-28 11:55:27.000000",
"timezone_type": 3,
"timezone": "Europe/Paris"
},
"content": [
{
"id": 93867,
"wine": "Abbazia di Propezzano",
"color": "Rouge",
"country": "IT",
"region": "Abruzzes",
"appelation": "Montepulciano d'Abruzzo",
"description": null,
"ranking": null,
"millesime": 2020,
"alcohol": 13.5,
"format": 0.75,
"price": null,
"comment": null,
"quantity": 6,
"box": "bottles",
"reference": "93867|0.75|bottles"
},
{
"id": 15800,
"wine": "Yalumba",
"color": "Rouge",
"country": "AU",
"region": "Australie",
"appelation": "Eden Valley",
"description": "FDR1A",
"ranking": null,
"millesime": 2010,
"alcohol": 13.5,
"format": 0.15,
"price": null,
"comment": null,
"quantity": 6,
"box": "CBO6",
"reference": "15800|0.15|CBO6"
}
]
},
...
]
Get a Specific Putaway
This endpoint retrieves a specific Putaway.
HTTP Request
GET /putaways/{id}
Query Parameters
Parameter | Description |
---|---|
id | The id of the Putaway to retrieve |
Example
- Request
- Response
$ curl --request GET --url 'https://app.winesitting.com/api/v2/putaways/3' \
--header 'Authorization: Bearer YourBearerToken' \
--header 'content-type: application/json'
{
"id": 3,
"status": {
"value": 35,
"name": "ACQUITTING",
"label": "En cours d'acquittement"
},
"expeditor": null,
"reference": null,
"warehouse": {
"id": 4,
"public_name": "WineSitting Wissous B",
"street1": "14/16 bd Arago",
"street2": "",
"city": "Wissous",
"zipcode": "91320",
"country": "FR"
},
"validatedAt": {
"date": "2024-08-28 11:55:27.000000",
"timezone_type": 3,
"timezone": "Europe/Paris"
},
"content": [
{
"id": 93867,
"wine": "Abbazia di Propezzano",
"color": "Rouge",
"country": "IT",
"region": "Abruzzes",
"appelation": "Montepulciano d'Abruzzo",
"description": null,
"ranking": null,
"millesime": 2020,
"alcohol": 13.5,
"format": 0.75,
"price": null,
"comment": null,
"quantity": 6,
"box": "bottles",
"reference": "93867|0.75|bottles"
},
{
"id": 15800,
"wine": "Yalumba",
"color": "Rouge",
"country": "AU",
"region": "Australie",
"appelation": "Eden Valley",
"description": "FDR1A",
"ranking": null,
"millesime": 2010,
"alcohol": 13.5,
"format": 0.15,
"price": null,
"comment": null,
"quantity": 6,
"box": "CBO6",
"reference": "15800|0.15|CBO6"
}
]
}