List recurrence locations by Bacen filters (scoped to the account)

​
Query Parameters
  • inicio
    Type: string Format: date-time
    required

    the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z

  • fim
    Type: string Format: date-time
    required

    the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z

  • idRecPresente
    Type: boolean
  • convenio
    Type: string
  • paginacao.paginaAtual
    Type: integer Format: int32

    Signed 32-bit integers (commonly used integer type).

  • paginacao.itensPorPagina
    Type: integer Format: int32

    Signed 32-bit integers (commonly used integer type).

Responses
  • application/json
  • 400

    Requisição inválida

  • 403

    Acesso negado — credencial sem o escopo exigido pela operação ou certificado rejeitado. Respondido no gateway de exposição (Bacen: AcessoNegado)

  • 503

    Serviço temporariamente indisponível (Bacen: ServicoIndisponivel)

Request Example for get/api/locrec
curl 'http://localhost:8080/api/locrec?inicio=&fim=' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "parametros": {
    "inicio": "2026-09-16T19:14:18.661Z",
    "fim": "2026-09-16T19:14:18.661Z",
    "idRecPresente": true,
    "recebedor": {
      "convenio": "string"
    },
    "paginacao": {
      "paginaAtual": 1,
      "itensPorPagina": 1,
      "quantidadeDePaginas": 1,
      "quantidadeTotalDeItens": 1
    }
  },
  "loc": [
    {
      "id": "string",
      "location": "string",
      "tipoCob": "string",
      "criacao": "2026-09-16T19:14:18.661Z",
      "idRec": "string"
    }
  ]
}