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": "2c2fc11a-9081-46ae-a6a8-4977c148e480",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "fc1e02f1-e1b0-4a89-9046-2d6862b42dad",
"CreateDate": "2026-06-25T14:25:50.3672449-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-25T14:25:50.3672449-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": "404e2533-b0a6-4537-9b16-54f88af97800",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "62a2f389-2b40-4d9f-8190-af6c5882f9a4",
"CreateDate": "2026-06-25T14:25:50.3672449-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-06-25T14:25:50.3672449-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}