List automatic payment requests by user CPF
Returns a paginated list of automatic payment requests for a payer identified
by CPF (path userCpf). This route requires the subTenantId header so
the backend can resolve which initiator context to query.
/api/v1/automatic-payments/{userCpf}Get automatic payment requests by user CPF
Lists automatic payment requests for a user CPF with optional filters and pagination.
Parâmetros de path
1 campouserCpf●Payer CPF (digits only, 11 characters).
Parâmetros de query
8 campospageSizePage size.
pageIndexZero-based page index.
skipRows to skip.
limitPerPageRows per page (default 10).
consentStatusAUTHORISED | AWAITING_AUTHORISATION | REJECTED | REVOKED.
statusPENDENTE | CONSUMIDO | REJEITADO (payment request status filter).
typeSWEEPING | AUTOMATIC — product filter.
withConsentWhen `true`, restrict to requests that already carry a consent id.
Cabeçalhos
1 camposubTenantId●Sub-tenant identifier for the initiator context.
curl --request GET \
--url 'https://embedded-payment-manager.hml.linaob.com.br/api/v1/automatic-payments/12345678901?pageSize=10&pageIndex=0&skip=0&limitPerPage=10&consentStatus=AUTHORISED&status=CONSUMIDO&type=AUTOMATIC&withConsent=true' \
--header 'Authorization: Bearer <SEU_TOKEN>' \
--header 'subTenantId: subtenant_abc123'Response
- dataarray of objectsrequired
AutomaticPaymentRequest entries.
- itemobject
- messagestring
- typestring
- subTenantsByIdentityarray of string
Auxiliary list returned by the API.
- itemstring
- metaobjectrequired
Pagination metadata.
{
"data": [],
"message": "",
"type": "success",
"subTenantsByIdentity": [],
"meta": {
"pageIndex": 0,
"pageSize": 10,
"total": 0
}
}Next steps
- Get automatic payment request — fetch one request by id.
- List automatic payment requests by sub-tenant — filter within a sub-tenant.