GET api/CustomerUserLink/FilterByCustomer?customerID={customerID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CustomerUserLinkFriendlyDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| SystemUserFullName | string |
None. |
|
| CustomerName | string |
None. |
|
| CanNotify | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"SystemUserFullName": "sample string 2",
"CustomerName": "sample string 3",
"CanNotify": true
},
{
"ID": 1,
"SystemUserFullName": "sample string 2",
"CustomerName": "sample string 3",
"CanNotify": true
}
]
application/xml, text/xml
Sample:
<ArrayOfCustomerUserLinkFriendlyDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO">
<CustomerUserLinkFriendlyDTO>
<CanNotify>true</CanNotify>
<CustomerName>sample string 3</CustomerName>
<ID>1</ID>
<SystemUserFullName>sample string 2</SystemUserFullName>
</CustomerUserLinkFriendlyDTO>
<CustomerUserLinkFriendlyDTO>
<CanNotify>true</CanNotify>
<CustomerName>sample string 3</CustomerName>
<ID>1</ID>
<SystemUserFullName>sample string 2</SystemUserFullName>
</CustomerUserLinkFriendlyDTO>
</ArrayOfCustomerUserLinkFriendlyDTO>