v1

latestOpenAPI 3.0.02026-07-24102143224.1 KB
Customers

Update invoice memo

put/v3/customers/{id}/invoices/{invoiceId}/memo

Path parameters

idstring uuid required

Customer ID

invoiceIdstring uuid required

Invoice ID

Request body

memostring required

Memo for the invoice

Example request

{
  "memo": "This is a memo"
}

Response

Updated memo successfully

successboolean required

Boolean with true=success, false=failure

messagestring required

Plain-text description of the result

Example response

{
  "payload": {
    "invoiceId": "123e4567-e89b-12d3-a456-426614174000",
    "customerId": "123e4567-e89b-12d3-a456-426614174000",
    "manufacturerId": "123e4567-e89b-12d3-a456-426614174000",
    "memo": "This is a memo"
  }
}