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": "4dc9467a-e512-44c4-88e3-a8fb87f3aa14",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "fc100475-9074-4ec7-80db-f6f6124b9ecf",
"CreateDate": "2025-11-05T04:06:49.4158216-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-05T04:06:49.4158216-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": "f109ca3e-8762-46c1-bb30-9c1608426dbd",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "a7e13ae0-bf30-4df2-b7cd-2df1ea801e47",
"CreateDate": "2025-11-05T04:06:49.4158216-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-11-05T04:06:49.4158216-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}