Create an Order
POST
/v1/orders
Click to copy
Use this endpoint to create an order with basic details such as amount and currency.
Is this page helpful?
Curl
change language
change language
1curl -u [YOUR_KEY_ID]:[YOUR_KEY_SECRET] \2-X POST https://api.razorpay.com/v1/orders \3-H "content-type: application/json" \4-d '{5"amount": 50000,6"currency": "MYR",7"receipt": "receipt#1",8"notes": {9"key1": "value3",10"key2": "value2"11}12}'
Success
Failure
1{2"id": "order_EKwxwAgItmmXdp",3"entity": "order",4"amount": 50000,5"amount_paid": 0,6"amount_due": 50000,7"currency": "MYR",8"receipt": "receipt#1",9"offer_id": null,10"status": "created",11"attempts": 0,12"notes": {13"key1": "value3",14"key2": "value2"15},16"created_at": 158262807117}
Request Parameters
amount
*
integer
The amount for which the order was created, in currency subunits. For example, for an amount of MYR 295.00, enter 29500
. Payment can only be made for this amount against the Order.
currency
*
string
ISO code for the currency in which you want to accept the payment. The default length is 3 characters.
receipt
string
Receipt number that corresponds to this order, set for your internal reference. Can have a maximum length of 40 characters and has to be unique.
notes
json object
Key-value pair that can be used to store additional information about the entity. Maximum 15 key-value pairs, 256 characters (maximum) each. For example, "note_key": "Beam me up Scotty”
.
partial_payment
boolean
Indicates whether the customer can make a partial payment. Possible values:
true
: The customer can make partial payments.false
(default) : The customer cannot make partial payments.
first_payment_min_amount
integer
Minimum amount that must be paid by the customer as the first partial payment. For example, if an amount of MYR 700.00 is to be received from the customer in two installments of #1 - MYR 500.00, #2 - MYR 200.00, then you can set this value as 50000
. This parameter should be passed only if partial_payment
is true
.
Response Parameters
id
string
The unique identifier of the order.
amount
integer
The amount for which the order was created, in currency subunits. For example, for an amount of MYR 295.00, enter 29500
.
entity
string
Name of the entity. Here, it is order
.
amount_paid
integer
The amount paid against the order.
amount_due
integer
The amount pending against the order.
currency
string
ISO code for the currency in which you want to accept the payment. The default length is 3 characters.
receipt
string
Receipt number that corresponds to this order. Can have a maximum length of 40 characters and has to be unique.
status
string
The status of the order. Possible values:
created
: When you create an order it is in thecreated
state. It stays in this state till a payment is attempted on it.attempted
: An order moves fromcreated
toattempted
state when a payment is first attempted on it. It remains in theattempted
state till one payment associated with that order is captured.paid
: After the successful capture of the payment, the order moves to thepaid
state. No further payment requests are permitted once the order moves to thepaid
state. The order stays in thepaid
state even if the payment associated with the order is refunded.
attempts
integer
The number of payment attempts, successful and failed, that have been made against this order.
notes
json object
Key-value pair that can be used to store additional information about the entity. Maximum 15 key-value pairs, 256 characters (maximum) each. For example, "note_key": "Beam me up Scotty”
.
created_at
integer
Indicates the Unix timestamp when this order was created.
Errors
The API <key/secret> provided is invalid.
Error Status: 400
The API credentials passed in the API call differ from the ones generated on the Dashboard. Possible reasons:
- Different keys for test mode and live modes.
- Expired API key.
Solution
Order amount less than minimum amount allowed.
Error Status: 400
The amount specified is less than the minimum amount, that is 10
.
Solution
The field name is required.
Error Status: 400
A mandatory field is missing.
Solution
Create an Order
POST
/v1/orders
Click to copy
Use this endpoint to create an order with basic details such as amount and currency.
Is this page helpful?
Request Parameters
amount
*
integer
The amount for which the order was created, in currency subunits. For example, for an amount of MYR 295.00, enter 29500
. Payment can only be made for this amount against the Order.
currency
*
string
ISO code for the currency in which you want to accept the payment. The default length is 3 characters.
receipt
string
Receipt number that corresponds to this order, set for your internal reference. Can have a maximum length of 40 characters and has to be unique.
notes
json object
Key-value pair that can be used to store additional information about the entity. Maximum 15 key-value pairs, 256 characters (maximum) each. For example, "note_key": "Beam me up Scotty”
.
partial_payment
boolean
Indicates whether the customer can make a partial payment. Possible values:
true
: The customer can make partial payments.false
(default) : The customer cannot make partial payments.
first_payment_min_amount
integer
Minimum amount that must be paid by the customer as the first partial payment. For example, if an amount of MYR 700.00 is to be received from the customer in two installments of #1 - MYR 500.00, #2 - MYR 200.00, then you can set this value as 50000
. This parameter should be passed only if partial_payment
is true
.
Response Parameters
id
string
The unique identifier of the order.
amount
integer
The amount for which the order was created, in currency subunits. For example, for an amount of MYR 295.00, enter 29500
.
entity
string
Name of the entity. Here, it is order
.
amount_paid
integer
The amount paid against the order.
amount_due
integer
The amount pending against the order.
currency
string
ISO code for the currency in which you want to accept the payment. The default length is 3 characters.
receipt
string
Receipt number that corresponds to this order. Can have a maximum length of 40 characters and has to be unique.
status
string
The status of the order. Possible values:
created
: When you create an order it is in thecreated
state. It stays in this state till a payment is attempted on it.attempted
: An order moves fromcreated
toattempted
state when a payment is first attempted on it. It remains in theattempted
state till one payment associated with that order is captured.paid
: After the successful capture of the payment, the order moves to thepaid
state. No further payment requests are permitted once the order moves to thepaid
state. The order stays in thepaid
state even if the payment associated with the order is refunded.
attempts
integer
The number of payment attempts, successful and failed, that have been made against this order.
notes
json object
Key-value pair that can be used to store additional information about the entity. Maximum 15 key-value pairs, 256 characters (maximum) each. For example, "note_key": "Beam me up Scotty”
.
created_at
integer
Indicates the Unix timestamp when this order was created.
Errors
The API <key/secret> provided is invalid.
Error Status: 400
The API credentials passed in the API call differ from the ones generated on the Dashboard. Possible reasons:
- Different keys for test mode and live modes.
- Expired API key.
Solution
Order amount less than minimum amount allowed.
Error Status: 400
The amount specified is less than the minimum amount, that is 10
.
Solution
The field name is required.
Error Status: 400
A mandatory field is missing.
Solution
Curl
change language
change language
1curl -u [YOUR_KEY_ID]:[YOUR_KEY_SECRET] \2-X POST https://api.razorpay.com/v1/orders \3-H "content-type: application/json" \4-d '{5"amount": 50000,6"currency": "MYR",7"receipt": "receipt#1",8"notes": {9"key1": "value3",10"key2": "value2"11}12}'
Success
Failure
1{2"id": "order_EKwxwAgItmmXdp",3"entity": "order",4"amount": 50000,5"amount_paid": 0,6"amount_due": 50000,7"currency": "MYR",8"receipt": "receipt#1",9"offer_id": null,10"status": "created",11"attempts": 0,12"notes": {13"key1": "value3",14"key2": "value2"15},16"created_at": 158262807117}