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": "27a6c31d-ffdf-4219-a057-9beb9bf1f695",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "964b2e30-0db2-4a59-9d88-8c3e6710ff41",
"CreateDate": "2026-01-25T22:53:49.0745035-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-01-25T22:53:49.0745035-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": "52ae2977-948c-4c31-8df4-446aef8e51fb",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "ae6404d3-3b39-4fcc-8d16-9a44a32bfa10",
"CreateDate": "2026-01-25T22:53:49.0745035-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-01-25T22:53:49.0745035-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}