PUT NoteCategories
Updates the given note category.
Request Information
URI Parameters
None.
Body Parameters
Note category to update
NoteCategory| Name | Description | Type | Additional information |
|---|---|---|---|
| NoteCategoryId | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| SourceSystemId | string |
None. |
|
| CompanyId | globally unique identifier |
None. |
|
| CreateDate | date |
None. |
|
| CreateUser | string |
None. |
|
| LastModifiedDate | date |
None. |
|
| LastModifiedUser | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"NoteCategoryId": "6f15862a-2583-4990-a0b0-95b681c4dc8d",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "abc3deed-c920-46bf-8aa5-e4e828421d75",
"CreateDate": "2026-09-10T12:05:28.0050035-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-09-10T12:05:28.0050035-07:00",
"LastModifiedUser": "sample string 5"
}
Response Information
Resource Description
On success, the updated note category.
| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | NoteCategory |
None. |
|
| Total | integer |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"NoteCategoryId": "f32c1666-cae1-4ed9-9293-46a1cfc5e2de",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "ab01b5db-c8c8-4124-adc0-b3019395b34e",
"CreateDate": "2026-09-10T12:05:28.0050035-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-09-10T12:05:28.0050035-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}