POST api/encryption/encryptpaymenturl
Request Information
URI Parameters
None.
Body Parameters
BO.Payment.PaymentEncryptionModel| Name | Description | Type | Additional information |
|---|---|---|---|
| paymentParam | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"paymentParam": "sample string 1"
}
application/xml, text/xml
Sample:
<PaymentEncryptionModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <paymentParam>sample string 1</paymentParam> </PaymentEncryptionModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BO.BETResponseObjects.BaseResponseOfBO.Payment.EncryptPayment| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject | BO.Payment.EncryptPayment |
None. |
|
| ResponseMessage | string |
None. |
|
| ResponseType | BO.Enums.ResponseType |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseObject": {
"encryptedPaymentDetails": "sample string 1"
},
"responseMessage": "sample string 1",
"responseType": 1
}
application/xml, text/xml
Sample:
<BaseResponseOfEncryptPayment xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ResponseObject>
<EncryptedPaymentDetails>sample string 1</EncryptedPaymentDetails>
</ResponseObject>
<ResponseMessage>sample string 1</ResponseMessage>
<ResponseType>Success</ResponseType>
</BaseResponseOfEncryptPayment>