PUT api/CustomerUserLink?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

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.

Request 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>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>