PUT api/v1/NeedNotes
Updates a specific Need Note.
Request Information
URI Parameters
None.
Body Parameters
NeedNoteUpdateModel| Name | Description | Type | Additional information |
|---|---|---|---|
| NeedNoteId | globally unique identifier |
Required |
|
| NeedId | globally unique identifier |
Required |
|
| AssigmenntId | globally unique identifier |
None. |
|
| Note | string |
String length: inclusive between 0 and 1000 |
|
| ActionId | integer |
None. |
|
| DepartmentShiftId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"NeedNoteId": "2e8b4e87-1ce2-4665-baed-12aecb237021",
"NeedId": "0a35fbd6-466c-4ed6-ba25-b37e495167d4",
"AssigmenntId": "31931033-ab10-48dc-9c25-012aa8f137c0",
"Note": "sample string 3",
"ActionId": 1,
"DepartmentShiftId": 1
}
Response Information
Resource Description
ApiResponseModelOfNeedNoteModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | ApiResponseDataModelOfNeedNoteModel |
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": "da36c7d5-a1a6-4939-8229-cee3496bb199",
"NeedID": "ab7d5d3e-f96c-4f59-b86b-97a8cad30261",
"AssignmentID": "b468d349-6171-4a3b-b7a2-636a913c709b",
"CreateDate": "2026-03-10T21:07:28.1072359-05: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"
]
}