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": "44f6c69a-fdeb-4aac-80d0-44b1843e54d9",
"NeedId": "ce48df0f-2891-40c1-8623-b284719c4f2a",
"AssigmenntId": "b4dcc6a8-a0ec-4826-8717-63ef53f9df18",
"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": "c2080a25-16db-478e-8b4a-51f4a0b9a083",
"NeedID": "5c516ec9-5af0-44b9-b2e1-feb17f2b533b",
"AssignmentID": "bb11c5a0-8f44-4537-be64-658a3099bf6a",
"CreateDate": "2026-01-02T13:26:27.9849371-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"
]
}