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": "1798c05a-6f3f-4173-a794-31aa4cdd0918",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "f2389d74-36ea-4c43-b312-4050e5f00f97",
"CreateDate": "2026-03-24T06:40:57.7305645-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-03-24T06:40:57.7305645-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": "bc25a0c6-fe38-4a66-b4b1-176bcf7e4d06",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "5c14bc79-b4ef-4ff8-962d-b5bd8e43f09c",
"CreateDate": "2026-03-24T06:40:57.7305645-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-03-24T06:40:57.7305645-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}