post https://hover.to/api/v2/notes.json
Why would I use this?
If your team leverages notes, this endpoint will allow you to create a note on a particular job via the API. This endpoint could be useful if you would like to write notes on a Hover job from a lead form, for example.
Response Code Snippet
See an example 201 response here, a JSON blob with the details of the create job notes, then follow below to learn more about the request, and what makes up the responses.
{
"id": 12,
"job_id": 6,
"org_id": 17,
"user_id": 26,
"body": "This is the content of the note.",
"created_at": "2023-03-15T07:18:07.440Z",
"updated_at": "2023-03-15T07:18:07.440Z",
"user": {
"email": "[email protected]",
"first_name": "Michael",
"last_name": "Bluth"
}
}