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": "0a5352e2-e875-40d6-9997-2a35bf500430",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "703a483a-1571-46f3-92ba-13ac9b1cc46f",
"CreateDate": "2026-08-09T23:41:33.9029356-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-09T23:41:33.9029356-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": "dbc1d6dd-ee81-425d-89ae-37e97edaa933",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "2546d56e-b6ee-493f-8acf-0e6c3279d517",
"CreateDate": "2026-08-09T23:41:33.9029356-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-09T23:41:33.9029356-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}