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": "d7806e62-eb41-46f1-9532-2d1f32b6cefc",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "9f820882-0221-4e0a-bc5a-3d662065eab3",
"CreateDate": "2026-03-24T04:50:14.4191732-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-03-24T04:50:14.4191732-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": "68463903-fcb7-4bd9-a159-ccfd85727c74",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "145abd4c-1063-4ef3-ad79-ecb2e58b036f",
"CreateDate": "2026-03-24T04:50:14.4191732-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-03-24T04:50:14.4191732-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}