/api/v1/charges/lotecobv

Query Parameters
  • inicio
    Type: string Format: date

    full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21

  • fim
    Type: string Format: date

    full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21

  • pagination
    Type: object ·
    required

    Pagination and sorting parameters

    • page
      Type: integer Format: int32

      Page number (zero-based)

    • size
      Type: integer Format: int32
      max:  
      500

      Number of items per page (max: 500)

    • sort
      Type: array string[]

      Sort criteria in the format 'field,direction' (e.g., 'createdAt,desc')

Headers
  • Idempotency-Key
    Type: string
    required
Responses
  • application/json
Request Example for get/api/v1/charges/lotecobv
curl 'http://localhost:8080/api/v1/charges/lotecobv?page=0&size=50&sort=' \
  --header 'Idempotency-Key: ' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "items": [
    {
      "id": "string",
      "status": "CRIADO",
      "createdAt": "2026-07-29T19:28:46.556Z",
      "totalCobrancas": 1,
      "totalSucesso": 1,
      "totalFalha": 1,
      "totalPendente": 1
    }
  ],
  "totalItems": 1,
  "page": 1,
  "size": 1,
  "totalPages": 1,
  "hasNext": true
}