Skip to content

getNotes

Deprecated

This endpoint will stop working on 1 August 2027. Migrate to GET /v1/jobs/job-events in the new API; the migration guide has the recommended order of work and the important model differences.

GET /v1/jobs/job-events returns the catalogue of job event types usable with POST /v1/jobs/{id}/events. Schema differs: legacy returned {id, note} filtered by a noteTypeId path param; the new endpoint returns {id, code, description} (where description ≈ legacy note) with no type filter, so clients filter client-side via the code field. To create a note on a job use POST /v1/jobs/{id}/notes.

Open GET /v1/jobs/job-events in the new API →

View legacy reference
/rest/workflow/job/getNotes/{noteTypeId}

GET

Gets Notes for a specified NoteType.

available response representations:
  • 200 - JSON
{
  "notes":[
    {
      "id":"43",
      "note":"Recall" 
    },
    {
      "id":"332",
      "note":"Accept" 
    } 
  ]
}



See the Workflow API matrix for the full list of endpoints in this category.