Initiate GIBL
Initiate GIBL
Postman Collection
URL
POST : /v1/service/gibl/initHeaders
Content-Type (String) required
application/json
application/json
Authorization (String) required
Basic Auth
Basic Auth
Accept (String) required
application/json
application/json
Body Params
merchantLoginId (String) Required
Merchant Login Id (Max Length: 50)
Merchant Login Id (Max Length: 50)
authkey (String) Required
Random Unique String (Max Length: 100)
Random Unique String (Max Length: 100)
Request
Example Request
curl --location '/v1/service/gibl/init' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data '{
"merchantLoginId": "MID69*******",
"authKey": "AUTH3484384123456"
}'
Response Samples
- SUCCESS
- FAILED
{
"code": "0x0200",
"message": "Redirect",
"status": "SUCCESS",
"data": {
"url": "https://www.gibl.in/wallet/validate2/",
"ret_data": "eyJ1cmMiOiJNSUQ2OTM3NDM5Njk0IiwidW1jIjoiNDU3ODE5IiwiYWsiOm51bGwsImZuYW1lIjoiQW5pbCIsImxuYW1lIjpudWxsLCJlbWFpbCI6Imt1bWFyZ2xjaUBnbWFpbC5jb20iLCJwaG5vIjo5NjUxODA3OTg2LCJwaW4iOjIyNDIwNH0="
}
}
{
"code": "0x0202",
"status": "FAILURE",
"message": "Error, GIBL not initiate",
}
HTML
Example HTML
<form id="retForm" action="{{url}}" method="POST">
<input type="hidden" name="ret_data" value="{{ret_data}}">
<button type="submit">Proceed to GIBL</button>
</form>
Response Code
Status Code | Status | Message |
---|---|---|
0x0200 | SUCCESS | TRANSACTION SUCCESSFULL |
0x0201 | UNAUTHORIZED | UNAUTHORIZED USER |
0x0202 | FAILURE | FAILURE USER |
0x0203 | MISSING_PARAMETER | MISSING PARAMETER |
0x0204 | CONNECTION_TIMEOUT | CONNECTION TIMEOUT |
0x0205 | SOMETHING_WENT_WRONG | SOMETHING WENT WRONG |
0x0206 | PENDING | TRANSACTION PENDING |
0x0207 | REVERSED | TRANSACTION REVERSED |
0x0209 | REDIRECT | REDIRECT URL |