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": "7007b391-6e4e-4647-a5b0-b8c3f33c2df8",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "6f0c037c-8175-477b-b6a9-7d0bedfbfa0f",
"CreateDate": "2026-08-23T08:28:26.3263168-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-23T08:28:26.3263168-07: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": "ed331ef1-7313-45c0-978d-2633c97439c4",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "0cad06e5-b992-4a61-81c2-3917b6b4da2a",
"CreateDate": "2026-08-23T08:28:26.3263168-07:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-08-23T08:28:26.3263168-07:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}