Get Presentation
/ps/api/v1/public/presentations/{presentation_id}Retrieves a specific presentation by its presentation ID.
Bearer token. Get token →Path Parameters
| Name | Type | Description |
|---|---|---|
presentation_id | stringrequired | Unique identifier for the presentation. |
Response
| Name | Type | Description |
|---|---|---|
subscription_id | string | Unique identifier for the subscription. |
presentation_id | string | Unique identifier for the presentation. |
due_date | string | The ISO 8601 UTC Timestamp when the payment is due. |
amount | object | This is the recurring mandate amount, that would be charged for each frequency. For instance 200 every month. This field is not needed if the mandate frequency is AS |
value | integerrequired | Amount in the smallest currency unit (paisa for INR). Minimum ₹1 (100), maximum ₹10 lakh (100000000). |
currency | stringrequired | Three-letter ISO 4217 currency code. |
merchant_presentation_reference | string | Unique identifier of the merchant presentation reference. |
pdn_status | string | Pre-debit notification status.
Allowed values: CREATEDINITIATEDNOTIFIEDFAILEDCANCELLEDPAUSEDPDN_FAILED |
status | string | Presentation status.
Allowed values: CREATEDPENDINGCOMPLETEDFAILEDCANCELLEDPAUSEDPARTIALLY_REFUNDEDREFUNDEDINITIATED |
failure_count | integer | The number of times the requests to execute mandates at banks have failed. |
order_id | string | Unique identifier of the order created for this presentation. |
Status Codes
200 | Presentation retrieved successfully. |
404 | The requested resource does not exist. |
500 | An unexpected error occurred on the server. |
curl --request GET \
--url https://pluraluat.v2.pinepg.in/ps/api/v1/public/presentations/%7Bpresentation_id%7D \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN'Run this request
presentation_id{
"subscription_id": "v1-sub-250911093342-aa-v9YH7S",
"presentation_id": "v1-bil-250911093822-aa-i37gSm",
"due_date": "2025-09-12T18:00:00Z",
"amount": {
"value": 100,
"currency": "INR"
},
"merchant_presentation_reference": "z1B3pu003",
"pdn_status": "NOTIFIED",
"status": "PENDING",
"failure_count": 0
}