v1

latestOpenAPI 3.0.02026-08-068926279.2 KB
Notes

Create a note

Creates a new note attached to a resource (client, project, invoice, etc.)

post/notes

Request body

bodystring required
notable_typestring required

Type of resource (Client, Project, Invoice)

notable_idinteger required

ID of the resource

Example request

{
  "body": "Client requested changes to the design",
  "notable_type": "Client",
  "notable_id": 1
}

Response

Successful response

idinteger
bodystring
editedboolean
created_atstring date-time

Example response

{
  "id": 1,
  "body": "Client requested changes to the design"
}