GET api/CustomerUserLink?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

CustomerUserLinkDTO
NameDescriptionTypeAdditional 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"
}

application/xml, text/xml

Sample:
<CustomerUserLinkDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO">
  <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>