Skip to main content
DELETE
/
{version}
/
invoices
/
{invoice_id}
/
items
/
{id}
/
remove
Remove Invoice Item
curl --request DELETE \
  --url https://api.example.com/{version}/invoices/{invoice_id}/items/{id}/remove \
  --header 'Authorization: Bearer <token>'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

version
string
required
Allowed value: "v1"
invoice_id
string
required
id
string
required

Response

Successful Response

Last modified on June 23, 2026