/payments/customers/{id}Retrieve
Recovers the payment customer resource by its id
Parameters
Path Parameters
| Name | Type |
|---|---|
idrequired | string (uuid) |
Responses
Response with information related to a payment customer
Primary identifier
Customer type. - `INDIVIDUAL`: identified by `cpf`. - `BUSINESS`: identified by `cnpj`.
Customer name
Customer email
Customer CPF
Customer CNPJ, if type is `BUSINESS`
Connector object
Primary identifier
Name of the institution
Homepage of the institution
Image of the logo hosted by Pluggy
Primary color
Type of institution
Country located
Parameters required to start the connection
Does the connector require an MFA to execute?
Products supported by the connector
If 'true', the connector requires an Oauth flow to execute
URL to perform Oauth flow if needed
URL to the financial institution to reset the password
Connector health status
Indicates if the connector uses the regulated Open Finance APIs
Indicates if the connector supports the payment initiation API
Indicates if the connector supports scheduled payments
Indicates if the connector supports smart transfers
Indicates if the connector supports boleto management
Indicates if the connector supports automatic Pix
Date of creation
Date of last modification
Date when the customer was created
Date when the customer was last updated
Example response
{
"id": "5e9f8f8f-f8f8-4f8f-8f8f-8f8f8f8f8f8f",
"type": "INDIVIDUAL",
"name": "Marco Silva",
"email": "msilva@pluggy.ai",
"cpf": "123.456.789-00",
"cnpj": null,
"connector": null,
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:30:00.000Z"
}Code Examples
curl -X GET 'https://api.pluggy.ai/payments/customers/{id}' \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY'