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": "15cf94d0-b812-43fd-bd09-d2b388526ec3",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "02469b71-a170-4e88-8f65-7a899aaf50f8",
"CreateDate": "2026-06-10T08:25:48.4143489-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-10T08:25:48.4143489-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": "bbabb9f8-5862-44ab-b294-aa2a42be4473",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "c0833fb9-f257-4019-b52b-a1c1689ff2cc",
"CreateDate": "2026-06-10T08:25:48.4143489-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-10T08:25:48.4143489-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}