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": "34e7aafc-f0e4-4e07-8159-67f9bd9e6476",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "85dea1e1-c5c8-43d1-8fe1-dd0c03d68bab",
"CreateDate": "2025-11-17T18:51:13.131626-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-17T18:51:13.131626-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": "6ada2a3d-6b60-4844-8a93-4ceba703f27e",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "85b49d98-897e-4391-be24-81262ef8f53b",
"CreateDate": "2025-11-17T18:51:13.131626-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-17T18:51:13.131626-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}