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": "c03d391d-d99a-4625-93e6-bf4801e9a524",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "a111bd15-102d-40db-be76-37150985c31d",
"CreateDate": "2026-04-27T20:34:02.6956523-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-04-27T20:34:02.6956523-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": "740acae6-2072-4a61-a26c-c391f6c145e2",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "a76513df-ef61-4d25-b424-f293c81e520d",
"CreateDate": "2026-04-27T20:34:02.6956523-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-04-27T20:34:02.6956523-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}