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": "9ec61083-66bc-442e-b63f-038432f592de",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "e4f2a702-ca40-409b-b154-c1433397cf32",
"CreateDate": "2025-12-30T08:49:50.4973144-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-30T08:49:50.4973144-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": "6a2f0820-96a2-40f5-81a4-74959d64965e",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "8fae39f4-0f3d-4c59-a713-9eefa8192f0c",
"CreateDate": "2025-12-30T08:49:50.4973144-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-30T08:49:50.4973144-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}