- Welcome 👋
- Get Started
- Create Your First App
- Authorization
- Webhooks
- Conditional Webhooks
- Security Considerations
- Multi-Language Support
- Responses
- Pagination
- Rate Limiting
- Versioning
- Change Log
- Support
- APIs
- Orders
- Order Status
- Order Histories
- Order Tags
- Order Invoice
- Order Reservations
- Order Items
- Products
- Product Options
- Product Quantity
- Product Variants
- Product Tags
- Product Images
- Product Option Values
- Abandoned Carts
- Customer Groups
- Customers
- Digitals Product
- Categories
- Exports
- Shipments
- Shipping Companies
- Shipping Zones
- Shipping Rules
- Countries
- Product Option Templates
- Taxes
- Coupons
- Affiliates
- Order Assignment
- Special Offers
- Transactions
- Payments
- Settlements
- Settings
- Merchant
- Brands
- Reviews
- Branches
- Currencies
- SEO
- Cities
- DNS Records
- Languages
- Employees
- Advertisements
- Webhooks
- Custom URLs
- Loyalty Points
- Webhooks - Store Events
List Order Statuses
Production
Production
GET
https://api.salla.dev/admin/v2/orders/statuses
Order Status
Last modified:2025-01-28 10:11:16
Scopes
orders.read
- Orders Read OnlyRequest
Authorization
Add the parameter
Authorization
to Headers,whose value is to concatenate the Token after the Bearer.Example:
Authorization: Bearer ********************
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.salla.dev/admin/v2/orders/statuses'
Responses
🟢200Success
application/json
Body
status
integer
optional
success
boolean
optional
data
array[object (ListOrderStatuses) {10}]
optional
id
number
required
Example:
863076598
name
string
required
Example:
في انتظار الدفع
type
enum<string>
required
Allowed values:
originalcustom
Example:
custom
slug
enum<string>
required
Allowed values:
payment_pendingwaiting_for_payment_confirmationpayment_failedwaiting to receive itin_progressunder_reviewcompleteddeliveringdeliveredshippedcanceledrestoredrestoring
Example:
payment_pending
sort
integer
required
message
string
required
icon
string
required
is_active
boolean
required
parent
object | null
required
original
object | null
required
Examples
{
"status": 200,
"success": true,
"data": [
{
"id": 863076598,
"name": "في انتظار الدفع",
"type": "custom",
"slug": "payment_pending",
"sort": 0,
"message": "[ {store.name} ] \\n أصبحت حالة طلبك {order.id} {status}",
"icon": "sicon-trash",
"is_active": true,
"parent": {},
"original": {
"id": 1473353380,
"name": "بإنتظار الدفع"
}
},
{
"id": 224309239,
"name": "جاري مراجعة طلبك",
"type": "custom",
"slug": "under_review",
"sort": 1,
"message": "",
"icon": "sicon-trash",
"is_active": true,
"parent": {},
"original": {
"id": 566146469,
"name": "بإنتظار المراجعة"
}
},
{
"id": 1597755120,
"name": "بنفذ طلبك",
"type": "custom",
"slug": "in_progress",
"sort": 2,
"message": "",
"icon": "sicon-trash",
"is_active": true,
"parent": {},
"original": {
"id": 1939592358,
"name": "قيد التنفيذ"
}
},
{
"id": 1638621685,
"name": "تم التنفيذ",
"type": "custom",
"slug": "completed",
"sort": 3,
"message": "",
"icon": "sicon-trash",
"is_active": true,
"parent": {},
"original": {
"id": 1298199463,
"name": "تم التنفيذ"
}
},
{
"id": 1422535667,
"name": "جاري التوصيل",
"type": "custom",
"slug": "delivering",
"sort": 4,
"message": "",
"icon": "sicon-trash",
"is_active": true,
"parent": {
"id": 1638621685,
"name": "تم التنفيذ"
},
"original": {
"id": 349994915,
"name": "جاري التوصيل"
}
},
{
"id": 647449340,
"name": "تم التوصيل",
"type": "custom",
"slug": "delivered",
"sort": 5,
"message": "",
"icon": "sicon-trash",
"is_active": true,
"parent": {
"id": 1638621685,
"name": "تم التنفيذ"
},
"original": {
"id": 1723506348,
"name": "تم التوصيل"
}
},
{
"id": 1887201789,
"name": "تم الشحن",
"type": "custom",
"slug": "shipped",
"sort": 6,
"message": "",
"icon": "sicon-trash",
"is_active": false,
"parent": {
"id": 1638621685,
"name": "تم التنفيذ"
},
"original": {
"id": 814202285,
"name": "تم الشحن"
}
},
{
"id": 687926769,
"name": "ملغي",
"type": "custom",
"slug": "canceled",
"sort": 7,
"message": "",
"icon": "sicon-trash",
"is_active": true,
"parent": {},
"original": {
"id": 525144736,
"name": "ملغي"
}
},
{
"id": 2062355698,
"name": "مسترجع",
"type": "custom",
"slug": "restored",
"sort": 8,
"message": "",
"icon": "sicon-trash",
"is_active": true,
"parent": {},
"original": {
"id": 989286562,
"name": "مسترجع"
}
},
{
"id": 1113229566,
"name": "قيد الإسترجاع",
"type": "custom",
"slug": "restoring",
"sort": 9,
"message": "",
"icon": "sicon-trash",
"is_active": true,
"parent": {},
"original": {
"id": 1548352431,
"name": "قيد الإسترجاع"
}
}
]
}
🟠401Unauthorized
Modified at 2025-01-28 10:11:16