GET api/account/customer/note
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CustomerNote| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| CustomerID | integer |
None. |
|
| CreatedDate | date |
None. |
|
| Notes | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"CustomerID": 2,
"CreatedDate": "2025-11-06T18:10:21.8866577+00:00",
"Notes": "sample string 4"
},
{
"ID": 1,
"CustomerID": 2,
"CreatedDate": "2025-11-06T18:10:21.8866577+00:00",
"Notes": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfCustomerNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/cag.Data.Customers">
<CustomerNote>
<CreatedDate>2025-11-06T18:10:21.8866577+00:00</CreatedDate>
<CustomerID>2</CustomerID>
<ID>1</ID>
<Notes>sample string 4</Notes>
</CustomerNote>
<CustomerNote>
<CreatedDate>2025-11-06T18:10:21.8866577+00:00</CreatedDate>
<CustomerID>2</CustomerID>
<ID>1</ID>
<Notes>sample string 4</Notes>
</CustomerNote>
</ArrayOfCustomerNote>