production
development
https://apigateway.bankalfalah.com/bankalfalah/sb
Paths
/v1
post /v1
clientIdHeader
X-IBM-Client-Id
(apiKey located in header)
clientSecretHeader
X-IBM-Client-Secret
(apiKey located in header)
OAuth
OAuth
(oauth2 application)
OAuth Authentication
Token URL
https://apigateway.bankalfalah.com/bankalfalah/sb/oauthproviderapi/oauth2/token
Scopes
GetToken
RequestBody
Required in body
object
RequestBody
Content-Type
Optional in header
string
application/json
Accept
Optional in header
string
application/json
200
200 OK
Example Request
curl --request POST \
--url https://apigateway.bankalfalah.com/bankalfalah/sb/opentitlefetch/v1 \
--header 'accept: application/json' \
--header 'authorization: Bearer REPLACE_BEARER_TOKEN' \
--header 'content-type: application/json' \
--header 'x-ibm-client-id: REPLACE_THIS_KEY' \
--header 'x-ibm-client-secret: REPLACE_THIS_KEY' \
--data '{"dateTime":"1105171432","amount":"100","rrn":"858565171121","fromAccountNumber":"123456789111","toAccountNumber":"12345678911112","toBankIMD":"221166","beneficiaryBankName":"JS","fromBankIMD":"627100"}'
require 'uri'
require 'openssl'
require 'net/http'
url = URI("https://apigateway.bankalfalah.com/bankalfalah/sb/opentitlefetch/v1")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_PEER
request = Net::HTTP::Post.new(url)
request["x-ibm-client-id"] = 'REPLACE_THIS_KEY'
request["x-ibm-client-secret"] = 'REPLACE_THIS_KEY'
request["authorization"] = 'Bearer REPLACE_BEARER_TOKEN'
request["content-type"] = 'application/json'
request["accept"] = 'application/json'
request.body = "{\"dateTime\":\"1105171432\",\"amount\":\"100\",\"rrn\":\"858565171121\",\"fromAccountNumber\":\"123456789111\",\"toAccountNumber\":\"12345678911112\",\"toBankIMD\":\"221166\",\"beneficiaryBankName\":\"JS\",\"fromBankIMD\":\"627100\"}"
response = http.request(request)
puts response.read_body
import http.client
conn = http.client.HTTPSConnection("apigateway.bankalfalah.com")
payload = "{\"dateTime\":\"1105171432\",\"amount\":\"100\",\"rrn\":\"858565171121\",\"fromAccountNumber\":\"123456789111\",\"toAccountNumber\":\"12345678911112\",\"toBankIMD\":\"221166\",\"beneficiaryBankName\":\"JS\",\"fromBankIMD\":\"627100\"}"
headers = {
'x-ibm-client-id': "REPLACE_THIS_KEY",
'x-ibm-client-secret': "REPLACE_THIS_KEY",
'authorization': "Bearer REPLACE_BEARER_TOKEN",
'content-type': "application/json",
'accept': "application/json"
}
conn.request("POST", "/bankalfalah/sb/opentitlefetch/v1", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://apigateway.bankalfalah.com/bankalfalah/sb/opentitlefetch/v1",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "{\"dateTime\":\"1105171432\",\"amount\":\"100\",\"rrn\":\"858565171121\",\"fromAccountNumber\":\"123456789111\",\"toAccountNumber\":\"12345678911112\",\"toBankIMD\":\"221166\",\"beneficiaryBankName\":\"JS\",\"fromBankIMD\":\"627100\"}",
CURLOPT_HTTPHEADER => array(
"accept: application/json",
"authorization: Bearer REPLACE_BEARER_TOKEN",
"content-type: application/json",
"x-ibm-client-id: REPLACE_THIS_KEY",
"x-ibm-client-secret: REPLACE_THIS_KEY"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
// OkHttpClient from http://square.github.io/okhttp/
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\"dateTime\":\"1105171432\",\"amount\":\"100\",\"rrn\":\"858565171121\",\"fromAccountNumber\":\"123456789111\",\"toAccountNumber\":\"12345678911112\",\"toBankIMD\":\"221166\",\"beneficiaryBankName\":\"JS\",\"fromBankIMD\":\"627100\"}");
Request request = new Request.Builder()
.url("https://apigateway.bankalfalah.com/bankalfalah/sb/opentitlefetch/v1")
.post(body)
.addHeader("x-ibm-client-id", "REPLACE_THIS_KEY")
.addHeader("x-ibm-client-secret", "REPLACE_THIS_KEY")
.addHeader("authorization", "Bearer REPLACE_BEARER_TOKEN")
.addHeader("content-type", "application/json")
.addHeader("accept", "application/json")
.build();
Response response = client.newCall(request).execute();
// Install request by running "npm install --save request"
var request = require("request");
var options = { method: 'POST',
url: 'https://apigateway.bankalfalah.com/bankalfalah/sb/opentitlefetch/v1',
headers:
{ accept: 'application/json',
'content-type': 'application/json',
authorization: 'Bearer REPLACE_BEARER_TOKEN',
'x-ibm-client-secret': 'REPLACE_THIS_KEY',
'x-ibm-client-id': 'REPLACE_THIS_KEY' },
body:
{ dateTime: '1105171432',
amount: '100',
rrn: '858565171121',
fromAccountNumber: '123456789111',
toAccountNumber: '12345678911112',
toBankIMD: '221166',
beneficiaryBankName: 'JS',
fromBankIMD: '627100' },
json: true };
request(options, function (error, response, body) {
if (error) return console.error('Failed: %s', error.message);
console.log('Success: ', body);
});
import Foundation
let headers = [
"x-ibm-client-id": "REPLACE_THIS_KEY",
"x-ibm-client-secret": "REPLACE_THIS_KEY",
"authorization": "Bearer REPLACE_BEARER_TOKEN",
"content-type": "application/json",
"accept": "application/json"
]
let parameters = [
"dateTime": "1105171432",
"amount": "100",
"rrn": "858565171121",
"fromAccountNumber": "123456789111",
"toAccountNumber": "12345678911112",
"toBankIMD": "221166",
"beneficiaryBankName": "JS",
"fromBankIMD": "627100"
]
let postData = NSJSONSerialization.dataWithJSONObject(parameters, options: nil, error: nil)
var request = NSMutableURLRequest(URL: NSURL(string: "https://apigateway.bankalfalah.com/bankalfalah/sb/opentitlefetch/v1")!,
cachePolicy: .UseProtocolCachePolicy,
timeoutInterval: 10.0)
request.HTTPMethod = "POST"
request.allHTTPHeaderFields = headers
request.HTTPBody = postData
let session = NSURLSession.sharedSession()
let dataTask = session.dataTaskWithRequest(request, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error)
} else {
let httpResponse = response as? NSHTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_URL, "https://apigateway.bankalfalah.com/bankalfalah/sb/opentitlefetch/v1");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "accept: application/json");
headers = curl_slist_append(headers, "content-type: application/json");
headers = curl_slist_append(headers, "authorization: Bearer REPLACE_BEARER_TOKEN");
headers = curl_slist_append(headers, "x-ibm-client-secret: REPLACE_THIS_KEY");
headers = curl_slist_append(headers, "x-ibm-client-id: REPLACE_THIS_KEY");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\"dateTime\":\"1105171432\",\"amount\":\"100\",\"rrn\":\"858565171121\",\"fromAccountNumber\":\"123456789111\",\"toAccountNumber\":\"12345678911112\",\"toBankIMD\":\"221166\",\"beneficiaryBankName\":\"JS\",\"fromBankIMD\":\"627100\"}");
CURLcode ret = curl_easy_perform(hnd);
var client = new RestClient("https://apigateway.bankalfalah.com/bankalfalah/sb/opentitlefetch/v1");
var request = new RestRequest(Method.POST);
request.AddHeader("accept", "application/json");
request.AddHeader("content-type", "application/json");
request.AddHeader("authorization", "Bearer REPLACE_BEARER_TOKEN");
request.AddHeader("x-ibm-client-secret", "REPLACE_THIS_KEY");
request.AddHeader("x-ibm-client-id", "REPLACE_THIS_KEY");
request.AddParameter("application/json", "{\"dateTime\":\"1105171432\",\"amount\":\"100\",\"rrn\":\"858565171121\",\"fromAccountNumber\":\"123456789111\",\"toAccountNumber\":\"12345678911112\",\"toBankIMD\":\"221166\",\"beneficiaryBankName\":\"JS\",\"fromBankIMD\":\"627100\"}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Example Response
POST https://apigateway.bankalfalah.com/bankalfalah/sb/opentitlefetch/v1
{
"ResponseCode": "00",
"PAN": "6271008585654171432",
"Amount": "000000000100",
"STAN": "171121",
"Date": "1105",
"Time": "171432",
"RRN": "858565171121",
"AuthID": "314522",
"ToBankIMD": "22116600000",
"AccountNumberTo": "12345678911112",
"AccountTitleTo": "ZEESHAN AHMED ",
"BranchNameTo": "JS ",
"BankName": "JS ",
"ResponseDetail": "PROCESSED OK"
}
Try this operation
No response. This is a mixed content call. It is not possible to test HTTP APIs from an HTTPS secured Portal site and vice versa.
No response. This is a cross-origin call. Make sure the server accepts requests from this portal. Or if using self-signed SSL certificates then paste the URL above into your browser to accept the certificate before trying again (On Internet Explorer it must be the same browser tab.).
Definitions
{
"type": "object",
"properties": {
"dateTime": {
"type": "string"
},
"amount": {
"type": "string"
},
"rrn": {
"type": "string"
},
"fromAccountNumber": {
"type": "string"
},
"toAccountNumber": {
"type": "string"
},
"toBankIMD": {
"type": "string"
},
"beneficiaryBankName": {
"type": "string"
},
"fromBankIMD": {
"type": "string"
}
},
"example": {
"dateTime": "1105171432",
"amount": "100",
"rrn": "858565171121",
"fromAccountNumber": "123456789111",
"toAccountNumber": "12345678911112",
"toBankIMD": "221166",
"beneficiaryBankName": "JS",
"fromBankIMD": "627100"
},
"required": [
"dateTime",
"amount",
"rrn",
"fromAccountNumber",
"toAccountNumber",
"toBankIMD",
"beneficiaryBankName",
"fromBankIMD"
]
}
{
"type": "object",
"properties": {
"ResponseCode": {
"type": "string"
},
"PAN": {
"type": "string"
},
"Amount": {
"type": "string"
},
"STAN": {
"type": "string"
},
"Date": {
"type": "string"
},
"Time": {
"type": "string"
},
"RRN": {
"type": "string"
},
"AuthID": {
"type": "string"
},
"ToBankIMD": {
"type": "string"
},
"AccountNumberTo": {
"type": "string"
},
"AccountTitleTo": {
"type": "string"
},
"BranchNameTo": {
"type": "string"
},
"BankName": {
"type": "string"
},
"ResponseDetail": {
"type": "string"
}
},
"example": {
"ResponseCode": "00",
"PAN": "6271008585654171432",
"Amount": "000000000100",
"STAN": "171121",
"Date": "1105",
"Time": "171432",
"RRN": "858565171121",
"AuthID": "314522",
"ToBankIMD": "22116600000",
"AccountNumberTo": "12345678911112",
"AccountTitleTo": "ZEESHAN AHMED ",
"BranchNameTo": "JS ",
"BankName": "JS ",
"ResponseDetail": "PROCESSED OK"
}
}