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": "0aa9e8d2-a10a-4721-9ec9-3b3ab6fef3ad",
"NeedId": "523cfba2-86a3-40c3-8b86-8c25fe9b3923",
"AssigmenntId": "1b789773-184b-403c-96a0-d1a5112c96bc",
"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": "3f7f2e3a-70fd-4a5c-9b02-572043034965",
"NeedID": "4cb47581-351e-44cf-a373-217917ad2889",
"AssignmentID": "9f5da6e6-c0cd-44a7-ab51-f4ed754b2d0c",
"CreateDate": "2026-01-04T00:10:13.0713196-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"
]
}