POST api/PSSRenewal/GetPaymentRequestHashAsync

Request Information

URI Parameters

None.

Body Parameters

customerpurchase_pss_transactionid_request
NameDescriptionTypeAdditional information
online_order_id

string

None.

Request Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<customerpurchase_pss_transactionid_request xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CustomerApp.Models">
  <online_order_id>sample string 1</online_order_id>
</customerpurchase_pss_transactionid_request>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

customerpurchase_pss_transactionid_response
NameDescriptionTypeAdditional information
success

boolean

None.

message

string

None.

merchant_id

string

None.

order_id

string

None.

access_code_encrypted

string

None.

currency

string

None.

amount

decimal number

None.

tracking_id_encrypted

string

None.

request_hash

string

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2",
  "merchant_id": "sample string 3",
  "order_id": "sample string 4",
  "access_code_encrypted": "sample string 5",
  "currency": "sample string 6",
  "amount": 7.0,
  "tracking_id_encrypted": "sample string 8",
  "request_hash": "sample string 9"
}

application/xml, text/xml

Sample:
<customerpurchase_pss_transactionid_response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CustomerApp.Models">
  <access_code_encrypted>sample string 5</access_code_encrypted>
  <amount>7</amount>
  <currency>sample string 6</currency>
  <merchant_id>sample string 3</merchant_id>
  <message>sample string 2</message>
  <order_id>sample string 4</order_id>
  <request_hash>sample string 9</request_hash>
  <success>true</success>
  <tracking_id_encrypted>sample string 8</tracking_id_encrypted>
</customerpurchase_pss_transactionid_response>