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": "bebd73f3-6b2a-4bdd-aba2-d626903aecd4",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "e4cf0d1b-b75a-4bfe-8927-d1c1f0f36d5d",
"CreateDate": "2026-07-15T13:20:26.946179-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-07-15T13:20:26.946179-07: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": "2fa321ee-4a93-477a-bdd0-60531a7b5696",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "1953f36b-90a4-4151-bae9-551fa13eb2c9",
"CreateDate": "2026-07-15T13:20:26.946179-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-07-15T13:20:26.946179-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}