Notes.GetAll by Stop

Returns notes for a single photocopy stop. Hidden notes are excluded. Newest notes are first.

Try it in Swagger

Endpoint

Request Schema

Headers

Header Required Notes
X-Api-Key Required when tenant is not resolved by subdomain Resolves the tenant/customer database.
Authorization: Bearer {token} Required for authorized endpoints Get a token from Auth/Token or Session/Create.

Path Parameters

Field Type Required Notes
workOrder string Yes Route segment.
facilityLineItem int Yes Stop / facility line item.

Query Parameters

Field Type Required Notes
pageOffset int No Number of notes to skip. Defaults to 0.
pageSize int No Page size. Defaults to 50. Must be between 1 and 200.

This endpoint does not accept a JSON request body.

Expected Response Schema

Status Codes

Status Notes
200 OK Returned by the controller for this operation.
400 Bad Request Invalid paging. Returns a ProblemDetails with errorCode ValidationError.
404 Not Found The work order or stop does not exist. Returns a ProblemDetails with errorCode NotFound.

Success Body

Response type: NoteListDto

Same note shape as GetAll.

Response Sample

{
  "total": 1,
  "notes": [
    {
      "lineItem": 8823451,
      "workOrder": "646982",
      "facilityLineItem": 2646058,
      "date": "2026-07-24T00:00:00",
      "time": "14:32",
      "report": "Spoke with records clerk, ready for pickup.",
      "comment": false,
      "contactName": "GINA",
      "enteredBy": "NCUR",
      "nextAction": 10,
      "nextActionTitle": "Production Department",
      "assignedTo": "NCUR",
      "assignedToName": "NATHAN CURTIS",
      "actionDate": "2026-07-28T00:00:00"
    }
  ]
}