Order Invoice
Create Invoice
POST/orders/invoices
This endpoint allows you to create an invoice to a specific order from your side.
:::tip[Note]For the order data type, you will need to specify the I...
List Invoices
GET/orders/invoices
This endpoint allows you to fetch a list of order invoices.
`orders.read` - Orders Read Only
Invoice Details
GET/orders/invoices/{invoice_id}
This endpoint allows you to fetch a specific order invoice details by passing the invoice_id as a path parameter.
`orders.read` - Orders Read Only
Send Order Invoice
POST/orders/{order_id}/send-invoice
This endpoint allows you to send the order invoice to the customer's email by passing the order_id as a path parameter.
:::tip[Note]To send the i...
Create Order Invoice
POST/orders/{order_id}/print-invoice
This endpoint allows you to create / print the Order Invoice by passing the order_id as the path parameter.
`orders.read_write` - Orders Read & Write...