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": "c182ef14-bf8b-4256-8f76-143f3729607e",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "d45cf0cf-579c-4aeb-abc2-c0958d237ee7",
"CreateDate": "2025-12-26T18:57:06.110929-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-26T18:57:06.110929-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": "f6a02578-c0c2-4c84-81df-b017ec4a2cb0",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "19676775-ccf3-42b7-ab33-53ff9d8908d3",
"CreateDate": "2025-12-26T18:57:06.110929-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-26T18:57:06.110929-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}