API Docs Início Documentação Referência de API Copiar para LLM
GET/v1/BankAccount/{id}/Pix/Automatic
Banking · PIX

Obter todos os registros de recorrência de pix automático

Lista e filtra registros de Bank Account.

Visão geral

Obter todos os registros de recorrência de pix automático

Autenticação e pré-requisitos

Requer autenticação. Envie o token no header Authorization: Bearer {{token}} (JWT do AWS Cognito). Integrações servidor-a-servidor podem usar X-Api-Key. Todo tráfego é HTTPS e a credencial nunca vai na URL nem em query string.

Pré-requisitos: a rota exige identificador(es) de recurso já existente(s):

Request

Parâmetros

NomeEmTipoObrigatórioDescriçãoExemplo
idpathstringobrigatório3fa85f64-5717-4562-b3fc-2c963f66afa6
statusqueryobjetoopcionalvalor
pagequeryintegeropcional10
sizequeryintegeropcional10
isDeletedquerybooleanopcionaltrue
orderByquerystringopcionalvalor

Corpo da requisição

Este endpoint não recebe corpo.

Response

Resposta 200.

Campos

CampoTipoObrigatórioDescriçãoValoresExemplo
dataarray de objetoopcionalobjeto — ver detalhe abaixo[ … ]
pageintegeropcional0
totalPagesintegeropcional0
totalItemsintegeropcional0

Detalhe de data

CampoTipoObrigatórioDescriçãoValoresExemplo
idstringopcional"texto"
bankAccountIdstringopcional"3fa85f64-5717-4562-b3fc-2c963f66afa6"
bankAccountobjetoopcionalvaria conforme o tipo — ver exemplo{ … }
automaticPixItemIdstringopcional"3fa85f64-5717-4562-b3fc-2c963f66afa6"
automaticPixItemobjetoopcionalvaria conforme o tipo — ver exemplo{ … }
statusstringopcionalProcessing, Confirmed, Rejected, Canceled, PendingPayer, PendingUser, Activated, CancellationRequested"Processing"
statusDisplaystringopcional"texto"
amountinteger (int64)opcional0
sequenceTypestringopcionalRCUR"RCUR"
frequencyTypestringopcionalMIAN, MNTH, QURT, WEEK, YEAR"MIAN"
frequencyTypeDisplaystringopcional"texto"
firstRecurrenceDatestring (date-time)opcional"2025-08-11T13:45:00Z"
lastRecurrenceDatestring (date-time)opcional"2025-08-11T13:45:00Z"
recurrenceIdstringopcional"3fa85f64-5717-4562-b3fc-2c963f66afa6"
contractNumberstringopcional"texto"
receivingUserNamestringopcional"Fulano de Tal"
receivingUserRegistrationNumberstringopcional"texto"
receivingBankISPBstringopcional"texto"
isDeletedbooleanopcionaltrue

Exemplo de resposta

{
  "data": [
    {
      "id": "texto",
      "bankAccountId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "bankAccount": {
        "id": "texto",
        "createdAt": "2025-08-11T13:45:00Z",
        "createdBy": {},
        "tenant": "texto",
        "tenantDisplay": "texto",
        "updatedAt": "2025-08-11T13:45:00Z",
        "updatedBy": {},
        "ownerUser": {},
        "ownerGroup": {},
        "bankCode": 0,
        "bankCodeDisplay": "texto",
        "bankIspb": 0,
        "account": "texto",
        "agency": "texto",
        "type": {},
        "typeDisplay": "texto",
        "modality": {},
        "modalityDisplay": "texto",
        "quorumMinimumApproval": 0,
        "externalId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "tenantName": "Fulano de Tal",
        "isDeleted": true,
        "status": {},
        "statusDisplay": "texto",
        "person": {},
        "balance": {},
        "creditors": []
      },
      "automaticPixItemId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "automaticPixItem": {
        "id": "texto",
        "createdAt": "2025-08-11T13:45:00Z",
        "mandanteIdentification": "texto",
        "mandanteRequestIdentification": "texto",
        "occurrencesSequenceType": "texto",
        "occurrencesFrequency": {},
        "occurrencesFirstRecurrenceDate": "2025-08-11T13:45:00Z",
        "occurrencesFinalRecurrenceDate": "2025-08-11T13:45:00Z",
        "trackingIndicator": true,
        "collectionAmount": 0,
        "creditorName": "Fulano de Tal",
        "creditorIdentification": "texto",
        "creditorAgentMemberIdentification": "texto",
        "debtoIdentification": "texto",
        "debtorAccountIdentification": "texto",
        "debtorAccountIssuer": "texto",
        "debtorAgentMemberIdentification": "texto",
        "ultimateDebtorName": "Fulano de Tal",
        "ultimateIdentification": "texto",
        "createConfirmationRequestDate": "2025-08-11T13:45:00Z",
        "referredDocumentNumber": "texto",
        "referredDocumentCreditorReference": "texto",
        "createRecurrencePeriodicPaymentDate": "2025-08-11T13:45:00Z",
        "confirmationRequestExpirationDate": "2025-08-11T13:45:00Z",
        "maxColletionAmount": 0
      },
      "status": "Processing",
      "statusDisplay": "texto",
      "amount": 0,
      "sequenceType": "RCUR",
      "frequencyType": "MIAN",
      "frequencyTypeDisplay": "texto",
      "firstRecurrenceDate": "2025-08-11T13:45:00Z",
      "lastRecurrenceDate": "2025-08-11T13:45:00Z",
      "recurrenceId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "contractNumber": "texto",
      "receivingUserName": "Fulano de Tal",
      "receivingUserRegistrationNumber": "texto",
      "receivingBankISPB": "texto",
      "isDeleted": true
    }
  ],
  "page": 0,
  "totalPages": 0,
  "totalItems": 0
}

Códigos de retorno

CódigoSignificadoDetalhe do contrato
200Requisição bem-sucedida.

Exemplos

curl -X GET "{{baseUrl}}/v1/BankAccount/3fa85f64-5717-4562-b3fc-2c963f66afa6/Pix/Automatic" \
  -H "Authorization: Bearer {{token}}"
var baseUrl = "{{baseUrl}}";
var token   = "{{token}}";

using var http = new HttpClient { BaseAddress = new Uri(baseUrl) };
http.DefaultRequestHeaders.Authorization =
    new AuthenticationHeaderValue("Bearer", token);

var rota = "/v1/BankAccount/3fa85f64-5717-4562-b3fc-2c963f66afa6/Pix/Automatic";

var resp = await http.GetAsync(rota);
resp.EnsureSuccessStatusCode();
var json = await resp.Content.ReadAsStringAsync();
const baseUrl = '{{baseUrl}}';
const token   = '{{token}}';

const resp = await fetch(`${baseUrl}/v1/BankAccount/3fa85f64-5717-4562-b3fc-2c963f66afa6/Pix/Automatic`, {
  method: 'GET',
  headers: {
    'Authorization': `Bearer ${token}`,
  },
});

if (!resp.ok) throw new Error(`HTTP ${resp.status}`);
const data = await resp.json();

Troque apenas {{baseUrl}} e {{token}}. No Postman, defina-os como variáveis de environment; o cURL importa em Import > Raw text.

Downloads

Este endpoint já vem configurado nas collections abaixo, na pasta da etapa correspondente.

Guia de importação: Como importar no Postman · Todos os downloads: Downloads