Query Methods
The methods below allow querying information about recurrences and schedules.
Query Recurrence by Account
GetPixAutomatic: Queries all recurrences associated with a specific account.
{
"Method": "GetPixAutomatic",
"PartnerId": 30519,
"BusinessUnitId": 51138,
"TaxNumber": "35690963000101",
"Bank": "450",
"BankBranch": "0001",
"BankAccount": "440246",
"BankAccountDigit": "3"
}
{
"Success": "true",
"Recurrence": [
{
"RecurrenceId": "RN13203354202509098dee9acc04a",
"ReceiverName": "Academia ABC",
"ReceiverTaxNumber": "35690963000101",
"Status": "Aprovado"
},
{
"RecurrenceId": "RN1320335420250909294f6737487",
"ReceiverName": "Academia ABC",
"ReceiverTaxNumber": "35690963000101",
"Status": "Rejeitado"
}
]
}
| Parameter | Description | Mandatory | Type | Comments |
|---|---|---|---|---|
| Method | Method or action to be executed in the request | Yes | String | |
| BusinessUnitId | Identifier of the business unit | Yes | Integer | |
| PartnerId | Partner identifier | Yes | Integer | |
| TaxNumber | CPF/CNPJ of the user performing the action | Yes | String | |
| Bank | Bank code of the user performing the action | Yes | String | |
| BankBranch | Bank branch code of the user performing the action | Yes | String | |
| BankAccount | Bank account number of the user performing the action | Yes | String | |
| BankAccountDigit | Bank account digit of the user performing the action | Yes | String |
Query Recurrence by ID
GetPixAutomaticById: Queries details of a specific recurrence.
{
"Method": "GetPixAutomaticById",
"PartnerId": "1234",
"BusinessUnitId": "4321",
"TaxNumber": "35690963000101",
"RecurrenceId": "RR2222222220240429njua7shf40k"
}
{
"Success": "true",
"PixAutomaticInformations": {
"RecurrenceId": "RN13203354202510272cd6a5dabcd",
"Receiver": {
"TaxNumber": "35690963000101",
"Name": "Academia ABC"
},
"Debtor": {
"TaxNumber": "3569096300231",
"Name": "João Silva"
},
"Payer": {
"TaxNumber": "3569096300231",
"Name": "João Silva"
},
"AuthorizationId": "9cb16640-faf4-451d-b639-ef56caa85ba4",
"Status": "Rejeitado",
"ContractId": "CONTRATO12345678ABCDE1234567891012",
"Description": "Teste da funcionalidade",
"InitialDate": "29/10/2025",
"FinalDate": "03/11/2026",
"Frequency": "Mensal",
"OriginalValue": 0.10,
"MaximumValue": 0.10,
"Creditline": true,
"Notification": true
}
}
| Parameter | Description | Mandatory | Type | Comments |
|---|---|---|---|---|
| Method | Method or action to be executed in the request | Yes | String | |
| BusinessUnitId | Identifier of the business unit | Yes | Integer | |
| PartnerId | Partner identifier | Yes | Integer | |
| TaxNumber | CPF/CNPJ of the user performing the action | Yes | String | |
| RecurrenceId | Recurrence identifier | Yes | String |
Recurrence status:
- Approved
- Rejected
- Pending
- Expired
- Canceled
Query Schedules by Account
GetTransactionPixAutomatic: Queries all schedules associated with a specific account.
{
"Method": "GetTransactionPixAutomatic",
"PartnerId": 1001,
"BusinessUnitId": 2002,
"TaxNumber": "12345678900",
"Bank": "450",
"BankBranch": "0001",
"BankAccount": "440246",
"BankAccountDigit": "3"
}
{
"Success": "true",
"Schedules": [
{
"ScheduledId": "a650a666870647449f312628cd421938",
"RecurrenceId": "RR13203354202511256785cecc367",
"ReceiverName": "BU Pix",
"ReceiverTaxNumber": "45748851000155",
"PaymentDate": "27/11/2025",
"Status": "Liquidado",
"EndToEndId": "E1320335420251127030075125F59207"
}
]
}
| Parameter | Description | Mandatory | Type | Comments |
|---|---|---|---|---|
| Method | Method or action to be executed in the request | Yes | String | |
| BusinessUnitId | Identifier of the business unit | Yes | Integer | |
| PartnerId | Partner identifier | Yes | Integer | |
| TaxNumber | CPF/CNPJ of the user performing the action | Yes | String | |
| Bank | Bank code of the user performing the action | Yes | String | |
| BankBranch | Bank branch code of the user performing the action | Yes | String | |
| BankAccount | Bank account number of the user performing the action | Yes | String | |
| BankAccountDigit | Bank account digit of the user performing the action | Yes | String |
Query Schedule by ID
GetTransactionPixAutomaticById: Queries details of a specific schedule.
{
"Method": "GetTransactionPixAutomaticById",
"PartnerId": "1234",
"BusinessUnitId": "4321",
"TaxNumber": "12345678945",
"RecurrenceId": "RR2222222220240429njua7shf40k",
"ScheduledId": "122345"
}
{
"Success": "true",
"ScheduledId": "TX-987654321",
"RecurrenceId": "RN1320335420251010e50c9fe46b0",
"Receiver": {
"TaxNumber": "02332112232",
"Name": "BU Pix"
},
"Debtor": {
"TaxNumber": "***.834.718-**",
"Name": "Taynara Diniz Moreira de Souza"
},
"Payer": {
"TaxNumber": "***.834.718-**",
"Name": "Taynara Diniz Moreira de Souza"
},
"Status": "Approved",
"PaymentDate": "2025-08-25",
"Value": 150
}
| Parameter | Description | Mandatory | Type | Comments |
|---|---|---|---|---|
| Method | Method or action to be executed in the request | Yes | String | |
| BusinessUnitId | Identifier of the business unit | Yes | Integer | |
| PartnerId | Partner identifier | Yes | Integer | |
| TaxNumber | CPF/CNPJ of the user performing the action | Yes | String | |
| RecurrenceId | Recurrence identifier | Yes | String | |
| ScheduledId | Identifier for the scheduled transaction | No | String |
Updated 13 days ago
