Skip to main content
PATCH
/
invoices
/
{invoice_id}
Update an invoice
curl --request PATCH \
  --url https://app.usequeue.com/api/v1/invoices/{invoice_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "invoice": {
    "id": "abc123",
    "name": "Invoice May 2025",
    "amount": 1500,
    "bill_to": "[email protected]",
    "bill_from": "[email protected]",
    "address": "123 fake st. blvd",
    "tax": 7.5,
    "payment_terms": "Net 30",
    "due": "2025-08-15",
    "issued": "2025-07-25",
    "payment_method": "wire",
    "invoice_number": "INV-1234",
    "credit_type": "none",
    "recurring_invoice_items": [
      {}
    ],
    "invoice_items": [
      {}
    ],
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "user": {
      "username": "Masud",
      "email": "[email protected]"
    }
  }
}

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

Response

200 - application/json

Invoice updated

success
boolean
Example:

true

invoice
object