POST api/General/OfferManage/giftcard-process-payment-bp

Request Information

URI Parameters

None.

Body Parameters

ProcessPaymentPayload
NameDescriptionTypeAdditional information
AuthKey

string

Required

OrderID

string

Required

IPAddress

string

None.

UserID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AuthKey": "sample string 1",
  "OrderID": "sample string 2",
  "IPAddress": "sample string 3",
  "UserID": "sample string 4"
}

application/xml, text/xml

Sample:
<ProcessPaymentPayload xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.CustomModels">
  <AuthKey>sample string 1</AuthKey>
  <IPAddress>sample string 3</IPAddress>
  <OrderID>sample string 2</OrderID>
  <UserID>sample string 4</UserID>
</ProcessPaymentPayload>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BPointPaymentResponseModel
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

TransactionID

string

None.

CanReTry

boolean

None.

PaymentAmount

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "TransactionID": "sample string 3",
  "CanReTry": true,
  "PaymentAmount": 1.1
}

application/xml, text/xml

Sample:
<BPointPaymentResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.CustomModels">
  <CanReTry>true</CanReTry>
  <Message>sample string 2</Message>
  <PaymentAmount>1.1</PaymentAmount>
  <Success>true</Success>
  <TransactionID>sample string 3</TransactionID>
</BPointPaymentResponseModel>