POST api/LinkedHCP

Request Information

URI Parameters

None.

Body Parameters

RequestInfo
NameDescriptionTypeAdditional information
SessionID

string

None.

RepKey

IdentificatorDTO

None.

AppKey

IdentificatorDTO

None.

DeviceID

string

None.

LastUpdateDate

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "SessionID": "sample string 1",
  "RepKey": {
    "ID": 1
  },
  "AppKey": {
    "ID": 1
  },
  "DeviceID": "sample string 2",
  "LastUpdateDate": 3
}

application/xml, text/xml

Sample:
<RequestInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ServiceCenter.API.DTO.iInteract">
  <AppKey>
    <ID>1</ID>
  </AppKey>
  <DeviceID>sample string 2</DeviceID>
  <LastUpdateDate>3</LastUpdateDate>
  <RepKey>
    <ID>1</ID>
  </RepKey>
  <SessionID>sample string 1</SessionID>
</RequestInfo>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'RequestInfo'.

Response Information

Resource Description

IdentificatorList
NameDescriptionTypeAdditional information
IDList

Collection of IdentificatorDTO

None.

ErrorNumber

integer

None.

ErrorMessage

string

None.

ActionResult

boolean

None.

OperationResult

integer

None.

UserId

integer

None.

ClientKey

string

None.

Name

string

None.

Surname

string

None.

Email

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IDList": [
    {
      "ID": 1
    },
    {
      "ID": 1
    }
  ],
  "ErrorNumber": 1,
  "ErrorMessage": "sample string 2",
  "ActionResult": true,
  "OperationResult": 4,
  "UserId": 5,
  "ClientKey": "sample string 6",
  "Name": "sample string 7",
  "Surname": "sample string 8",
  "Email": "sample string 9"
}

application/xml, text/xml

Sample:
<IdentificatorList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ServiceCenter.API.DTO.iInteract">
  <ClientKey>sample string 6</ClientKey>
  <Email>sample string 9</Email>
  <Name>sample string 7</Name>
  <OperationResult>4</OperationResult>
  <Surname>sample string 8</Surname>
  <UserId>5</UserId>
  <ActionResult>true</ActionResult>
  <ErrorMessage>sample string 2</ErrorMessage>
  <ErrorNumber>1</ErrorNumber>
  <IDList>
    <IdentificatorDTO>
      <ID>1</ID>
    </IdentificatorDTO>
    <IdentificatorDTO>
      <ID>1</ID>
    </IdentificatorDTO>
  </IDList>
</IdentificatorList>