GET api/notes/clients?CustomerID={CustomerID}&ClientID={ClientID}&EmployeeID={EmployeeID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerID | decimal number |
None. |
|
| ClientID | decimal number |
None. |
|
| EmployeeID | decimal number |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of Note| Name | Description | Type | Additional information |
|---|---|---|---|
| MessageID | decimal number |
None. |
|
| FromUser | string |
None. |
|
| Text | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"MessageID": 1.0,
"FromUser": "sample string 2",
"Text": "sample string 3"
},
{
"MessageID": 1.0,
"FromUser": "sample string 2",
"Text": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
<Note>
<FromUser>sample string 2</FromUser>
<MessageID>1</MessageID>
<Text>sample string 3</Text>
</Note>
<Note>
<FromUser>sample string 2</FromUser>
<MessageID>1</MessageID>
<Text>sample string 3</Text>
</Note>
</ArrayOfNote>