Invoice Notes
Update invoice note
Update an existing invoice note
put/invoice-notes/{id}
Path parameters
idinteger required
Invoice note ID
Request body
Example request
{
"name": "Updated Note",
"description": "Updated note description."
}Response
Successful operation
Example response
{
"message": "Invoice note has been updated.",
"invoice_note": {
"id": 5,
"name": "Note 1",
"description": "Thank you"
}
}