Skip to main content
PUT
/
order
/
modify_financial_status
Order - Modify Financial Status
curl --request PUT \
  --url https://api.skulabs.com/order/modify_financial_status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "store_id": "507f1f77bcf86cd799439011",
  "order_number": "<string>",
  "financial_status": "pending",
  "status_date": "2025-01-15T12:00:00.000Z",
  "order": {},
  "refresh_cache": true
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
store_id
string
required

Store ID

Example:

"507f1f77bcf86cd799439011"

order_number
string
required

Order number

financial_status
enum<string>
required

New financial status

Available options:
pending,
paid
status_date
string

Date for the status change

Example:

"2025-01-15T12:00:00.000Z"

order
object

Order reference object

refresh_cache
boolean

Refresh cache after update

Response

Financial status updated

success
boolean
required

Whether the operation succeeded