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": "44b98ada-3d0f-41b4-9b77-19278a0a8a61",
"NeedId": "527d2f8a-3aca-4af2-9cd8-60ceb4871f7e",
"AssigmenntId": "547aeca4-d420-40ef-8a4a-766d7d754e3f",
"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": "283a54f8-c237-40c9-be46-bf27adb4d452",
"NeedID": "25495373-d4db-4f8c-864a-7946147fbb67",
"AssignmentID": "572dcfb0-f086-4f7e-903e-c30cd10ba075",
"CreateDate": "2026-01-03T23:10:29.9450871-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"
]
}