---
title: "Get Payment"
method: GET
path: "/payments/v1/{payment_id}"
tags: ["Payments"]
---

# Get Payment

`GET /payments/v1/{payment_id}`

Fetch a single payment

## Path parameters

- `payment_id` string, required

## Response `200`

- Payment
  - `id` string, uuid, required — The unique identifier for this payment.
  - `payment_intent_id` string, uuid, required — The Payment Intent identifier responsible for generating the Payment.
  - `payment_source_id` string, uuid, required — The identifier for the payment source object from which the payment was initiatied.
  - `sender_details` object, required — The account details for the customer sending the payment. Includes account number, name of the account holder and IBAN.
    - `account_number` string, required
    - `iban` string, required
    - `name` string, required
  - `recipient_details` object, required — Details for the recipient of the Payment, generated from the details available in the payment_destination.
    - `account_number` string, required
    - `iban` string, required
    - `name` string, required
  - `amount` number, required — The amount the charge was initiated for.
  - `currency` string, required — The currency the payment was initiated with.
  - `description` string, required — The description submitted to the bank as a reference when initiating a payment. Can be used for reconciliation. By default this value is a the Payment Intent UUID without hyphens but you can also specify the description upon creation of a payment intent.
  - `submission_timestamp` string, required — The time the Payment Initiation was submitted.
  - `initiation_timestamp` string, required — The time the Payment Initiation was started.
  - `status` 'AWAITING_LOGIN_MFA' | 'AWAITING_PAYMENT_MFA' | 'AWAITING_APP_AUTH' | 'FAILED' | 'PENDING_WITH_BANK' | 'ACCEPTED_BY_BANK', required — The current status of the payment - see Payments Errors for a list of available MFAs.
  - `bank_transaction_reference` string, required — The transaction reference number supplied by the initiating bank on successful initiation of a transfer. Can be used for reconciliation.

---

[API](https://skmtc.net/leantech/apis/auth.md) · [All operations](https://skmtc.net/leantech/apis/auth/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/leantech/auth/revisions/c2e46d54d886/schema)
