/api/v1/charges/lotecobv
Query Parameters
- Type: string Format: dateinicio
full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
- Type: string Format: datefim
full-date notation as defined by RFC 3339, section 5.6, for example, 2017-07-21
- Type: object ·paginationrequired
Pagination and sorting parameters
- Type: integer Format: int32page
Page number (zero-based)
- Type: integer Format: int32sizemax:500
Number of items per page (max: 500)
- Type: array string[]sort
Sort criteria in the format 'field,direction' (e.g., 'createdAt,desc')
Headers
- Type: stringIdempotency
- Key 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
}