Get subscription details for SBMD enabled subscription
GET
/ps/public/subscriptions/sbmd/{reserve_pay_sub_id}Fetch Reserved Pay details for a customer
Requires
Bearer token. Get token →Path Parameters
| Name | Type | Description |
|---|---|---|
reserve_pay_sub_id | stringrequired | Unique identifier for the subscription. |
Response
| Name | Type | Description |
|---|---|---|
subscription_id | string | Unique identifier for the created subscription |
order_id | string | order_id for the created order |
customer_id | string | customer_id passed |
status | string | Current status of the subscription after creation |
start_date | string | Subscription start timestamp |
end_date | string | Subscription end timestamp |
currency | string | |
total_blocked_amount | integer | Total amount blocked for the subscription (in smallest currency unit, e.g., paise) |
debited_amount | integer | Amount already debited from the subscription (in smallest currency unit, e.g., paise) |
remaining_balance | integer | Amount still available in the subscription (in smallest currency unit, e.g., paise) |
Status Codes
200 | Success |
400 | Bad Request |
500 | Internal Server Error |
Request
curl --request GET \
--url https://pluraluat.v2.pinepg.in/ps/public/subscriptions/sbmd/%7Breserve_pay_sub_id%7D \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN'Run this request
reserve_pay_sub_id200 OK
{
"subscription_id": "v1-sub-260601221059-aa-G3KP2L",
"order_id": "v1-260601221059-aa-29gUE3",
"customer_id": "cust-v1-260601210124-aa-NG6Pt3",
"status": "ACTIVE",
"start_date": "2026-06-01T22:10:59.591656Z",
"end_date": "2026-06-15T22:10:59.59166Z",
"currency": "INR",
"total_blocked_amount": 1100,
"debited_amount": 600,
"remaining_balance": 500
}