Skip to main content
GET
/
api
/
public
/
v1
/
customers
/
{customerId}
/
payment-instruments
List customer payment instruments
curl --request GET \
  --url https://app.tagadapay.com/api/public/v1/customers/{customerId}/payment-instruments \
  --header 'Authorization: Bearer <token>'
{
  "instruments": [
    {
      "id": "pi_123",
      "type": "card",
      "isActive": true,
      "isDefault": true,
      "createdAt": "2024-03-20T10:30:00Z",
      "card": {
        "last4": "1234",
        "brand": "visa",
        "expYear": 2025,
        "expMonth": 12
      },
      "cardEnrichment": {
        "funding": "credit",
        "segment": "premium"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter your API key as: Bearer your-api-key

Path Parameters

customerId
string
required

Response

Successful response

The response is of type any.