---
title: "Get payment intent detail"
method: GET
path: "/payin/intent/{id}"
tags: ["payin"]
---

# Get payment intent detail

`GET /payin/intent/{id}`

## Path parameters

- `id` string, uuid, required

## Response `200`

Success response

- IntentData
  - `external_id` string — Id used to track the payin
  - `concept` string — Concept associated with the payment intent. This text will be reflected as a concept in the bank issuing the payment.
  - `currency` string — ISO-4217 currency code
  - `amount` number, double — String encoded decimal number
  - `reference` string — Internal reference associated with the payment.
  - `customer` PayinCustomer
    - `name` string — The customer name
    - `tax_id_type` 'rfc' | 'cnpj' | 'cpf' | 'ruc' | 'curp' | 'le' | 'dni' | 'lm' | 'pas' | 'ce' | 'nit' | 'cc' | 'pa' | 'ti' | 'nuip' | 'ppt' | 'pep' | 'cuil' | 'cuit' | 'other' — The type of tax identification of the customer
    - `tax_id` string — The customer's tax identification number
    - `external_id` string, required — An external ID to identify a user. It can be the merchant's user ID or other tracking ID.
    - `virtual_account` VirtualAccountDetails
      - `account_format` 'clabe' | 'bre_b' | 'alias', required — The type of customer's account
      - `account_number` string, required — The customer account number
      - `name` string — The customer name
      - `active` boolean — Account active flag
      - `branch` string
      - `bank` Bank
        - `code` string — The bank code number
        - `bicfi` string — The bank BICFI code
        - `name` string — The bank name
        - `country` string — ISO-3166-1 Alfa-2 country code
    - `qr_code` QRCodeDetails
      - `emv_code` string, required — The EMV code of the QR code
      - `img` string, required — The image of the QR code
      - `external_link` string — The external link of the QR code
      - `expire_date` string, date-time — The expire date of the QR code
  - `destination` AccountDetails
    - `account_number` string, required
    - `branch` string
    - `owner_name` string
    - `account_format` 'iban' | 'clabe' | 'cci' | 'pix' | 'bre_b' | 'alias' | 'cbu' | 'cvu' — The type of account
    - `tax_id_type` 'rfc' | 'cnpj' | 'cpf' | 'ruc' | 'curp' | 'le' | 'dni' | 'lm' | 'pas' | 'ce' | 'nit' | 'cc' | 'pa' | 'ti' | 'nuip' | 'ppt' | 'pep' | 'cuil' | 'cuit' | 'other' — The type of tax identification of the customer
    - `tax_id` string — The customer's tax identification number
    - `bank` Bank
      - `code` string — The bank code number
      - `bicfi` string — The bank BICFI code
      - `name` string — The bank name
      - `country` string — ISO-3166-1 Alfa-2 country code
  - `events` PayinTransferState[] — The events of the payin
    - `state` 'created' | 'pending' | 'rejected' | 'settled' | 'refunded' | 'cancelled'
    - `timestamp` string, date-time — The timestamp of the payin event
    - `message` string — The message of the event, if exists

## Other responses

- `401` — Unauthorized access due to missing or invalid API key
- `403` — Permission denied for the requested action.
- `404` — The requested resource does not exist.
- `405` — The HTTP method used is not allowed for this endpoint.
- `406` — The Accept header cannot be satisfied.
- `415` — The request's content type is not supported.
- `429` — Too many requests, the request has been throttled.
- `500` — A generic internal API error occurred.

---

[API](https://skmtc.net/prometeoapi/apis/account-validation-v2.md) · [All operations](https://skmtc.net/prometeoapi/apis/account-validation-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/prometeoapi/account-validation-v2/revisions/9c278fe91cbd/schema)
