shipping.read_write- Shipping Read & WriteAuthorization: Bearer ********************{
"location": {
"country": {
"id": 1473353380
},
"region": {
"id": 566146469
},
"cities": [
{
"id": 566146469
},
{
"id": 1939592358
}
]
},
"delivery_time": {
"from": 2,
"to": 4,
"type": "hours"
},
"preparation_time": {
"from": 1,
"to": 2,
"type": "hours"
},
"visible": {
"from": "08:00",
"to": "15:00",
"adjust_by_preparation": true
},
"working_days": [
{
"value": 1
},
{
"value": 2
},
{
"value": 3
}
],
"holidays": [
{
"date": "2026-03-01",
"repeats_yearly": true,
"title": "Eid Holiday"
}
],
"status": true
}curl --location --request PUT 'https://api.salla.dev/admin/v2/delivery-promises/1440241834' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"location": {
"country": {
"id": 1473353380
},
"region": {
"id": 566146469
},
"cities": [
{
"id": 566146469
},
{
"id": 1939592358
}
]
},
"delivery_time": {
"from": 2,
"to": 4,
"type": "hours"
},
"preparation_time": {
"from": 1,
"to": 2,
"type": "hours"
},
"visible": {
"from": "08:00",
"to": "15:00",
"adjust_by_preparation": true
},
"working_days": [
{
"value": 1
},
{
"value": 2
},
{
"value": 3
}
],
"holidays": [
{
"date": "2026-03-01",
"repeats_yearly": true,
"title": "Eid Holiday"
}
],
"status": true
}'{
"status": 200,
"success": true,
"data": {
"id": 1440241834,
"type": "express",
"status": false,
"locked": false,
"name": "التوصيل السريع",
"description": "توصيل فائق السرعة خلال ساعات قليلة",
"created_at": {
"date": "2026-02-11 10:29:24.000000",
"timezone_type": 3,
"timezone": "Asia/Riyadh"
},
"location": {
"country": {
"id": 1473353380,
"name": "Saudi Arabia"
},
"region": {
"id": 566146469,
"name": "منطقة مكة المكرمة"
},
"cities": [
{
"id": 566146469,
"name": "جدة"
},
{
"id": 1939592358,
"name": "مكة المكرمة"
}
]
},
"delivery_time": {
"from": 2,
"to": 2,
"type": null
},
"preparation_time": {
"from": 1,
"to": 1,
"type": null
},
"visible": {
"from": "08:00",
"to": "15:00",
"adjust_by_preparation": true
},
"working_days": [
{
"name": "الإثنين",
"value": 1
},
{
"name": "الثلاثاء",
"value": 2
},
{
"name": "الأربعاء",
"value": 3
}
],
"holidays": [
{
"date": "2026-03-01",
"repeats_yearly": true,
"title": "Eid Holiday"
}
],
"translations": {
"en": {
"name": "Express Delivery",
"description": "Express delivery within a few hours"
}
}
}
}