POST
/
paymentReceipt
curl --request POST \
  --url https://api-sandbox.koywe.com/rest/paymentReceipt \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "orderId": "76a6e9bd-364c-428e-9363-d557fec2b715",
  "url": "https://example.com/receipt.png"
}'
{
  "result": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json
orderId
string
Example:

"76a6e9bd-364c-428e-9363-d557fec2b715"

url
string
Example:

"https://example.com/receipt.png"

Response

200
application/json
successful operation
result
boolean