Delete Invoice Line Item(s)

DELETE /api/.../invoices/{id}/lineitems

Delete Invoice line item(s).

Request Information

Parameters
Name Type Required Description
id Integer Yes The unique id assigned to the Invoice.
lineItems List of Integers Yes List of line items to be deleted from the invoice.
overridePOLinks bool No Indicator to allow deletion of line items when linked POs exist.
Example
application/json, text/json
    [
        {
            8919
        },
        {
            4444
        }
    ]
    

Response Information

True is returned upon success.

Example
application/json, text/json
        true
        

HTTP Response Codes

Code Description
200 OK. Success
400 FAILURE.