POST v1/CustomerNotes
Request Information
URI Parameters
None.
Body Parameters
Common.Dto.Post.CustomerNote| Name | Description | Type | Additional information |
|---|---|---|---|
| customerId | integer |
None. |
|
| note | string |
Required String length: inclusive between 0 and 2000 |
|
| editable | boolean |
None. |
|
| sourceApplication | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"customerId": 1,
"note": "sample string 2",
"editable": true,
"sourceApplication": "sample string 3"
}
Response Information
Resource Description
Common.Dto.Get.CustomerNoteSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| userWhoCreatedNote | string |
None. |
|
| note | string |
None. |
|
| sourceApplication | string |
None. |
|
| createdTimestamp | date |
None. |
|
| modifiedTimestamp | date |
None. |
|
| editable | boolean |
None. |
|
| customerId | integer |
None. |
|
| id | integer |
None. |
|
| uri | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"userWhoCreatedNote": "sample string 1",
"note": "sample string 2",
"sourceApplication": "sample string 3",
"createdTimestamp": "2025-11-03T19:44:37.1046358+00:00",
"modifiedTimestamp": "2025-11-03T19:44:37.1046358+00:00",
"editable": true,
"customerId": 7,
"id": 8,
"uri": "sample string 9"
}