POST api/Synchronized

Request Information

URI Parameters

None.

Body Parameters

ClientInfoDTO
NameDescriptionTypeAdditional information
ClientKey

ClientKeyDTO

None.

Licence

string

None.

AppVersion

string

None.

Build

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ClientKey": {
    "RepKey": {
      "ID": 1
    },
    "AppKey": {
      "ID": 1
    },
    "DeviceID": "sample string 1",
    "LastUpdateDate": 2
  },
  "Licence": "sample string 1",
  "AppVersion": "sample string 2",
  "Build": "sample string 3"
}

application/xml, text/xml

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

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 'ClientInfoDTO'.

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>