get https://hover.to/api/v2/notes.json
Overview
This endpoint returns all notes associated with the (required) job_id parameter. The notes section of a job is typically used to store additional information that isn't saved elsewhere on the job object.
Sample Response Body
{
"results": [
{
"id": 12,
"job_id": 6,
"org_id": 17,
"user_id": 26,
"body": "The roof has a hole in it!",
"created_at": "2018-03-15T07:18:07.440Z",
"updated_at": "2018-03-15T07:18:07.440Z",
"user": {
"email": "[email protected]",
"first_name": "First",
"last_name": "Last"
}
}
]
}