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": "4cbeb6c3-1f19-4e69-8e5b-cf1fae405b4a",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "bd245d14-31b6-4270-aab3-fe8050582f65",
"CreateDate": "2026-02-15T08:56:55.5819589-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-02-15T08:56:55.5819589-08: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": "b9fe6d9d-210b-4359-ace5-f3fbf4d582e3",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "131166ac-990d-446d-8e15-bddf4a2ed050",
"CreateDate": "2026-02-15T08:56:55.5819589-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-02-15T08:56:55.5819589-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}