Skip to main content
GET
/
payments
/
{paymentId}
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "currency": "<string>",
  "amount": 123,
  "handle": "<string>",
  "paymentStatus": "initial",
  "createdAt": "2023-11-07T05:31:56Z",
  "paymentSource": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>"
  },
  "operations": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "segment": 123,
      "reference": "<string>",
      "type": "<string>",
      "statusCode": "<string>",
      "statusMessage": "<string>"
    }
  ],
  "invoice": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "handle": "<string>"
  }
}

Headers

x-environment
string<uuid>
required

Configure which environment the request will handle. If the provided credentials do not allow access to this specified environment, a 403 Forbidden response is returned.

Path Parameters

paymentId
string<uuid>
required

Id of payment.

Response

OK

id
string<uuid>
currency
string | null
amount
integer<int64>
handle
string | null
paymentStatus
enum<string>
Available options:
initial,
paid,
pending,
declined
createdAt
string<date-time>
paymentSource
object
operations
object[] | null
invoice
object