POST api/Query/EB_INFO

Request Information

URI Parameters

None.

Body Parameters

EB_INFO_Params
NameDescriptionTypeAdditional information
BROCHURE_CODE

string

None.

LANGUAGE_CODE

string

None.

AUTH

Auth_Params

None.

Request Formats

application/json, text/json

Sample:
{
  "BROCHURE_CODE": "sample string 1",
  "LANGUAGE_CODE": "sample string 2",
  "AUTH": {
    "AUTH_KEY": "sample string 1"
  }
}

application/xml, text/xml

Sample:
<EB_INFO_Params xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSStoreService.Models.Params">
  <AUTH>
    <AUTH_KEY>sample string 1</AUTH_KEY>
  </AUTH>
  <BROCHURE_CODE>sample string 1</BROCHURE_CODE>
  <LANGUAGE_CODE>sample string 2</LANGUAGE_CODE>
</EB_INFO_Params>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultDTOOfString
NameDescriptionTypeAdditional information
Result

boolean

None.

Message

string

None.

Data

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Result": true,
  "Message": "sample string 2",
  "Data": "sample string 3"
}

application/xml, text/xml

Sample:
<ResultDTOOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSStoreService.Models.DTO">
  <Data>sample string 3</Data>
  <Message>sample string 2</Message>
  <Result>true</Result>
</ResultDTOOfstring>