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": "19d5027b-b130-47f8-beb6-cf296c3d17f2",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "953312da-5797-41c6-8be5-dd2b29763941",
"CreateDate": "2026-01-07T23:22:23.595299-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-01-07T23:22:23.595299-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": "fe4e15c1-88d8-4686-8451-9fd4496f5795",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "586b09c3-86a4-4e04-98a3-4f29c2cd4ead",
"CreateDate": "2026-01-07T23:22:23.595299-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-01-07T23:22:23.595299-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}