Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"payment_status": "pending",
"order_status": "pending"
}
Request Code Samples
curl --location --request PUT 'http://petfen-order.local.com:8083/api/v1/order/update/2' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"payment_status": "pending",
"order_status": "pending"
}'
Responses
application/json Modified at 2025-01-21 10:14:08