Object that represents the sender of a Pix transaction.
| Property | Type | Description |
|---|---|---|
name | String | Full name of the payer. |
tax_id | String | Tax identification number (CPF or CNPJ) of the payer. |
psp | PSP Object | Payment service provider of the payer. |
account | Account Object | Bank account details of the payer. |
Example
{
"name": "John Doe",
"tax_id": "12345678901",
"psp": {
"ispb": "12345678",
"name": "Payer Bank"
},
"account": {
"account_number": "1234567",
"account_type": "CACC",
"branch": "0001"
}
}