List automatic payment requests by tenant
Returns a paginated, filterable list of automatic payment requests for all
sub-tenants under a tenant on the initiation portal host. Use it for
back-office or monitoring — not for the hot path right after a payer redirect
(prefer
Get automatic payment request
when you already know the request id).
/api/v1/automatic-payments/tenants/{tenantId}Get payment requests by tenant
Lists automatic payment requests for every sub-tenant under the tenant, with pagination and optional filters.
Parâmetros de path
1 campotenantId●Parent tenant identifier.
Parâmetros de query
20 campospageSizePage size.
pageIndexZero-based page index.
skipRows to skip (pagination alternative).
limitPerPageRows per page (default 10 in backend).
startDateFilter — interval start (ISO 8601).
endDateFilter — interval end (ISO 8601).
minLastUpdateDateMinimum `lastChangedDateTime`.
maxLastUpdateDateMaximum `lastChangedDateTime`.
fixedAmountFilter by fixed amount configuration.
variableAmountFilter by variable amount configuration.
minAmountMinimum payment amount.
maxAmountMaximum payment amount.
debtorDocumentDebtor CPF/CNPJ filter.
creditorDocumentCreditor CPF/CNPJ filter.
debitorNameDebtor name filter.
creditorNameCreditor name filter.
consentStatus`AUTHORISED`, `AWAITING_AUTHORISATION`, `REJECTED`, or `REVOKED`.
statusRepeatable query parameter — filter by one or more payment request status values (OpenAPI: array of strings).
termGeneric search term.
paymentRequestIdPartial match on payment request id.
curl --request GET \
--url 'https://embedded-payment-manager.hml.linaob.com.br/api/v1/automatic-payments/tenants/tenant_enterprise_001?pageSize=10&pageIndex=0&skip=0&limitPerPage=10&startDate=2026-01-01T00%3A00%3A00Z&endDate=2026-12-31T23%3A59%3A59Z&minLastUpdateDate=2026-05-01T00%3A00%3A00Z&maxLastUpdateDate=2026-05-31T23%3A59%3A59Z&fixedAmount=100.00&variableAmount=500.00&minAmount=10.00&maxAmount=1000.00&debtorDocument=76109277673&creditorDocument=12345678000195&debitorName=Maria%20Example&creditorName=Merchant%20SA&consentStatus=AUTHORISED&status=%5B%22PENDENTE%22%5D&term=subscription&paymentRequestId=f3b4e8c2' \
--header 'Authorization: Bearer <SEU_TOKEN>'Response
- dataarray of objectsrequired
AutomaticPaymentRequest entries.
- itemobject
- messagestring
Response message.
- typestring
Envelope type.
- metaobjectrequired
Pagination metadata — structure defined by the backend.
{
"data": [
{
"id": "f3b4e8c2-2c1d-4f6a-9c1e-5a92f3a7d8a1",
"consentStatus": "AUTHORISED",
"status": "CONSUMIDO",
"createDateTime": "2026-05-01T12:00:00Z"
}
],
"message": "",
"type": "success",
"meta": {
"pageIndex": 0,
"pageSize": 10,
"total": 1
}
}Next steps
- List automatic payment requests by sub-tenant — same filters scoped to one sub-tenant.
- List automatic payments by tenant — list settled automatic payment legs across sub-tenants.