POST
/
orders
/
payments
curl --request POST \
  --url https://services.commercengine.dev/api/v1/x2yh61zw4k/admin/orders/payments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "customer_id": "<string>",
  "order_number": "<string>",
  "payment_link": "<string>"
}'
{
  "message": "<string>",
  "success": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json
customer_id
string
order_number
string

multiple order numbers are separated by comma.

Response

200 - application/json
OK
message
string
success
boolean