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": "38fc01a4-fd05-4b76-b7f5-0ea1cfad8965",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "0651a387-d919-4393-bbd7-7fa8343a6d40",
"CreateDate": "2026-04-22T07:23:45.9186914-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-04-22T07:23:45.9186914-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": "224311c3-2042-46fe-8a65-5beccda0e9d6",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "fb1c9e40-e318-4df0-8b5f-bcb7882aa42e",
"CreateDate": "2026-04-22T07:23:45.9186914-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-04-22T07:23:45.9186914-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}