Ir al contenido

Payments

GET /v1/payments
GET /v1/payments/:id
GET /v1/payment-methods

Valores válidos de status:

pending
completed
canceled
refunded
error
GET /v1/payments

Response:

{
"data": [
{
"id": "pay_123",
"order_id": "ord_123",
"status": "completed",
"amount": 21100,
"method": {
"id": "pm_123",
"name": "Mercado Pago",
"type": "qr"
},
"created_at": "2026-07-06T11:08:26.085497-03:00"
}
]
}