POST
/
api
/
payments
/
crypto
/
check
Confirm crypto payment
curl --request POST \
  --url https://app.sandbox.rio.trade/api/payments/crypto/check \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "orderId": "66290ac8bd3903485989f82e"
}'
"OK"
This endpoint is only meant to be called in our sandbox environment to simulate a successful crypto payment. Crypto payments are processed automatically in our production environment.

Requirements to consume the endpoint.

Create and modify role

The user must have the role to create and modify.

User approved

The user must be approved in at least one country.

Authorizations

x-api-key
string
header
required

Body

application/json
orderId
string
required

The ID of the order.

Example:

"66290ac8bd3903485989f82e"

Response

OK

The response is of type string.

Example:

"OK"