curl --request POST \
--url https://app.skulabs.com/s/ship/shipping/set_manifested \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"store_id": "507f1f77bcf86cd799439011",
"order_number": "<string>",
"skulabs_shipment_id": "507f1f77bcf86cd799439011",
"flag": true
}
'{
"_id": "507f1f77bcf86cd799439011",
"shipments": [
{
"_id": "507f1f77bcf86cd799439011",
"response": {
"provider": "<string>",
"service": "<string>",
"tracking_number": "<string>",
"shipment_id": "<string>",
"amount": 123,
"label_url": "<string>",
"fees": 123
},
"time": "2025-01-15T12:00:00.000Z",
"state": "shipped",
"manual_shipment": true,
"deducted": true
}
]
}Mark shipments as manifested, indicating they have been handed off to the carrier.
curl --request POST \
--url https://app.skulabs.com/s/ship/shipping/set_manifested \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"store_id": "507f1f77bcf86cd799439011",
"order_number": "<string>",
"skulabs_shipment_id": "507f1f77bcf86cd799439011",
"flag": true
}
'{
"_id": "507f1f77bcf86cd799439011",
"shipments": [
{
"_id": "507f1f77bcf86cd799439011",
"response": {
"provider": "<string>",
"service": "<string>",
"tracking_number": "<string>",
"shipment_id": "<string>",
"amount": 123,
"label_url": "<string>",
"fees": 123
},
"time": "2025-01-15T12:00:00.000Z",
"state": "shipped",
"manual_shipment": true,
"deducted": true
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.