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": "89970689-1606-46fd-b49f-c4c9de8c447a",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "a04d6dd1-072b-40b6-8099-a7b94f055df2",
"CreateDate": "2026-01-16T16:19:18.8900578-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-01-16T16:19:18.8900578-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": "ff44d12b-48e1-42f0-8fb1-fbdd1027c8cd",
"Name": "sample string 1",
"SourceSystemId": "sample string 2",
"CompanyId": "d9b6469a-442f-4060-97ad-88c7ede01f41",
"CreateDate": "2026-01-16T16:19:18.8900578-08:00",
"CreateUser": "sample string 4",
"LastModifiedDate": "2026-01-16T16:19:18.8900578-08:00",
"LastModifiedUser": "sample string 5"
},
"Total": 1,
"Message": "sample string 1"
}