POST api/v1/orders/payments/verify

Request Information

URI Parameters

None.

Body Parameters

PaymentVerificationModel
NameDescriptionTypeAdditional information
type

string

Required

id

integer

Required

Request Formats

application/json, text/json

Sample:
{
  "type": "sample string 1",
  "id": 2
}

application/xml, text/xml

Sample:
<PaymentVerificationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BOPWAAPI.Model.Movam">
  <OrderId>2</OrderId>
  <Type>sample string 1</Type>
</PaymentVerificationModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'PaymentVerificationModel'.

Response Information

Resource Description

MovamApiResponse
NameDescriptionTypeAdditional information
Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "Data": {}
}

application/xml, text/xml

Sample:
<MovamApiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BOPWAAPI.Model.Movam">
  <Data />
  <Message>sample string 1</Message>
</MovamApiResponse>