v1

latestOpenAPI 3.1.02026-07-228956435.8 KB
Payment methods

Get a payment method

Retrieves a payment method by its id. Only payment methods of your organization matching the live or test mode of the API key are visible; anything else returns a 404 Not Found error. The payment method exposes its details under a key named after its type (bank_transfer, card, or pac); that key is null when the resource backing the payment method is no longer available.

get/payment_methods/{id}

Path parameters

idstring required

The id of the payment method to retrieve.

Response

The payment method. The type-specific details key is null when the resource backing the payment method is no longer available.

OR
OR

Example response

{
  "id": "pm_1zXcVbNmAsDfGhJk",
  "bank_transfer": {
    "account_holder_id": "111111111",
    "account_number": "001111111111",
    "account_type": "checking_account",
    "institution_id": "cl_banco_de_chile",
    "institution_name": "Banco de Chile",
    "mfa_type": "sms",
    "status": "active"
  },
  "created_at": "2026-01-15T14:30:00.000Z",
  "customer": "cus_oVgVqlnK0PdmGirH",
  "mode": "live"
}