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": "4a1f6fbc-d13b-4305-ba16-d3a16a412527",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "0839b2dc-c350-4f52-9a4c-ab52e6acc7c9",
"CreateDate": "2026-08-11T22:23:45.3108667-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-11T22:23:45.3108667-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": "b8c7242b-1096-485c-b5f9-2a2a3a74d19d",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "a2e24191-ac71-4391-b29a-53b2f27790be",
"CreateDate": "2026-08-11T22:23:45.3108667-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-11T22:23:45.3108667-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}