v1

latestOpenAPI 3.0.02026-08-06363576.8 KB
Payment

Get a single Payment

Gets information about a single payment in detail. Requires a secret key.

get/payments/{uuid}/

Path parameters

uuidstring required

UUID of payment

Response

Successful operation

uuidstring uuid
amountstring
currencystring
descriptionstring
referencestring
state'failed' | 'settled' | 'pending' | 'retrying'
created_atstring date-time
updated_atstring date-time

Example response

[
  {
    "amount": "100.00",
    "currency": "USD",
    "state": "settled",
    "transactions": [
      {
        "amount": "6.99",
        "currency": "USD"
      }
    ]
  }
]