POST /manifests.json

POST /manifests.json
application/json

Body Required

Responses

POST /manifests.json
curl \
 -X POST http://api.example.com/v1/manifests.json \
 -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": "2023-05-04T09:42:00+00:00",
  "documents": [
    "string"
  ],
  "dropshipProviderId": 42,
  "externalId": "string",
  "id": 42,
  "updatedAt": "2023-05-04T09:42:00+00:00",
  "warehouseId": 42
}