Skip to main content

Query Payment Batches by Requester

Request

ENDPOINT
/payment_order_conciliation_batches
METHOD
GET

Query Params

FieldTypeDescriptionRequired
payment_order_conciliation_batch_statusenumeratorFilter by conciliation batch status.No
payment_order_conciliation_batch_typeenumeratorFilter by conciliation batch type.No
pageintegerPage number for pagination (default: 1).No
page_sizeintegerPage size for pagination (default: 25).No
from_datestringStart date for filter (ISO 8601 format, e.g., "2025-06-01").No
to_datestringEnd date for filter (ISO 8601 format, e.g., "2025-06-30").No

Response

STATUS
200
Response Body
{
"payment_order_conciliation_batches": [
{
"payment_order_conciliation_batch_key": "98fc62fd-b0a0-4604-9bea-475e91a9dc82",
"payment_order_conciliation_batch_status": "closed",
"payment_order_conciliation_batch_type": "fixed_amount",
"account_key": "9b9ae7b0-7292-4b0d-9131-0167525ab067",
"total_amount": 1200,
"conciliated_amount": 1200,
"total_payment_orders": 12,
"conciliated_payment_orders": 12,
"reference_date": "2025-06-13",
"created_at": "2025-06-10T20:30:23.459Z"
},
{
"payment_order_conciliation_batch_key": "98fc62fd-b0a0-4604-9bea-475e91a9dc82",
"payment_order_conciliation_batch_status": "closed",
"payment_order_conciliation_batch_type": "variable_amount",
"account_key": "9b9ae7b0-7292-4b0d-9131-0167525ab067",
"total_amount": 700,
"conciliated_amount": 600,
"total_payment_orders": 7,
"conciliated_payment_orders": 6,
"reference_date": "2025-06-13",
"created_at": "2025-06-10T20:30:23.459Z"
},
{
"payment_order_conciliation_batch_key": "98fc62fd-b0a0-4604-9bea-475e91a9dc82",
"payment_order_conciliation_batch_status": "open",
"payment_order_conciliation_batch_type": "variable_amount",
"account_key": "9b9ae7b0-7292-4b0d-9131-0167525ab067",
"total_amount": 900,
"conciliated_amount": 700,
"total_payment_orders": 9,
"conciliated_payment_orders": 7,
"reference_date": "2025-06-17",
"created_at": "2025-06-10T20:30:23.459Z"
},
{
"payment_order_conciliation_batch_key": "98fc62fd-b0a0-4604-9bea-475e91a9dc82",
"payment_order_conciliation_batch_status": "closed",
"payment_order_conciliation_batch_type": "fixed_amount",
"account_key": "c24a0ac4-792c-494e-b887-6185e07a33a3",
"total_amount": 800,
"conciliated_amount": 800,
"total_payment_orders": 8,
"conciliated_payment_orders": 8,
"reference_date": "2025-06-13",
"created_at": "2025-06-10T20:30:23.459Z"
},
{
"payment_order_conciliation_batch_key": "98fc62fd-b0a0-4604-9bea-475e91a9dc82",
"payment_order_conciliation_batch_status": "open",
"payment_order_conciliation_batch_type": "variable_amount",
"account_key": "c24a0ac4-792c-494e-b887-6185e07a33a3",
"total_amount": 1000,
"conciliated_amount": 500,
"total_payment_orders": 10,
"conciliated_payment_orders": 5,
"reference_date": "2025-06-17",
"created_at": "2025-06-10T20:30:23.459Z"
}
],
"pagination": {
"page": 1,
"page_size": 25,
"number_of_pages": 1
}
}

Response Body Params

FieldTypeDescriptionCharacters
payment_order_conciliation_batchesarrayList of payment order conciliation batches.Array payment_order_conciliation_batches
paginationobjectQuery pagination information.Object pagination

Array payment_order_conciliation_batches

FieldTypeDescriptionCharacters
payment_order_conciliation_batch_keyuuidv4Unique identifier of the conciliation batch.36
payment_order_conciliation_batch_statusenumeratorStatus of the payment order conciliation batch.Enumerators payment_order_conciliation_batch_status
payment_order_conciliation_batch_typeenumeratorType of the payment order conciliation batch.Enumerators payment_order_conciliation_batch_type
account_keyuuidv4Unique account identification key.36
total_amountnumberTotal amount of the conciliation batch in Brazilian reais (R$).-
conciliated_amountnumberAlready conciliated amount of the batch in Brazilian reais (R$).-
total_payment_ordersintegerTotal number of payment orders in the batch.-
conciliated_payment_ordersintegerNumber of payment orders already conciliated in the batch.-
reference_datestringReference date of the batch (ISO 8601 format, e.g., "2025-06-13").10
created_atstringBatch creation date and time (ISO 8601 format).-

Object pagination

FieldTypeDescriptionCharacters
pageintegerCurrent page of the query.-
page_sizeintegerPage size (number of items per page).-
number_of_pagesintegerTotal number of available pages.-

Enumerators payment_order_conciliation_batch_status

EnumeratorDescription
openOpen conciliation batch
closedClosed conciliation batch
processingConciliation batch in processing
completedCompleted conciliation batch
cancelledCancelled conciliation batch

Enumerators payment_order_conciliation_batch_type

EnumeratorDescription
fixed_amountFixed amount conciliation batch
variable_amountVariable amount conciliation batch
STATUS
4XX
Response Error
{
"title": "titulo",
"description": "description in English",
"translation": "descrição em português",
"code": "codigo"
}
HTTP CodeQI Code
code
Title
title
Description (eng)
description
Description (ptbr)
translation
400QIT000002Bad RequestInvalid request schema.Erro no esquema da requisição.
404APX000003Conciliation Batch Not FoundConciliation batch not found.Lote de conciliação não encontrado.