coach_notes.list_for_application
Read the coach notes left on one application
- Request
- GET
/api/v1/applications/{applicationId}/coach-notes - Scope required
coach_notes:read- Effect
- Reads only. Safe to retry and safe for an agent to call unprompted.
- Acts on
- Serves an account’s own data and, where shared, an organization’s.
- MCP tool
coach_notes_list_for_application- Environment
- Live and sandbox alike.
- Request body
- JSON.
What it does
Returns the feedback organization staff have left on an application, oldest first so it reads as a conversation. Every note is written to be read by the applicant — there is no private staff channel here. An applicant sees every organization's notes on their own application; staff see only their own organization's, because one coach's notes are not another's business. An application this credential cannot read answers 404. The whole conversation comes back at once rather than in pages, because a note thread is short by nature — `hasMore` is always false and `nextCursor` always null. Add to the conversation with `coach_notes.create`.
Parameters
| Name | Sent in | Requirement | Accepts |
|---|---|---|---|
| applicationId | path | Required | string |
Response
- data
- array of object, required
- applicationId
- string, required
- authorDisplayName
- string or null, required
- body
- string, required
- createdAt
- string, required
- id
- string, required
- organization
- object, required
- name
- string, required
- slug
- string, required
- updatedAt
- string, required
- hasMore
- boolean, required
- nextCursor
- string or null, required
Examples
One note from a career centre
curl -s https://www.jobapplicationtracking.com/api/v1/applications/app_123/coach-notes \
-H "Authorization: Bearer $JAT_KEY"{
"data": [
{
"id": "note_9",
"applicationId": "app_123",
"body": "Lead with the migration project in the screen.",
"authorDisplayName": "Jordan Reyes",
"organization": {
"slug": "northwind-careers",
"name": "Northwind Careers"
},
"createdAt": "2026-02-11T17:05:00.000Z",
"updatedAt": "2026-02-11T17:05:00.000Z"
}
],
"hasMore": false,
"nextCursor": null
}