Body
Required
-
channelId
integer(int32) Required Channel
-
dropshipmentId
integer(int32) | null Dropshipment
-
fulfillmentId
integer(int32) | null Fulfillment
payload
object | null | array | boolean | integer | number | string Payload
response
object | null | array | boolean | integer | number | string Response
-
status
string | null Required Status
Values are
success
orerror
. Default value issuccess
. -
statusMessage
string | null Status message
statusProblem
object | null | array | boolean | integer | number | string Status problem
POST
/channel-shipment-updates.json
curl \
--request POST 'http://api.example.com/v1/channel-shipment-updates.json' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"channelId":42,"dropshipmentId":42,"fulfillmentId":42,"payload":{},"response":{},"status":"success","statusMessage":"string","statusProblem":{}}'
Request examples
{
"channelId": 42,
"dropshipmentId": 42,
"fulfillmentId": 42,
"payload": {},
"response": {},
"status": "success",
"statusMessage": "string",
"statusProblem": {}
}
Response examples (200)
{
"channelId": 42,
"createdAt": "2025-05-04T09:42:00Z",
"dropshipmentId": 42,
"fulfillmentId": 42,
"id": 42,
"payload": {},
"response": {},
"status": "success",
"statusMessage": "string",
"statusProblem": {},
"updatedAt": "2025-05-04T09:42:00Z"
}