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": "4795fef4-c4ab-4c03-8704-b48efc2b2044",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "c9df7e25-05f4-4ad8-9db5-4ee970802db9",
"CreateDate": "2026-03-09T08:49:08.9729036-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-03-09T08:49:08.9729036-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": "b5406d02-1e73-40dd-a252-37cb7a75e9fd",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "1f4991cb-fc35-400f-ac3c-a57cc4edb7e5",
"CreateDate": "2026-03-09T08:49:08.9729036-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-03-09T08:49:08.9729036-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}