Issue an Invoice
POST/v1/invoices/:id/issueClick to copy
Use this endpoint to issue invoices to your customers. Only an invoice in the draft state can be issued.
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/invoices/inv_DAweOiQ7amIUVd/issue
Success
Failure
1{2"id": "inv_DAweOiQ7amIUVd",3"entity": "invoice",4"receipt": "#0961",5"invoice_number": "#0961",6"customer_id": "cust_DAtUWmvpktokrT",7"customer_details": {8"id": "cust_DAtUWmvpktokrT",9"name": "John Smith",10"email": "john.smith@example.com",11"contact": "+11234567890",12"gstin": null,13"billing_address": {14"id": "addr_DAtUWoxgu91obl",15"type": "billing_address",16"primary": true,17"line1": "318 C-Wing, Suyog Co. Housing Society Ltd.",18"line2": "T.P.S Road, Vazira, Borivali",19"zipcode": "400092",20"city": "Mumbai",21"state": "Maharashtra",22"country": "in"23},24"shipping_address": null,25"customer_name": "John Smith",26"customer_email": "john.smith@example.com",27"customer_contact": "+11234567890"28},29"order_id": "order_DBG3P8ZgDd1dsG",30"line_items": [31{32"id": "li_DAweOizsysoJU6",33"item_id": null,34"name": "Book / English August - Updated name and quantity",35"description": "150 points in Quidditch",36"amount": 400,37"unit_amount": 400,38"gross_amount": 400,39"tax_amount": 0,40"taxable_amount": 400,41"net_amount": 400,42"currency": "",43"type": "invoice",44"tax_inclusive": false,45"hsn_code": null,46"sac_code": null,47"tax_rate": null,48"unit": null,49"quantity": 1,50"taxes": []51},52{53"id": "li_DAwjWQUo07lnjF",54"item_id": null,55"name": "Book / A Wild Sheep Chase",56"description": null,57"amount": 200,58"unit_amount": 200,59"gross_amount": 200,60"tax_amount": 0,61"taxable_amount": 200,62"net_amount": 200,63"currency": "",64"type": "invoice",65"tax_inclusive": false,66"hsn_code": null,67"sac_code": null,68"tax_rate": null,69"unit": null,70"quantity": 1,71"taxes": []72}73],74"payment_id": null,75"status": "issued",76"expire_by": 1567103399,77"issued_at": 1566974805,78"paid_at": null,79"cancelled_at": null,80"expired_at": null,81"sms_status": null,82"email_status": null,83"date": 1566891149,84"terms": null,85"partial_payment": false,86"gross_amount": 600,87"tax_amount": 0,88"taxable_amount": 600,89"amount": 600,90"amount_paid": 0,91"amount_due": 600,92"currency": "",93"currency_symbol": "<currency_symbol>",94"description": "This is a test invoice.",95"notes": {96"updated-key": "An updated note."97},98"comment": null,99"short_url": "https://rzp.io/i/K8Zg72C",100"view_less": true,101"billing_start": null,102"billing_end": null,103"type": "invoice",104"group_taxes_discounts": false,105"created_at": 1566906474,106"idempotency_key": null107}
Path Parameters
id *
stringThe unique identifier of the invoice.
Response Parameters
idstringThe unique identifier of the invoice.
entitystring Indicates the type of entity. Here, it is invoice.
typestring Here, it should be invoice.
invoice_numberstringUnique number you added for internal reference. The minimum character length is 1 and maximum is 40.
customer_idstring The unique identifier of the customer. You can create customer_id using the
customer_detailsobjectDetails of the customer.
Show child parameters (6)
order_idstringThe unique identifier of the order associated with the invoice.
line_itemsobjectDetails of the line item that is billed in the invoice. Maximum of 50 line items.
Show child parameters (8)
payment_idstringUnique identifier of a payment made against this invoice.
statusstringThe status of the invoice. Know more about
. Possible values:draftissuedpartially_paidpaidcancelledexpireddeleted
expire_byintegerTimestamp, in Unix format, at which the invoice will expire.
issued_atintegerTimestamp, in Unix format, at which the invoice was issued to the customer.
paid_atintegerTimestamp, in Unix format, at which the payment was made.
cancelled_atintegerTimestamp, in Unix format, at which the invoice was cancelled.
expired_atintegerTimestamp, in Unix format, at which the invoice expired.
sms_statusstringThe delivery status of the SMS notification for the invoice sent to the customer. Possible values:
pendingsent
email_statusstringThe delivery status of the email notification for the invoice sent to the customer. Possible values:
pendingsent
partial_paymentbooleanIndicates whether the customer can make a partial payment on the invoice. Possible values:
true: The customer can make partial payments.false(default): The customer cannot make partial payments.
amountinteger Amount to be paid using the invoice. Must be in the smallest unit of the currency. For example, if the amount to be received from the customer is $300.00, pass the value as 30000.
amount_paidintegerAmount paid by the customer against the invoice.
amount_dueintegerThe remaining amount to be paid by the customer for the issued invoice.
currencystring The currency associated with the invoice. Possible value: USD.
descriptionstringA brief description of the invoice. The maximum character length is 2048.
notesobjectAny custom notes added to the invoice. Maximum of 2048 characters.
short_urlstringThe short URL that is generated. Share this link with customers to accept payments.
dateintegerTimestamp, in Unix format, that indicates the issue date of the invoice.
termsstringAny terms to be included in the invoice. Maximum of 2048 characters.
commentstringAny comments to be added in the invoice. Maximum of 2048 characters.
Errors
The API <key/secret> provided is invalid.
Error Status: 400
There is a mismatch between the API credentials passed in the API call and those generated on the Dashboard.
Solution
line_items is required.
Error Status: 400
Items and customer details are missing.
Solution
Operation not allowed for Invoice in issued status.
Error Status: 400
You are trying to issue an invoice that is already issued.
Solution
The id provided does not exist.
Error Status: 400
There is an error in the invoice id. It may be incorrect or invalid.
Solution
Issue an Invoice
POST/v1/invoices/:id/issueClick to copy
Use this endpoint to issue invoices to your customers. Only an invoice in the draft state can be issued.
Is this page helpful?
Path Parameters
id *
stringThe unique identifier of the invoice.
Response Parameters
idstringThe unique identifier of the invoice.
entitystring Indicates the type of entity. Here, it is invoice.
typestring Here, it should be invoice.
invoice_numberstringUnique number you added for internal reference. The minimum character length is 1 and maximum is 40.
customer_idstring The unique identifier of the customer. You can create customer_id using the
customer_detailsobjectDetails of the customer.
Show child parameters (6)
order_idstringThe unique identifier of the order associated with the invoice.
line_itemsobjectDetails of the line item that is billed in the invoice. Maximum of 50 line items.
Show child parameters (8)
payment_idstringUnique identifier of a payment made against this invoice.
statusstringThe status of the invoice. Know more about
. Possible values:draftissuedpartially_paidpaidcancelledexpireddeleted
expire_byintegerTimestamp, in Unix format, at which the invoice will expire.
issued_atintegerTimestamp, in Unix format, at which the invoice was issued to the customer.
paid_atintegerTimestamp, in Unix format, at which the payment was made.
cancelled_atintegerTimestamp, in Unix format, at which the invoice was cancelled.
expired_atintegerTimestamp, in Unix format, at which the invoice expired.
sms_statusstringThe delivery status of the SMS notification for the invoice sent to the customer. Possible values:
pendingsent
email_statusstringThe delivery status of the email notification for the invoice sent to the customer. Possible values:
pendingsent
partial_paymentbooleanIndicates whether the customer can make a partial payment on the invoice. Possible values:
true: The customer can make partial payments.false(default): The customer cannot make partial payments.
amountinteger Amount to be paid using the invoice. Must be in the smallest unit of the currency. For example, if the amount to be received from the customer is $300.00, pass the value as 30000.
amount_paidintegerAmount paid by the customer against the invoice.
amount_dueintegerThe remaining amount to be paid by the customer for the issued invoice.
currencystring The currency associated with the invoice. Possible value: USD.
descriptionstringA brief description of the invoice. The maximum character length is 2048.
notesobjectAny custom notes added to the invoice. Maximum of 2048 characters.
short_urlstringThe short URL that is generated. Share this link with customers to accept payments.
dateintegerTimestamp, in Unix format, that indicates the issue date of the invoice.
termsstringAny terms to be included in the invoice. Maximum of 2048 characters.
commentstringAny comments to be added in the invoice. Maximum of 2048 characters.
Errors
The API <key/secret> provided is invalid.
Error Status: 400
There is a mismatch between the API credentials passed in the API call and those generated on the Dashboard.
Solution
line_items is required.
Error Status: 400
Items and customer details are missing.
Solution
Operation not allowed for Invoice in issued status.
Error Status: 400
You are trying to issue an invoice that is already issued.
Solution
The id provided does not exist.
Error Status: 400
There is an error in the invoice id. It may be incorrect or invalid.
Solution
Curl
change language
change language
1curl -u [YOUR_KEY_ID]:[YOUR_KEY_SECRET] \2-X POST https://api.razorpay.com/v1/invoices/inv_DAweOiQ7amIUVd/issue
Success
Failure
1{2"id": "inv_DAweOiQ7amIUVd",3"entity": "invoice",4"receipt": "#0961",5"invoice_number": "#0961",6"customer_id": "cust_DAtUWmvpktokrT",7"customer_details": {8"id": "cust_DAtUWmvpktokrT",9"name": "John Smith",10"email": "john.smith@example.com",11"contact": "+11234567890",12"gstin": null,13"billing_address": {14"id": "addr_DAtUWoxgu91obl",15"type": "billing_address",16"primary": true,17"line1": "318 C-Wing, Suyog Co. Housing Society Ltd.",18"line2": "T.P.S Road, Vazira, Borivali",19"zipcode": "400092",20"city": "Mumbai",21"state": "Maharashtra",22"country": "in"23},24"shipping_address": null,25"customer_name": "John Smith",26"customer_email": "john.smith@example.com",27"customer_contact": "+11234567890"28},29"order_id": "order_DBG3P8ZgDd1dsG",30"line_items": [31{32"id": "li_DAweOizsysoJU6",33"item_id": null,34"name": "Book / English August - Updated name and quantity",35"description": "150 points in Quidditch",36"amount": 400,37"unit_amount": 400,38"gross_amount": 400,39"tax_amount": 0,40"taxable_amount": 400,41"net_amount": 400,42"currency": "",43"type": "invoice",44"tax_inclusive": false,45"hsn_code": null,46"sac_code": null,47"tax_rate": null,48"unit": null,49"quantity": 1,50"taxes": []51},52{53"id": "li_DAwjWQUo07lnjF",54"item_id": null,55"name": "Book / A Wild Sheep Chase",56"description": null,57"amount": 200,58"unit_amount": 200,59"gross_amount": 200,60"tax_amount": 0,61"taxable_amount": 200,62"net_amount": 200,63"currency": "",64"type": "invoice",65"tax_inclusive": false,66"hsn_code": null,67"sac_code": null,68"tax_rate": null,69"unit": null,70"quantity": 1,71"taxes": []72}73],74"payment_id": null,75"status": "issued",76"expire_by": 1567103399,77"issued_at": 1566974805,78"paid_at": null,79"cancelled_at": null,80"expired_at": null,81"sms_status": null,82"email_status": null,83"date": 1566891149,84"terms": null,85"partial_payment": false,86"gross_amount": 600,87"tax_amount": 0,88"taxable_amount": 600,89"amount": 600,90"amount_paid": 0,91"amount_due": 600,92"currency": "",93"currency_symbol": "<currency_symbol>",94"description": "This is a test invoice.",95"notes": {96"updated-key": "An updated note."97},98"comment": null,99"short_url": "https://rzp.io/i/K8Zg72C",100"view_less": true,101"billing_start": null,102"billing_end": null,103"type": "invoice",104"group_taxes_discounts": false,105"created_at": 1566906474,106"idempotency_key": null107}