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": "ca953aca-cea9-4256-a43d-999dcef86d17",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "7d997c4d-e411-42a8-8dc2-ffa60913d541",
"CreateDate": "2025-12-13T01:08:39.6848389-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-13T01:08:39.6848389-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": "55c43308-25fb-4f74-964e-6c1f3ee71c6a",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "d73ca3c2-778d-4ac0-ade6-14679077f1ec",
"CreateDate": "2025-12-13T01:08:39.6848389-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-13T01:08:39.6848389-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}