Get Challan
GET
/api/pay/v1/order/{order_id}/challanRetrieves the e-challan details for a given order.
Requires
Bearer token. Get token →Path Parameters
| Name | Type | Description |
|---|---|---|
order_id | stringrequired | Unique identifier of the order in the Pine Labs Online database. |
Response
| Name | Type | Description |
|---|---|---|
challan_id | string | Unique identifier of the challan. |
order_id | string | Unique identifier of the order. |
virtual_account_id | string | Unique customer account identifier. |
account_name | string | Account holder's name. |
account_ifsc | string | IFSC code of the account. |
account_bank_name | string | Name of the bank. |
account_bank_branch | string | Branch of the bank. |
challan_pdf_url | string | URL to download the challan PDF. |
amount_due | integer | Total amount due against the e-challan (in paisa). |
expiry_date | string | Date when the e-challan expires. |
created_date | string | ISO 8601 UTC timestamp when the challan was created. |
Status Codes
200 | Challan retrieved successfully. |
400 |
Request
curl --request GET \
--url https://pluraluat.v2.pinepg.in/api/pay/v1/order/v1-250912053834-aa-a6T94l/challan \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN'Run this request
order_id200 OK
{
"challan_id": "v1-cha-250912053848-aa-xrldQX",
"order_id": "v1-250912053834-aa-a6T94l",
"virtual_account_id": "PINEMFGEPXDRCSOKYO7SUQS8",
"account_name": "Amazon Group",
"account_ifsc": "UTIB0005717",
"account_bank_name": "Axis Bank",
"account_bank_branch": "Axis Bank Branch, CRC Greater Noida West",
"challan_pdf_url": "https://payins-service-dev.v2.pinepg.in/api/pay/v1/order/v1-250912053834-aa-a6T94l/challan/pdf",
"amount_due": 1001180,
"expiry_date": "2025-09-19",
"created_date": "2025-09-12T05:38:48.260Z"
}