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": "ffa797ba-eb52-416f-ac65-395c193ae7e5",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "c6c555b6-5b50-44c6-b6cd-40cebd2a0178",
"CreateDate": "2026-03-30T16:46:55.0818907-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-03-30T16:46:55.0818907-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": "237de8f1-e241-43f2-89a0-d10236964aaf",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "bab6ce95-17cc-4e26-8361-518b30fabdc5",
"CreateDate": "2026-03-30T16:46:55.0818907-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-03-30T16:46:55.0818907-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}