Substy Developers
Billing

Get wallet payment status

Check a wallet payment using its transactionId. Returns the current transaction status, amount and update time. Use after checkout to confirm processing; a checkout link alone does not confirm payment.

GET/v1/agencies/{agencyId}/wallet/payments/{transactionId}

Check a wallet payment using its transactionId. Returns the current transaction status, amount and update time. Use after checkout to confirm processing; a checkout link alone does not confirm payment.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

agencyId*string
Length1 <= length
transactionId*string
Length1 <= length <= 256

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/agencies/string/wallet/payments/string" \  -H "Authorization: Bearer YOUR_API_KEY"
{  "data": {    "transactionId": "string",    "status": "PENDING",    "amount": "string",    "updatedAt": "string"  },  "meta": {    "requestId": "string"  }}