DELETE
/
invoices
/
{invoice_id}
/
items
/
{item_id}
curl --request DELETE \
  --url https://api.live.paisr.tech/{version}/invoices/{invoice_id}/items/{item_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

invoice_id
string
required

The Invoice ID.

item_id
string
required

The Item ID.

Response

200
application/json
Successfully removed invoice item.
success
boolean

Indicates if the request was successful.

message
string

A descriptive message regarding the result.