GET api/CustomerUserLink/GetIntData?systemUserID={systemUserID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| systemUserID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CustomerUserLinkDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| SystemUserID | integer |
None. |
|
| CustomerID | integer |
None. |
|
| CanNotify | boolean |
None. |
|
| Title | string |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| CustomerName | string |
None. |
|
| SystemUserFullName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"SystemUserID": 2,
"CustomerID": 3,
"CanNotify": true,
"Title": "sample string 5",
"FirstName": "sample string 6",
"LastName": "sample string 7",
"CustomerName": "sample string 8",
"SystemUserFullName": "sample string 9"
},
{
"ID": 1,
"SystemUserID": 2,
"CustomerID": 3,
"CanNotify": true,
"Title": "sample string 5",
"FirstName": "sample string 6",
"LastName": "sample string 7",
"CustomerName": "sample string 8",
"SystemUserFullName": "sample string 9"
}
]
application/xml, text/xml
Sample:
<ArrayOfCustomerUserLinkDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO">
<CustomerUserLinkDTO>
<CanNotify>true</CanNotify>
<CustomerID>3</CustomerID>
<CustomerName>sample string 8</CustomerName>
<FirstName>sample string 6</FirstName>
<ID>1</ID>
<LastName>sample string 7</LastName>
<SystemUserFullName>sample string 9</SystemUserFullName>
<SystemUserID>2</SystemUserID>
<Title>sample string 5</Title>
</CustomerUserLinkDTO>
<CustomerUserLinkDTO>
<CanNotify>true</CanNotify>
<CustomerID>3</CustomerID>
<CustomerName>sample string 8</CustomerName>
<FirstName>sample string 6</FirstName>
<ID>1</ID>
<LastName>sample string 7</LastName>
<SystemUserFullName>sample string 9</SystemUserFullName>
<SystemUserID>2</SystemUserID>
<Title>sample string 5</Title>
</CustomerUserLinkDTO>
</ArrayOfCustomerUserLinkDTO>