Detalhes de estoque
Endpoint: /v1/stocks/{id}
http
GET /v1/stocks/{id} HTTP/1.1
Host: sandbox.tristarexpress.com
Accept: application/json
Authorization: {{ token }}
Você pode utilizar esse endpoint para obter detalhes de um estoque específico, como a quantidade de itens em estoque.
Exemplo
http
GET /v1/stocks/1 HTTP/1.1
Host: sandbox.tristarexpress.com
Accept: application/json
Authorization: {{ token }}
Resposta:
json
{
"data": [
{
"id": 1,
"provider_id": 1,
"provider": {
"id": 1,
"name": "Fulfillment Tri MIA",
"company_id": 1
},
"stock_status": 10,
"stock_status_text": "Active",
"items": [
{
"id": 1,
"inventory_id": 1,
"inventory": {
"id": 1,
"sku": "98743512341",
"inventory_item_type": 40,
"title": "CBD Oil: TRISTAR EXPRESS CBD - Tincture CBD + CBN - 750mg - 30ml",
"hscode": "151590801",
"weight": 0.8,
"weight_unit_type": 10,
"description": null,
"inventory_status": 1,
"partner_id": 67,
"fulfillment_id": 11,
"ean13": null,
"manufacture_country_id": null
},
"lot": "LOT-2025-01-01",
"expiration_date": "2025-02-01T00:00:00.000000Z",
"quantity": 10,
"declared_quantity": 0,
"reserved_quantity": 0,
"draft_quantity": 0,
"created_at": "2024-01-06T10:58:19.000000Z",
"updated_at": "2024-01-31T00:19:37.000000Z"
}
]
}
]
}

