Orqpay
Payments

Get payment

Look up a payment by id. Prefer webhooks for fulfillment.

GET
/v1/payments/{id}

Look up a payment by id. Prefer webhooks for fulfillment.

Authorization

bearerAuth requestSignature
AuthorizationBearer <token>

Merchant API key (orq_mk_test_… or orq_mk_live_…).

In: header

X-Request-Signature<token>

Signing secret (orq_ms_…). Playground signs for you.

In: header

Path Parameters

id*string
Formatuuid

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/payments/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "status": "string",  "environment": "test",  "addressMode": "invoice",  "amount": "string",  "amountReceived": "string",  "remaining": "string",  "surplus": "string",  "token": "string",  "referenceId": "string",  "email": "string",  "checkoutUrl": "http://example.com",  "expiresAt": "2019-08-24T14:15:22Z",  "successUrl": "string",  "cancelUrl": "string",  "depositAddresses": [    {      "networkId": 0,      "chainName": "string",      "family": "evm",      "address": "string",      "token": "string",      "chainId": "9e7fb22a-9e5b-420e-8fd7-e3454fcfd5fd"    }  ],  "createdAt": "2019-08-24T14:15:22Z",  "updatedAt": "2019-08-24T14:15:22Z"}
{  "error": {    "code": "string",    "message": "string"  }}