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": "0a0bc44d-bcd2-43b8-8a1a-047afa670722",
"NeedID": "49b67521-ed50-471b-b9bd-57ad49d02353",
"AssignmentID": "93422264-987f-4aeb-b30f-7d1a8c2499ce",
"CreateDate": "2026-01-04T00:10:13.430692-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": "0a0bc44d-bcd2-43b8-8a1a-047afa670722",
"NeedID": "49b67521-ed50-471b-b9bd-57ad49d02353",
"AssignmentID": "93422264-987f-4aeb-b30f-7d1a8c2499ce",
"CreateDate": "2026-01-04T00:10:13.430692-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"
]
}