Create Challan

POST/api/pay/v1/order/{order_id}/challan

Creates an e-challan for a given order. The challan contains virtual account details that customers can use for payment.

Requires Bearer token. Get token →

Path Parameters

NameTypeDescription
order_id
stringrequired

Unique identifier of the order in the Pine Labs Online database.

Request Body

NameTypeDescription
convenience_fee_breakdown
object

An object that contains the convenience fee breakdown details.

fee_amount
object

An object that contains the fee amount details.

tax_amount
object

An object that contains the tax amount details.

additional_fee_amount
object

An object that contains the additional fee amount details.

maximum_fee_amount
object

An object that contains the maximum fee amount details.

applicable_fee_amount
object

An object that contains the applicable fee amount details.

Response

NameTypeDescription
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

200Challan created successfully.
400
Request
curl --request POST \
  --url https://pluraluat.v2.pinepg.in/api/pay/v1/order/v1-250912053834-aa-a6T94l/challan \
  --header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  --header 'Content-Type: application/json' \
  --data '{
  "convenience_fee_breakdown": {
    "fee_amount": {
      "value": 1000,
      "currency": "INR"
    },
    "tax_amount": {
      "value": 180,
      "currency": "INR"
    },
    "additional_fee_amount": {
      "value": 0,
      "currency": "INR"
    },
    "maximum_fee_amount": {
      "value": 99999999,
      "currency": "INR"
    },
    "applicable_fee_amount": {
      "value": 1180,
      "currency": "INR"
    }
  }
}'

Run this request

order_id
200 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"
}
New chat
Responses are generated using AI and may contain mistakes.
Hi! I'm Pine, your AI developer assistant. Ask me anything about Pine Labs APIs, integrations, or troubleshooting.

Tip: you can create a new chat with ⌘ + E