Skip to main content
POST
/
v1
/
orders
/
{orderId}
/
confirm-sent
Confirm Order Payment Sent
curl --request POST \
  --url https://api.chessa.ai/v1/orders/{orderId}/confirm-sent \
  --header 'Content-Type: application/json' \
  --data '
{
  "notes": "Payment sent via bank transfer",
  "transactionReference": "TRF123456789"
}
'
{
  "id": "ord_123456789abcdef",
  "notes": "Payment sent via bank transfer",
  "sentAt": "2025-03-18T11:30:45.123Z",
  "status": "sent",
  "transactionReference": "TRF123456789",
  "updatedAt": "2025-03-18T11:30:45.123Z"
}

Headers

x-client-id
string
Example:

""

x-client-secret
string
Example:

""

Body

application/json
notes
string
Example:

"Payment sent via bank transfer"

transactionReference
string
Example:

"TRF123456789"

Response

Success Response

id
string
Example:

"ord_123456789abcdef"

notes
string
Example:

"Payment sent via bank transfer"

sentAt
string
Example:

"2025-03-18T11:30:45.123Z"

status
string
Example:

"sent"

transactionReference
string
Example:

"TRF123456789"

updatedAt
string
Example:

"2025-03-18T11:30:45.123Z"