POST api/Customer/GetApplicationData

Uygulama acilisinda alinacak bilgiler

Request Information

URI Parameters

None.

Body Parameters

GetApplicationDataInput
NameDescriptionTypeAdditional information
DeviceType

integer

None.

Token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "DeviceType": 1,
  "Token": "sample string 2"
}

text/xml

Sample:
<GetApplicationDataInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.CustomerServices.Dtos">
  <Token xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.Base.Dtos">sample string 2</Token>
  <DeviceType>1</DeviceType>
</GetApplicationDataInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetApplicationDataDto
NameDescriptionTypeAdditional information
Version

string

None.

IsForcedUpdate

boolean

None.

MembershipPackageName

string

None.

MembershipIsDemoPackage

boolean

None.

ExpiredDay

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Version": "sample string 1",
  "IsForcedUpdate": true,
  "MembershipPackageName": "sample string 3",
  "MembershipIsDemoPackage": true,
  "ExpiredDay": 5
}

text/xml

Sample:
<GetApplicationDataDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.CustomerServices.Dtos">
  <ExpiredDay>5</ExpiredDay>
  <IsForcedUpdate>true</IsForcedUpdate>
  <MembershipIsDemoPackage>true</MembershipIsDemoPackage>
  <MembershipPackageName>sample string 3</MembershipPackageName>
  <Version>sample string 1</Version>
</GetApplicationDataDto>