Account Tokenization
Tokenize via Open Banking
Tokenize an account using open banking account data for use in subsequent Process requests.
POST
/
gateway
/
verify--open-banking
Tokenize via Open Banking
curl --request POST \
--url https://sandbox-api.ingomoney.com/gateway/verify--open-banking \
--header 'Content-Type: application/json' \
--data '
{
"request": "<string>",
"participant_id": "<string>",
"timestamp": "<string>",
"open_banking_request": "<string>",
"open_banking_provider": "<string>",
"requested_data": "<string>",
"from_date": "<string>",
"to_date": "<string>",
"customer_account_token": "<string>",
"account_identifier": "<string>",
"account_identifier_finicity": "<string>",
"customer_id": "<string>",
"account_id": "<string>",
"response": "<string>",
"status": "<string>",
"message": "<string>",
"duration": "<string>",
"open_banking": "<string>",
"open_banking_response": "<string>"
}
'import requests
url = "https://sandbox-api.ingomoney.com/gateway/verify--open-banking"
payload = {
"request": "<string>",
"participant_id": "<string>",
"timestamp": "<string>",
"open_banking_request": "<string>",
"open_banking_provider": "<string>",
"requested_data": "<string>",
"from_date": "<string>",
"to_date": "<string>",
"customer_account_token": "<string>",
"account_identifier": "<string>",
"account_identifier_finicity": "<string>",
"customer_id": "<string>",
"account_id": "<string>",
"response": "<string>",
"status": "<string>",
"message": "<string>",
"duration": "<string>",
"open_banking": "<string>",
"open_banking_response": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
request: '<string>',
participant_id: '<string>',
timestamp: '<string>',
open_banking_request: '<string>',
open_banking_provider: '<string>',
requested_data: '<string>',
from_date: '<string>',
to_date: '<string>',
customer_account_token: '<string>',
account_identifier: '<string>',
account_identifier_finicity: '<string>',
customer_id: '<string>',
account_id: '<string>',
response: '<string>',
status: '<string>',
message: '<string>',
duration: '<string>',
open_banking: '<string>',
open_banking_response: '<string>'
})
};
fetch('https://sandbox-api.ingomoney.com/gateway/verify--open-banking', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox-api.ingomoney.com/gateway/verify--open-banking",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'request' => '<string>',
'participant_id' => '<string>',
'timestamp' => '<string>',
'open_banking_request' => '<string>',
'open_banking_provider' => '<string>',
'requested_data' => '<string>',
'from_date' => '<string>',
'to_date' => '<string>',
'customer_account_token' => '<string>',
'account_identifier' => '<string>',
'account_identifier_finicity' => '<string>',
'customer_id' => '<string>',
'account_id' => '<string>',
'response' => '<string>',
'status' => '<string>',
'message' => '<string>',
'duration' => '<string>',
'open_banking' => '<string>',
'open_banking_response' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sandbox-api.ingomoney.com/gateway/verify--open-banking"
payload := strings.NewReader("{\n \"request\": \"<string>\",\n \"participant_id\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"open_banking_request\": \"<string>\",\n \"open_banking_provider\": \"<string>\",\n \"requested_data\": \"<string>\",\n \"from_date\": \"<string>\",\n \"to_date\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"account_identifier\": \"<string>\",\n \"account_identifier_finicity\": \"<string>\",\n \"customer_id\": \"<string>\",\n \"account_id\": \"<string>\",\n \"response\": \"<string>\",\n \"status\": \"<string>\",\n \"message\": \"<string>\",\n \"duration\": \"<string>\",\n \"open_banking\": \"<string>\",\n \"open_banking_response\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://sandbox-api.ingomoney.com/gateway/verify--open-banking")
.header("Content-Type", "application/json")
.body("{\n \"request\": \"<string>\",\n \"participant_id\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"open_banking_request\": \"<string>\",\n \"open_banking_provider\": \"<string>\",\n \"requested_data\": \"<string>\",\n \"from_date\": \"<string>\",\n \"to_date\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"account_identifier\": \"<string>\",\n \"account_identifier_finicity\": \"<string>\",\n \"customer_id\": \"<string>\",\n \"account_id\": \"<string>\",\n \"response\": \"<string>\",\n \"status\": \"<string>\",\n \"message\": \"<string>\",\n \"duration\": \"<string>\",\n \"open_banking\": \"<string>\",\n \"open_banking_response\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox-api.ingomoney.com/gateway/verify--open-banking")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"request\": \"<string>\",\n \"participant_id\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"open_banking_request\": \"<string>\",\n \"open_banking_provider\": \"<string>\",\n \"requested_data\": \"<string>\",\n \"from_date\": \"<string>\",\n \"to_date\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"account_identifier\": \"<string>\",\n \"account_identifier_finicity\": \"<string>\",\n \"customer_id\": \"<string>\",\n \"account_id\": \"<string>\",\n \"response\": \"<string>\",\n \"status\": \"<string>\",\n \"message\": \"<string>\",\n \"duration\": \"<string>\",\n \"open_banking\": \"<string>\",\n \"open_banking_response\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": 100,
"client_message": "Success",
"data": {},
"time": "0.85"
}Under Development — Coming Soon. This endpoint is currently under development and is not yet available for integration. Specifications are subject to change prior to general availability. Contact your Ingo integration manager for availability updates.
Body
application/json
Open banking account tokenization request.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
CONDITIONAL
CONDITIONAL
CONDITIONAL
CONDITIONAL
CONDITIONAL
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Response
200 - application/json
Open banking tokenization response.
⌘I
Tokenize via Open Banking
curl --request POST \
--url https://sandbox-api.ingomoney.com/gateway/verify--open-banking \
--header 'Content-Type: application/json' \
--data '
{
"request": "<string>",
"participant_id": "<string>",
"timestamp": "<string>",
"open_banking_request": "<string>",
"open_banking_provider": "<string>",
"requested_data": "<string>",
"from_date": "<string>",
"to_date": "<string>",
"customer_account_token": "<string>",
"account_identifier": "<string>",
"account_identifier_finicity": "<string>",
"customer_id": "<string>",
"account_id": "<string>",
"response": "<string>",
"status": "<string>",
"message": "<string>",
"duration": "<string>",
"open_banking": "<string>",
"open_banking_response": "<string>"
}
'import requests
url = "https://sandbox-api.ingomoney.com/gateway/verify--open-banking"
payload = {
"request": "<string>",
"participant_id": "<string>",
"timestamp": "<string>",
"open_banking_request": "<string>",
"open_banking_provider": "<string>",
"requested_data": "<string>",
"from_date": "<string>",
"to_date": "<string>",
"customer_account_token": "<string>",
"account_identifier": "<string>",
"account_identifier_finicity": "<string>",
"customer_id": "<string>",
"account_id": "<string>",
"response": "<string>",
"status": "<string>",
"message": "<string>",
"duration": "<string>",
"open_banking": "<string>",
"open_banking_response": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
request: '<string>',
participant_id: '<string>',
timestamp: '<string>',
open_banking_request: '<string>',
open_banking_provider: '<string>',
requested_data: '<string>',
from_date: '<string>',
to_date: '<string>',
customer_account_token: '<string>',
account_identifier: '<string>',
account_identifier_finicity: '<string>',
customer_id: '<string>',
account_id: '<string>',
response: '<string>',
status: '<string>',
message: '<string>',
duration: '<string>',
open_banking: '<string>',
open_banking_response: '<string>'
})
};
fetch('https://sandbox-api.ingomoney.com/gateway/verify--open-banking', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox-api.ingomoney.com/gateway/verify--open-banking",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'request' => '<string>',
'participant_id' => '<string>',
'timestamp' => '<string>',
'open_banking_request' => '<string>',
'open_banking_provider' => '<string>',
'requested_data' => '<string>',
'from_date' => '<string>',
'to_date' => '<string>',
'customer_account_token' => '<string>',
'account_identifier' => '<string>',
'account_identifier_finicity' => '<string>',
'customer_id' => '<string>',
'account_id' => '<string>',
'response' => '<string>',
'status' => '<string>',
'message' => '<string>',
'duration' => '<string>',
'open_banking' => '<string>',
'open_banking_response' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sandbox-api.ingomoney.com/gateway/verify--open-banking"
payload := strings.NewReader("{\n \"request\": \"<string>\",\n \"participant_id\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"open_banking_request\": \"<string>\",\n \"open_banking_provider\": \"<string>\",\n \"requested_data\": \"<string>\",\n \"from_date\": \"<string>\",\n \"to_date\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"account_identifier\": \"<string>\",\n \"account_identifier_finicity\": \"<string>\",\n \"customer_id\": \"<string>\",\n \"account_id\": \"<string>\",\n \"response\": \"<string>\",\n \"status\": \"<string>\",\n \"message\": \"<string>\",\n \"duration\": \"<string>\",\n \"open_banking\": \"<string>\",\n \"open_banking_response\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://sandbox-api.ingomoney.com/gateway/verify--open-banking")
.header("Content-Type", "application/json")
.body("{\n \"request\": \"<string>\",\n \"participant_id\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"open_banking_request\": \"<string>\",\n \"open_banking_provider\": \"<string>\",\n \"requested_data\": \"<string>\",\n \"from_date\": \"<string>\",\n \"to_date\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"account_identifier\": \"<string>\",\n \"account_identifier_finicity\": \"<string>\",\n \"customer_id\": \"<string>\",\n \"account_id\": \"<string>\",\n \"response\": \"<string>\",\n \"status\": \"<string>\",\n \"message\": \"<string>\",\n \"duration\": \"<string>\",\n \"open_banking\": \"<string>\",\n \"open_banking_response\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox-api.ingomoney.com/gateway/verify--open-banking")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"request\": \"<string>\",\n \"participant_id\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"open_banking_request\": \"<string>\",\n \"open_banking_provider\": \"<string>\",\n \"requested_data\": \"<string>\",\n \"from_date\": \"<string>\",\n \"to_date\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"account_identifier\": \"<string>\",\n \"account_identifier_finicity\": \"<string>\",\n \"customer_id\": \"<string>\",\n \"account_id\": \"<string>\",\n \"response\": \"<string>\",\n \"status\": \"<string>\",\n \"message\": \"<string>\",\n \"duration\": \"<string>\",\n \"open_banking\": \"<string>\",\n \"open_banking_response\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": 100,
"client_message": "Success",
"data": {},
"time": "0.85"
}