v1
latestOpenAPI 3.0.12026-07-268028223.9 KBNotes
Create a note
Create a new note for a household. Notes use a wrapped body; the required field is note.content: { "note": { "content": "..." } }.
post/v1/households/{household_id}/notes
Headers
Idempotency-Keystring
Unique key to ensure idempotent request handling. If a request with the same key was already processed, the original response will be returned.
Request body
Example request
{
"note": {
"content": "Important meeting notes from client discussion"
}
}Response
note created
Example response
{
"id": "abc123xyz",
"content": "Meeting notes from client discussion",
"book_id": "book123xyz",
"household_id": "household123xyz",
"created_by_id": "user123xyz"
}