Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"order_status": "new_order"
}
Request Code Samples
curl --location --request PUT 'https://api.swiftpod.com/v1/orders/status/JXW6VDOK' \
--header 'Content-Type: application/json' \
--data-raw '{
"order_status": "new_order"
}'
Responses
{
"message": "Update status order successfully",
"status": true
}
Modified at 2025-08-04 03:30:08