POST /manifests.json
Body Required
-
Documents
-
dropshipProviderId integer(int32) | null
Dropship provider
-
External
-
warehouseId integer(int32) | null
Warehouse
POST /manifests.json
curl \
-X POST http://api.example.com/v1/manifests.json \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"documents":["string"],"dropshipProviderId":42,"externalId":"string","warehouseId":42}'
Request example
{
"documents": [
"string"
],
"dropshipProviderId": 42,
"externalId": "string",
"warehouseId": 42
}
Response examples (200)
{
"createdAt": "2024-05-04T09:42:00+00:00",
"documents": [
"string"
],
"dropshipProviderId": 42,
"externalId": "string",
"id": 42,
"updatedAt": "2024-05-04T09:42:00+00:00",
"warehouseId": 42
}