🔍 Consultar QR
Permite obtener toda la información que compone un QR.
REQUEST
Headers
Content-Type | application/json |
---|---|
El tipo MIME del contenido del cuerpo enviado. Por defecto JSON es Unicode UTF-8. No se debe configurar otro charset. | |
Authorization | Bearer * |
Puede consultar la sección (API Key) para más información. |
Path Parameter
Atributo | Tipo | Requerido | Tamaño | Descripción |
---|---|---|---|---|
qr_id | String | Si | 25 | ID único conformado por el ID de la Cuenta - uuid. |
POST Consultar QR
https://api.sandbox.pagos360.com//status/:qr_id
Example Request
curl --location 'https://{{base_url}}/status/{{qr_id}}' \
--header 'Authorization: Bearer {{api_key}}'
📨 Respuesta
QR Pendiente
{ Status: 200 OK
"id": "454133B2-F234493",
"cuit": "27145155113",
"account_id": "52FAA7A8",
"description": "UNIDAD 40216",
"first_due_date": "22-12-2022",
"first_total": 2030,
"external_reference": "Ref testing",
"status": "Pending",
"updated_at": "19-12-2022", //opcional
"multiple_payment": false,
"payer_name": "Pagador"
}
QR Pagado
{ Status: 200 OK
"id": "454133B2-F234494",
"cuit": "27145155113",
"account_id": "52FAA7A8",
"description": "UNIDAD 40216",
"first_due_date": "22-12-2022",
"first_total": 2030,
"external_reference": "Ref testing",
"status": "Paid",
"paid_at": "20-12-2022",
"updated_at": "19-12-2022", //opcional
"multiple_payment": false,
"payer_name": "Pagador"
}
QR Devuelto
{ Status: 200 OK
"id": "454133B2-F234495",
"cuit": "27145155113",
"account_id": "52FAA7A8",
"description": "UNIDAD 40216",
"first_due_date": "22-12-2022",
"first_total": 2030,
"external_reference": "Ref testing",
"status": "Refunded",
"refunded_at": "20-12-2022",
"updated_at": "19-12-2022", //opcional
"multiple_payment": false,
"payer_name": "Pagador"
}
QR Eliminado
{ Status: 200 OK
"id": "454133B2-F234496",
"cuit": "27145155113",
"account_id": "52FAA7A8",
"description": "UNIDAD 40216",
"first_due_date": "22-12-2022",
"first_total": 2030,
"external_reference": "Ref testing",
"status": "Deleted",
"deleted_at": "20-12-2022",
"updated_at": "19-12-2022", //opcional
"multiple_payment": false,
"payer_name": "Pagador"
}