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": "ebe49895-ad46-4914-bdea-34d382e753a7",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "175b2de2-a5c5-44a4-bb6d-cf04d7539f30",
"CreateDate": "2026-03-07T11:39:03.3656165-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-03-07T11:39:03.3656165-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": "8ce92bd6-7338-46dc-a2ce-e5e2ed5a806e",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "62e0c6b7-bc21-40b2-a743-5103d78afcb1",
"CreateDate": "2026-03-07T11:39:03.3656165-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-03-07T11:39:03.3656165-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}