---
page_title: Create Order
product: Juspay Billing
page_source: https://juspay.io/in/docs/juspay-billing/docs/billing/create-order
llms_txt: https://juspay.io/in/docs/llms.txt
product_llms_txt: https://juspay.io/in/docs/juspay-billing/llms.txt
---


# Create Order 



For all details related to params for Create Order , you can refer this [link](https://juspay.io/in/docs/api-reference/docs/express-checkout/create-order-api)


## For Fixed Plan Type




#### Shell Code Snippet:

```shell
curl --location 'https://sandbox.juspay.in/ecr/orders' \
--header 'Authorization: Basic {{API_KEY}}' \
--header 'version: 2018-07-01' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'order_id=ORDER_20260318_001' \
--data-urlencode 'amount=1' \
--data-urlencode 'currency=INR' \
--data-urlencode 'customer_id=cust_abc123' \
--data-urlencode 'customer_email=customer@example.com' \
--data-urlencode 'customer_phone=9876543210' \
--data-urlencode 'return_url=https://your-domain.com/billing/callback' \
--data-urlencode 'options.create_mandate=REQUIRED' \
--data-urlencode 'mandate.max_amount=5000' \
--data-urlencode 'mandate.amount_rule=VARIABLE' \
--data-urlencode 'payment_rules={"payment_flows":{"billing_creation":{"status":"REQUIRED","info":{"plan_id":"YOUR_PLAN_ID"}}}}'
 

```



## For Fixed Plan Type with Add On




#### Shell Code Snippet:

```shell
curl --location 'https://sandbox.juspay.in/ecr/orders' \
--header 'Authorization: Basic {{API_KEY}}' \
--header 'version: 2018-07-01' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'order_id=ORDER_ADDON_20260318_001' \
--data-urlencode 'amount=1' \
--data-urlencode 'currency=INR' \
--data-urlencode 'customer_id=cust_abc123' \
--data-urlencode 'return_url=https://your-domain.com/billing/callback' \
--data-urlencode 'options.create_mandate=REQUIRED' \
--data-urlencode 'mandate.max_amount=5000' \
--data-urlencode 'mandate.amount_rule=VARIABLE' \
--data-urlencode 'payment_rules={"payment_flows":{"billing_creation":{"status":"REQUIRED","info":{"plan_id":"YOUR_PLAN_ID","add_on":[{"metric_id":3,"quantity":2},{"metric_id":2}]}}}}'
 
```


---

## See Also

- [Session API Request](https://juspay.io/in/docs/juspay-billing/docs/billing/session-api-request)
- [Mandate Register](https://juspay.io/in/docs/juspay-billing/docs/billing/mandate-register)
