POST api/General/OfferManage/check-giftcard-authentication-bp

Request Information

URI Parameters

None.

Body Parameters

AuthKeyResponse
NameDescriptionTypeAdditional information
AuthKey

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AuthKey": "sample string 1"
}

application/xml, text/xml

Sample:
<AuthKeyResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.CustomModels">
  <AuthKey>sample string 1</AuthKey>
</AuthKeyResponse>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BPointCheckAuthResModel
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Details

string

None.

IframeUrl

string

None.

IframeOrigin

string

None.

RequiresAuthentication

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "Details": "sample string 3",
  "IframeUrl": "sample string 4",
  "IframeOrigin": "sample string 5",
  "RequiresAuthentication": true
}

application/xml, text/xml

Sample:
<BPointCheckAuthResModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.CustomModels">
  <Details>sample string 3</Details>
  <IframeOrigin>sample string 5</IframeOrigin>
  <IframeUrl>sample string 4</IframeUrl>
  <Message>sample string 2</Message>
  <RequiresAuthentication>true</RequiresAuthentication>
  <Success>true</Success>
</BPointCheckAuthResModel>