GET api/Authentication/GetSecretKey?SecretKey={SecretKey}

Documentation for 'GetSecretKey'.

Request Information

Parameters

NameDescriptionAdditional information
SecretKey
Documentation for 'SecretKey'.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2",
  "data": {
    "JineeLogo": true,
    "JineeLogoURL": "sample string 2",
    "CustomerLogo": true,
    "CustomerLogoURL": "sample string 4",
    "LocationTracking": true,
    "APIPath": "sample string 6"
  }
}

application/xml, text/xml

Sample:
<BindSecretKey xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VCLCYL.API.Models">
  <data>
    <APIPath>sample string 6</APIPath>
    <CustomerLogo>true</CustomerLogo>
    <CustomerLogoURL>sample string 4</CustomerLogoURL>
    <JineeLogo>true</JineeLogo>
    <JineeLogoURL>sample string 2</JineeLogoURL>
    <LocationTracking>true</LocationTracking>
  </data>
  <message>sample string 2</message>
  <success>true</success>
</BindSecretKey>