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": "7f1d6c69-db88-4569-87df-e4b1621481f0",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "bbef3c7f-8b9c-444a-99e9-31fcaa5351a5",
"CreateDate": "2025-12-21T04:49:11.2677712-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-21T04:49:11.2677712-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": "3f5a60e3-d827-4f7f-a2b4-9118a8cd6a71",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "890cb305-f3b4-4b2e-a3fb-2be0b773d482",
"CreateDate": "2025-12-21T04:49:11.2677712-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2025-12-21T04:49:11.2677712-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}