POST api/order/payment_verification

Request Information

URI Parameters

None.

Body Parameters

payment_verify_request
NameDescriptionTypeAdditional information
order_id

string

None.

client_secret

string

None.

stripe_customer_id

string

None.

token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "order_id": "sample string 1",
  "client_secret": "sample string 2",
  "stripe_customer_id": "sample string 3",
  "token": "sample string 4"
}

application/xml, text/xml

Sample:
<payment_verify_request xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
  <client_secret>sample string 2</client_secret>
  <order_id>sample string 1</order_id>
  <stripe_customer_id>sample string 3</stripe_customer_id>
  <token>sample string 4</token>
</payment_verify_request>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

payment_verify_response
NameDescriptionTypeAdditional information
success

boolean

None.

message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2"
}

application/xml, text/xml

Sample:
<payment_verify_response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
  <message>sample string 2</message>
  <success>true</success>
</payment_verify_response>