POST NoteCategories
Creates a new note category.
Request Information
URI Parameters
None.
Body Parameters
The note category to create. NoteCategoryId should not be filled in.
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": "cfc3c6d7-e9fd-4018-8fd5-8182f914dd0d",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "79be75ca-1ee2-4158-8e5a-9a8e95a68a61",
"CreateDate": "2025-11-14T22:56:36.5350186-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-14T22:56:36.5350186-08:00",
"LastModifiedUser": "sample string 5"
}
Response Information
Resource Description
On success, the created 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": "6156e4c9-d9df-48aa-b198-4ad2ff75709a",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "965aa12d-eab1-4eac-a8d6-46858aa5f068",
"CreateDate": "2025-11-14T22:56:36.5350186-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-14T22:56:36.5350186-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}