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": "ffa23f88-fb21-4886-99e7-5e2af7ba5a48",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "50c59863-2fd7-4f4a-adab-b0e9ca2a4173",
"CreateDate": "2026-02-02T21:56:00.466778-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-02-02T21:56:00.466778-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": "b3c7efb4-c274-442e-920b-0825eb931dbe",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "406a4b89-fd93-48fa-a8e2-3f9e3e7110dc",
"CreateDate": "2026-02-02T21:56:00.466778-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-02-02T21:56:00.466778-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}