GET api/v1/NeedNotes/FindByAssignmentAsync/{assignId}
Returns a list of Need Notes associated with an Assignment. This is an asynchronous service.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| assignId |
Assignment Id of the assignment. Use GET api/v1/assignment to retrieve a list of assignments |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
ApiResponseModelOfListOfNeedNoteModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | ApiResponseDataModelOfListOfNeedNoteModel |
None. |
|
| Errors | Collection of string |
None. |
|
| Warnings | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"PageSize": 1,
"Page": 2,
"TotalPages": 3,
"TotalResults": 4,
"Results": [
{
"NeedNoteID": "d69f5cf9-54d4-4e65-8b19-97200ef6ee2a",
"NeedID": "c9d663e9-1897-40af-8b62-5a4aa235dcf9",
"AssignmentID": "22d5a575-9130-4669-a0e0-9656adca1a21",
"CreateDate": "2026-01-02T08:40:32.6570654-06:00",
"CreateUser": "sample string 4",
"CreateApp": "sample string 5",
"Note": "sample string 6",
"Version": "QEA=",
"ActionID": 1,
"Action": "sample string 7",
"DepartmentShiftID": 1,
"ShiftCode": "sample string 8"
},
{
"NeedNoteID": "d69f5cf9-54d4-4e65-8b19-97200ef6ee2a",
"NeedID": "c9d663e9-1897-40af-8b62-5a4aa235dcf9",
"AssignmentID": "22d5a575-9130-4669-a0e0-9656adca1a21",
"CreateDate": "2026-01-02T08:40:32.6570654-06:00",
"CreateUser": "sample string 4",
"CreateApp": "sample string 5",
"Note": "sample string 6",
"Version": "QEA=",
"ActionID": 1,
"Action": "sample string 7",
"DepartmentShiftID": 1,
"ShiftCode": "sample string 8"
}
]
},
"Errors": [
"sample string 1",
"sample string 2"
],
"Warnings": [
"sample string 1",
"sample string 2"
]
}