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": "e84846a3-8bb6-4f51-a77b-6c3221ebf06e",
"NeedId": "fddbe3f9-43e2-4625-a9fc-f5b2e606b1ee",
"AssigmenntId": "af88005a-7a66-4293-a41f-8705967de6da",
"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": "e288b24c-7941-4ca0-aeca-7ac0814dcee8",
"NeedID": "bdcd1ea6-276f-480d-95f5-e607ec6f366b",
"AssignmentID": "93b42926-4310-4784-9851-40d2bfd96815",
"CreateDate": "2026-01-03T23:29:39.4481106-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"
]
}