Skip to main content

}

Get payment request public info

GET https://checkout-eu-a.paysera.com/checkout/rest/v1/payment-requests/{id}/public-info

Get public information about a payment request without authentication.

This endpoint does not require MAC authentication and can be used to retrieve basic payment information like status, price, and description.

No Authentication Required

This is a public endpoint that can be accessed without MAC authentication headers.

Parameters​

Path Parameters​

NameTypeRequiredDescription
idstring✓Payment request ID

Example​

Request​

GET https://checkout-eu-a.paysera.com/checkout/rest/v1/payment-requests/abc123payment/public-info

Response​

{
"status": "captured",
"price": {
"amount": 999,
"currency": "EUR"
},
"description": "Monthly subscription",
"contact_info": {
"email": "customer@example.com"
},
"payer_email_present": true
}

AUTHORIZATION: HTTP

REQUEST

Base URL
https://checkout-eu-a.paysera.com

RESPONSE

Public payment request information
{
"status": "captured",
"price": {
"amount": 999,
"currency": "EUR"
},
"description": "Monthly subscription",
"contact_info": {
"email": "customer@example.com"
},
"payer_email_present": true
}