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": "2e5beaa3-6faa-48cc-9d48-d55146f5ab00",
"NeedID": "8b7b1ccc-1c37-4e4b-a223-1fe4d5386cb0",
"AssignmentID": "bf3619ef-6c02-471b-b994-f6fd885df29f",
"CreateDate": "2026-01-03T23:10:25.0160551-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": "2e5beaa3-6faa-48cc-9d48-d55146f5ab00",
"NeedID": "8b7b1ccc-1c37-4e4b-a223-1fe4d5386cb0",
"AssignmentID": "bf3619ef-6c02-471b-b994-f6fd885df29f",
"CreateDate": "2026-01-03T23:10:25.0160551-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"
]
}