Skip to main content
GET
/
api
/
public
/
v1
/
customers
/
{customerId}
Get customer by ID
curl --request GET \
  --url https://app.tagadapay.com/api/public/v1/customers/{customerId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "cus_123",
  "email": "john@example.com",
  "firstName": "John",
  "lastName": "Doe",
  "storeId": "store_123",
  "createdAt": "2024-03-20T10:30:00Z",
  "store": {
    "id": "store_123",
    "name": "My Store"
  },
  "paymentInstruments": [
    {
      "id": "pi_123",
      "type": "card",
      "isActive": true,
      "isDefault": false,
      "card": {
        "last4": "1234",
        "brand": "visa",
        "expYear": 2025,
        "expMonth": 12
      }
    }
  ],
  "device": {
    "browser": "Chrome",
    "os": "macOS"
  }
}

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.