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": "036a56e1-7583-4dd9-a5d4-9932bd602daa",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "b319a37e-f531-4e51-898b-ab8543763bb2",
"CreateDate": "2025-12-26T06:47:38.4475758-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-26T06:47:38.4475758-08: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": "b50ea224-76e6-45c7-aa74-be40136c8a1d",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "c84eed7e-31c4-4e0f-beeb-de8fddd46a34",
"CreateDate": "2025-12-26T06:47:38.4475758-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-26T06:47:38.4475758-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}