curl --request POST \
--url https://panel.sendcloud.sc/api/v3/shop-order-statuses \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"integration_id": 23452345,
"statuses": [
{
"external_id": "Send-4",
"translations": [
{
"status": "Sent",
"language": "en-gb"
},
{
"status": "Verzonden",
"language": "nl-nl"
}
]
},
{
"external_id": "15",
"translations": [
{
"status": "Delivered",
"language": "en-gb"
},
{
"status": "Bezorgt",
"language": "nl-nl"
}
]
}
]
}
'