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": "366bff5b-3d68-441f-bf47-1f268cf193a6",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "8fd0ffa2-ceb1-41cd-b8d6-efdec418dfd8",
"CreateDate": "2026-06-01T20:27:42.0423429-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-01T20:27:42.0423429-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": "8e48cb44-bb0f-4079-9169-ea8c8871ca5d",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "83b58164-9b7a-4d8c-90bf-712008d54161",
"CreateDate": "2026-06-01T20:27:42.0423429-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-01T20:27:42.0423429-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}