Get forms for shipments
POST /sellers/v3/shipments/:shipmentIds/forms
This operation returns the forms associated with the shipments.
Path Parameters
- shipmentIds string required
Comma separated shipment ids. Maximum 100 shipment ids allowed per request.
Responses
- 200
successful operation
- application/json
- Schema
- Example (from schema)
Schema
shipments object[]
Array [shipmentId stringforms object[]
Array [name stringlink stringautomated booleanstatus string]]
{
"shipments": [
{
"shipmentId": "string",
"forms": [
{
"name": "string",
"link": "string",
"automated": true,
"status": "string"
}
]
}
]
}
Loading...