Intenciones de Pago
Listar intenciones de pago
GET /cloud-terminals/payment-intentions
Lista intenciones de pago (eventos de tipo CLOUD_TERMINAL) con filtros por cliente, comercio, terminal, requestId, rango de fechas, flow y paginación. Este endpoint filtra únicamente por intenciones de pago.
Parámetros de consulta
| Parámetros | Descripción |
|---|---|
| customerId |
|
merchantId
|
|
terminalId
|
|
requestId
|
|
start
|
|
end
|
|
flow
|
|
page
|
|
size
|
|
Encabezados
Authorization: Bearer {access_token}curl --location --request GET \
'https://api.menta.global/api/v1/cloud-terminals/payment-intentions?customerId={customer_id}&merchantId={merchant_id}&terminalId={terminal_id}&page=0&size=10' \
--header 'Authorization: Bearer {access_token}'200: OK
{
"data": [
{
"customer_id": "1176a88f-b436-4068-8189-5bfb19bfc3a2",
"merchant_id": "5f520602-38f8-4067-a8b1-fe363f8b481d",
"terminal_id": "42cc723b-017d-4ecf-ab10-05f20bafa4da",
"request_id": "a7f0f6e7-a6fb-4cec-ac08-f43ded94308a",
"type": "CLOUD_TERMINAL",
"status": "CREATED",
"created_at": "2026-02-10T14:59:07Z",
"data": {
"flow": "PAYMENT_INTENT",
"amount": "10000",
"payment_method": "CREDIT",
"card_brand": "MASTERCARD",
"installments": 3,
"additional_info": "Pago de prueba",
"is_print_allowed": true,
"is_tip_allowed": true
}
}
],
"page": {
"size": 10,
"total_elements": 10,
"total_pages": 1,
"number": 0
}
}