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": "c59c9740-4935-4c0a-bf75-ae02ba8c4762",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "974fde3a-4505-492b-997f-20b9526b8d41",
"CreateDate": "2026-02-23T10:23:26.6104197-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-02-23T10:23:26.6104197-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": "a7a510a2-1a01-4ef1-8bf8-7445c85995ea",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "17084407-fda2-4111-80fa-1cd04bd7b90d",
"CreateDate": "2026-02-23T10:23:26.6104197-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-02-23T10:23:26.6104197-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}