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": "a09f7460-ba14-4b3d-98ee-555b6c6a46d3",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "6fc5444c-b8cc-4f4b-bffc-2f6847e4a151",
"CreateDate": "2025-12-07T23:57:10.7868647-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-07T23:57:10.7868647-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": "579a2111-9c06-4485-b8c3-ea8ef1b153e4",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "f7d112f3-e492-4a88-92aa-624afb5f69a1",
"CreateDate": "2025-12-07T23:57:10.7868647-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-07T23:57:10.7868647-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}