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": "f0ebd86e-d363-460e-8d8d-c9902540552e",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "f2123738-8ea7-4b93-9590-66905103a683",
"CreateDate": "2026-01-19T09:49:15.2760607-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-01-19T09:49:15.2760607-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": "8e709790-1a48-4081-a21a-fb50370e8516",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "ce1b1f3e-0868-4d85-b315-ecfb52f4cac1",
"CreateDate": "2026-01-19T09:49:15.2760607-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-01-19T09:49:15.2760607-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}