Skip to main content

Get Note

Get Note
GET

Retrieve a note by id.

Request

GET /v1/note/{id}?entity_name=candidate

Path Parameters

ParameterTypeRequiredDescription
idintegerYesNote id.

Query Parameters

ParameterTypeRequiredDescription
entity_namestringYesEntity type. Allowed values: candidate, contact, organization, job, deal.

Response

200
{
"id": 84,
"note_type": {
"id": 2,
"label": "General"
},
"note": "Candidate is available for an interview next week.",
"related_to": "candidate_0d25558c1a77fc2d7d98",
"related_record": {
"slug": "candidate_0d25558c1a77fc2d7d98"
},
"related_to_type": 1,
"created_by": {
"id": 1
},
"updated_by": {
"id": 1
},
"created_at": "2026-07-24T10:15:00.000Z",
"updated_at": "2026-07-24T10:15:00.000Z"
}
404
{
"message": "Note not found"
}