/payments/recipientsCreate
Creates the payment recipient resource
Request Body
requiredRequest with information to create a payment recipient.
Account owner tax number. Can be CPF or CNPJ (only numbers)
Account owner name.
Primary identifier of the institution associated to the payment recipient.
Recipient's bank account destination.
Payment receiver bank account information
Example
{
"taxNumber": "123456789-00",
"name": "Conta empresa",
"paymentInstitutionId": "00000000-0000-0000-0000-000000000000",
"account": {
"branch": "0001",
"number": "123456",
"type": "CHECKING_ACCOUNT"
}
}Responses
Bank-account payment recipient. Returned by `/payments/recipients` endpoints and embedded inside payment requests when the request targets a registered recipient.
Recipient discriminator. Always `BANK_ACCOUNT` for this schema.
Primary identifier
Account owner tax number. Can be CPF or CNPJ (only numbers).
Account owner name.
Institution that holds the recipient's bank account.
Response with information related to a payment institution
Indicates if the recipient is the default one
Payment receiver bank account information
Receiver bank account branch (agency)
Receiver bank account number
Receiver bank account type, could be: 'CHECKING_ACCOUNT', 'SAVINGS_ACCOUNT' or 'GUARANTEED_ACCOUNT'
Pix key associated with the payment recipient
Date when the payment recipient was created
Date when the payment recipient was last updated
Example response
{
"type": "BANK_ACCOUNT",
"id": "5e9f8f8f-f8f8-4f8f-8f8f-8f8f8f8f8f8f",
"name": "Conta empresa",
"taxNumber": "12345678900",
"paymentInstitution": {
"id": "00000000-0000-0000-0000-000000000000",
"name": "Banco J. Safra S.A.",
"ispb": "03017677",
"tradeName": "Banco Safra",
"compe": "074",
"createdAt": "2020-04-21T15:00:00.000Z",
"updatedAt": "2020-04-21T15:00:00.000Z"
},
"account": {
"branch": "0001",
"number": "123456",
"type": "CHECKING_ACCOUNT"
},
"isDefault": false,
"pixKey": null,
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:30:00.000Z"
}Code Examples
curl -X POST 'https://api.pluggy.ai/payments/recipients' \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY' \
-d '{}'