GET api/MobileFT?customerId={customerId}&orderId={orderId}&txnAmoun={txnAmoun}&mobile={mobile}&CallbackUrl={CallbackUrl}&_MID={_MID}&_website={_website}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerId | string |
Required |
|
| orderId | string |
Required |
|
| txnAmoun | string |
Required |
|
| mobile | string |
Required |
|
| CallbackUrl | string |
Required |
|
| _MID | string |
Required |
|
| _website | string |
Required |
Body Parameters
None.
Response Information
Resource Description
MobileInitTransUPIResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| head | Head |
None. |
|
| body | Body |
None. |
Response Formats
application/json, text/json
Sample:
{
"head": {
"responseTimestamp": "sample string 1",
"version": "sample string 2",
"clientId": "sample string 3",
"signature": "sample string 4"
},
"body": {
"resultInfo": {
"resultStatus": "sample string 1",
"resultCode": "sample string 2",
"resultMsg": "sample string 3"
},
"txnToken": "sample string 1",
"isPromoCodeValid": true,
"authenticated": true
}
}
application/xml, text/xml
Sample:
<MobileInitTransUPIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/D2HApplication.API.Areas.InfinityAppAPI.Models">
<body>
<authenticated>true</authenticated>
<isPromoCodeValid>true</isPromoCodeValid>
<resultInfo>
<resultCode>sample string 2</resultCode>
<resultMsg>sample string 3</resultMsg>
<resultStatus>sample string 1</resultStatus>
</resultInfo>
<txnToken>sample string 1</txnToken>
</body>
<head>
<clientId>sample string 3</clientId>
<responseTimestamp>sample string 1</responseTimestamp>
<signature>sample string 4</signature>
<version>sample string 2</version>
</head>
</MobileInitTransUPIResponse>