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": "c0fae7ef-9341-41c3-8eb6-ad8197291974",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "a0c0c01e-8a03-493b-ac38-54d058773777",
"CreateDate": "2026-04-18T04:55:54.0432883-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-04-18T04:55:54.0432883-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": "b93291c6-3163-459c-8edc-839faac2cd5d",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "301361b0-1966-49cf-954d-b8599ad07a09",
"CreateDate": "2026-04-18T04:55:54.0432883-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-04-18T04:55:54.0432883-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}