FulfillmentCartons

Create Carton

Create a new carton

POST
/shipos/cartons
x-access-token<token>

In: header

Request Body

application/json

The fields needed to create a carton

The fields needed to create a carton

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X POST "https://example.com/shipos/cartons" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "length": 0.1,    "width": 0.1,    "height": 0.1,    "weight": 0.1  }'
{  "updated_at": "2019-08-24T14:15:22Z",  "created_at": "2019-08-24T14:15:22Z",  "team_id": "string",  "default": true,  "weight": 0.1,  "weight_unit": "G",  "height": 0.1,  "width": 0.1,  "length": 0.1,  "measurement_unit": "MM",  "name": "string",  "id": "string"}