The Payer Object

Object that represents the sender of a Pix transaction.

PropertyTypeDescription
nameStringFull name of the payer.
tax_idStringTax identification number (CPF or CNPJ) of the payer.
pspPSP ObjectPayment service provider of the payer.
accountAccount ObjectBank 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"
  }
}