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": "ac6e999a-5c14-473c-afad-a2fa3d962630",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "34cd7707-0554-4268-9b5a-c7110b73d126",
"CreateDate": "2026-07-13T23:55:02.1876228-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-07-13T23:55:02.1876228-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": "f9672a45-36b3-44ca-a6b7-8ba3afc28ffb",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "3311e43b-22f3-4bac-b580-82d64ba4cde4",
"CreateDate": "2026-07-13T23:55:02.1876228-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-07-13T23:55:02.1876228-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}