Use Case for Creating an Invoice

To create an invoice with an item, include the values of required fields such as posting period, location, item ID, and amount in the request body.

          POST {{REST_SERVICES}}/record/v1/invoice/
{
    "entity": {
        "id": "614"
    },
    "postingperiod": "21",
    "location": 1,
    "item": {
        "items": [
            {
                "amount": 1000.0,
                "item": {
                    "id": "86"
                }
            }
        ]
    },
    "subsidiary": {
        "id": "1"
    },
    "terms": {
        "id": "1"
    }
} 

        

For more options to create an invoice using REST API, see Invoice.

Related Topics

Invoice Use Cases
Use Cases for Updating an Invoice
Use Case or Retrieving an Invoice
Use Case for Fetching Invoices from a Lead Source
Use Case for Deleting an Invoice

General Notices