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": "37e59f01-5ff3-4fec-bd28-b5bfb0f7f137",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "539a56c0-1880-486d-8e42-3ed6ec1a3eb9",
"CreateDate": "2026-02-05T17:03:45.8187757-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-02-05T17:03:45.8187757-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": "ff66d713-ae64-4183-96e7-02fecdbb1c8c",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "4faa7133-51ce-4356-b8eb-79c406b3c97c",
"CreateDate": "2026-02-05T17:03:45.8187757-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-02-05T17:03:45.8187757-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}