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": "3635c59b-8474-4793-ad35-4c4702011ac7",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "aab3ac6d-604e-46e2-9bd8-048f9e7b1a5b",
"CreateDate": "2025-11-23T23:12:58.5621932-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-23T23:12:58.5621932-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": "ad502939-4e27-4097-9c04-05ab9e071e1c",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "46bdc836-96ac-4b19-b455-ebf9e80991cb",
"CreateDate": "2025-11-23T23:12:58.5621932-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-23T23:12:58.5621932-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}