Pull Payments
Pull Funds via Wire Drawdown
Initiate a wire transfer drawdown request to pull funds from a wire-enabled recipient account.
POST
/
gateway
/
v12
/
debit
/
process--wire
Pull Funds via Wire Drawdown
curl --request POST \
--url https://sandbox-api.ingomoney.com/gateway/v12/debit/process--wire \
--header 'Content-Type: application/json' \
--data '
{
"request": "<string>",
"participant_id": "<string>",
"timestamp": "<string>",
"transaction": "<string>",
"account_type": "<string>",
"transaction_amount": "<string>",
"currency_code": "<string>",
"amount": "<string>",
"transaction_wire_additional": "<string>",
"info_for_receiver": "<string>",
"line_1": "<string>",
"line_2": "<string>",
"line_3": "<string>",
"line_4": "<string>",
"participant_unique_ids": "<string>",
"participant_unique_id1": "<string>",
"participant_unique_id2": "<string>",
"customer_account_token": "<string>",
"source_of_funds": "<string>",
"recipient_phone": "<string>",
"ledger": "<string>",
"api_key": "<string>",
"user_id": "<string>",
"entity_type": "<string>",
"entity_id": "<string>",
"response": "<string>",
"status": "<string>",
"message": "<string>",
"duration": "<string>",
"transaction_id": "<string>",
"estimated_posting_time": "<string>",
"estimated_posting_date": "<string>"
}
'import requests
url = "https://sandbox-api.ingomoney.com/gateway/v12/debit/process--wire"
payload = {
"request": "<string>",
"participant_id": "<string>",
"timestamp": "<string>",
"transaction": "<string>",
"account_type": "<string>",
"transaction_amount": "<string>",
"currency_code": "<string>",
"amount": "<string>",
"transaction_wire_additional": "<string>",
"info_for_receiver": "<string>",
"line_1": "<string>",
"line_2": "<string>",
"line_3": "<string>",
"line_4": "<string>",
"participant_unique_ids": "<string>",
"participant_unique_id1": "<string>",
"participant_unique_id2": "<string>",
"customer_account_token": "<string>",
"source_of_funds": "<string>",
"recipient_phone": "<string>",
"ledger": "<string>",
"api_key": "<string>",
"user_id": "<string>",
"entity_type": "<string>",
"entity_id": "<string>",
"response": "<string>",
"status": "<string>",
"message": "<string>",
"duration": "<string>",
"transaction_id": "<string>",
"estimated_posting_time": "<string>",
"estimated_posting_date": "<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>',
transaction: '<string>',
account_type: '<string>',
transaction_amount: '<string>',
currency_code: '<string>',
amount: '<string>',
transaction_wire_additional: '<string>',
info_for_receiver: '<string>',
line_1: '<string>',
line_2: '<string>',
line_3: '<string>',
line_4: '<string>',
participant_unique_ids: '<string>',
participant_unique_id1: '<string>',
participant_unique_id2: '<string>',
customer_account_token: '<string>',
source_of_funds: '<string>',
recipient_phone: '<string>',
ledger: '<string>',
api_key: '<string>',
user_id: '<string>',
entity_type: '<string>',
entity_id: '<string>',
response: '<string>',
status: '<string>',
message: '<string>',
duration: '<string>',
transaction_id: '<string>',
estimated_posting_time: '<string>',
estimated_posting_date: '<string>'
})
};
fetch('https://sandbox-api.ingomoney.com/gateway/v12/debit/process--wire', 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/v12/debit/process--wire",
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>',
'transaction' => '<string>',
'account_type' => '<string>',
'transaction_amount' => '<string>',
'currency_code' => '<string>',
'amount' => '<string>',
'transaction_wire_additional' => '<string>',
'info_for_receiver' => '<string>',
'line_1' => '<string>',
'line_2' => '<string>',
'line_3' => '<string>',
'line_4' => '<string>',
'participant_unique_ids' => '<string>',
'participant_unique_id1' => '<string>',
'participant_unique_id2' => '<string>',
'customer_account_token' => '<string>',
'source_of_funds' => '<string>',
'recipient_phone' => '<string>',
'ledger' => '<string>',
'api_key' => '<string>',
'user_id' => '<string>',
'entity_type' => '<string>',
'entity_id' => '<string>',
'response' => '<string>',
'status' => '<string>',
'message' => '<string>',
'duration' => '<string>',
'transaction_id' => '<string>',
'estimated_posting_time' => '<string>',
'estimated_posting_date' => '<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/v12/debit/process--wire"
payload := strings.NewReader("{\n \"request\": \"<string>\",\n \"participant_id\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"transaction\": \"<string>\",\n \"account_type\": \"<string>\",\n \"transaction_amount\": \"<string>\",\n \"currency_code\": \"<string>\",\n \"amount\": \"<string>\",\n \"transaction_wire_additional\": \"<string>\",\n \"info_for_receiver\": \"<string>\",\n \"line_1\": \"<string>\",\n \"line_2\": \"<string>\",\n \"line_3\": \"<string>\",\n \"line_4\": \"<string>\",\n \"participant_unique_ids\": \"<string>\",\n \"participant_unique_id1\": \"<string>\",\n \"participant_unique_id2\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"source_of_funds\": \"<string>\",\n \"recipient_phone\": \"<string>\",\n \"ledger\": \"<string>\",\n \"api_key\": \"<string>\",\n \"user_id\": \"<string>\",\n \"entity_type\": \"<string>\",\n \"entity_id\": \"<string>\",\n \"response\": \"<string>\",\n \"status\": \"<string>\",\n \"message\": \"<string>\",\n \"duration\": \"<string>\",\n \"transaction_id\": \"<string>\",\n \"estimated_posting_time\": \"<string>\",\n \"estimated_posting_date\": \"<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/v12/debit/process--wire")
.header("Content-Type", "application/json")
.body("{\n \"request\": \"<string>\",\n \"participant_id\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"transaction\": \"<string>\",\n \"account_type\": \"<string>\",\n \"transaction_amount\": \"<string>\",\n \"currency_code\": \"<string>\",\n \"amount\": \"<string>\",\n \"transaction_wire_additional\": \"<string>\",\n \"info_for_receiver\": \"<string>\",\n \"line_1\": \"<string>\",\n \"line_2\": \"<string>\",\n \"line_3\": \"<string>\",\n \"line_4\": \"<string>\",\n \"participant_unique_ids\": \"<string>\",\n \"participant_unique_id1\": \"<string>\",\n \"participant_unique_id2\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"source_of_funds\": \"<string>\",\n \"recipient_phone\": \"<string>\",\n \"ledger\": \"<string>\",\n \"api_key\": \"<string>\",\n \"user_id\": \"<string>\",\n \"entity_type\": \"<string>\",\n \"entity_id\": \"<string>\",\n \"response\": \"<string>\",\n \"status\": \"<string>\",\n \"message\": \"<string>\",\n \"duration\": \"<string>\",\n \"transaction_id\": \"<string>\",\n \"estimated_posting_time\": \"<string>\",\n \"estimated_posting_date\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox-api.ingomoney.com/gateway/v12/debit/process--wire")
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 \"transaction\": \"<string>\",\n \"account_type\": \"<string>\",\n \"transaction_amount\": \"<string>\",\n \"currency_code\": \"<string>\",\n \"amount\": \"<string>\",\n \"transaction_wire_additional\": \"<string>\",\n \"info_for_receiver\": \"<string>\",\n \"line_1\": \"<string>\",\n \"line_2\": \"<string>\",\n \"line_3\": \"<string>\",\n \"line_4\": \"<string>\",\n \"participant_unique_ids\": \"<string>\",\n \"participant_unique_id1\": \"<string>\",\n \"participant_unique_id2\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"source_of_funds\": \"<string>\",\n \"recipient_phone\": \"<string>\",\n \"ledger\": \"<string>\",\n \"api_key\": \"<string>\",\n \"user_id\": \"<string>\",\n \"entity_type\": \"<string>\",\n \"entity_id\": \"<string>\",\n \"response\": \"<string>\",\n \"status\": \"<string>\",\n \"message\": \"<string>\",\n \"duration\": \"<string>\",\n \"transaction_id\": \"<string>\",\n \"estimated_posting_time\": \"<string>\",\n \"estimated_posting_date\": \"<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
Wire drawdown (pull) request.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
OPTIONAL
REQUIRED
REQUIRED
OPTIONAL
REQUIRED
REQUIRED
OPTIONAL
OPTIONAL
OPTIONAL
REQUIRED
REQUIRED
OPTIONAL
REQUIRED
REQUIRED
OPTIONAL
CONDITIONAL
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
⌘I
Pull Funds via Wire Drawdown
curl --request POST \
--url https://sandbox-api.ingomoney.com/gateway/v12/debit/process--wire \
--header 'Content-Type: application/json' \
--data '
{
"request": "<string>",
"participant_id": "<string>",
"timestamp": "<string>",
"transaction": "<string>",
"account_type": "<string>",
"transaction_amount": "<string>",
"currency_code": "<string>",
"amount": "<string>",
"transaction_wire_additional": "<string>",
"info_for_receiver": "<string>",
"line_1": "<string>",
"line_2": "<string>",
"line_3": "<string>",
"line_4": "<string>",
"participant_unique_ids": "<string>",
"participant_unique_id1": "<string>",
"participant_unique_id2": "<string>",
"customer_account_token": "<string>",
"source_of_funds": "<string>",
"recipient_phone": "<string>",
"ledger": "<string>",
"api_key": "<string>",
"user_id": "<string>",
"entity_type": "<string>",
"entity_id": "<string>",
"response": "<string>",
"status": "<string>",
"message": "<string>",
"duration": "<string>",
"transaction_id": "<string>",
"estimated_posting_time": "<string>",
"estimated_posting_date": "<string>"
}
'import requests
url = "https://sandbox-api.ingomoney.com/gateway/v12/debit/process--wire"
payload = {
"request": "<string>",
"participant_id": "<string>",
"timestamp": "<string>",
"transaction": "<string>",
"account_type": "<string>",
"transaction_amount": "<string>",
"currency_code": "<string>",
"amount": "<string>",
"transaction_wire_additional": "<string>",
"info_for_receiver": "<string>",
"line_1": "<string>",
"line_2": "<string>",
"line_3": "<string>",
"line_4": "<string>",
"participant_unique_ids": "<string>",
"participant_unique_id1": "<string>",
"participant_unique_id2": "<string>",
"customer_account_token": "<string>",
"source_of_funds": "<string>",
"recipient_phone": "<string>",
"ledger": "<string>",
"api_key": "<string>",
"user_id": "<string>",
"entity_type": "<string>",
"entity_id": "<string>",
"response": "<string>",
"status": "<string>",
"message": "<string>",
"duration": "<string>",
"transaction_id": "<string>",
"estimated_posting_time": "<string>",
"estimated_posting_date": "<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>',
transaction: '<string>',
account_type: '<string>',
transaction_amount: '<string>',
currency_code: '<string>',
amount: '<string>',
transaction_wire_additional: '<string>',
info_for_receiver: '<string>',
line_1: '<string>',
line_2: '<string>',
line_3: '<string>',
line_4: '<string>',
participant_unique_ids: '<string>',
participant_unique_id1: '<string>',
participant_unique_id2: '<string>',
customer_account_token: '<string>',
source_of_funds: '<string>',
recipient_phone: '<string>',
ledger: '<string>',
api_key: '<string>',
user_id: '<string>',
entity_type: '<string>',
entity_id: '<string>',
response: '<string>',
status: '<string>',
message: '<string>',
duration: '<string>',
transaction_id: '<string>',
estimated_posting_time: '<string>',
estimated_posting_date: '<string>'
})
};
fetch('https://sandbox-api.ingomoney.com/gateway/v12/debit/process--wire', 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/v12/debit/process--wire",
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>',
'transaction' => '<string>',
'account_type' => '<string>',
'transaction_amount' => '<string>',
'currency_code' => '<string>',
'amount' => '<string>',
'transaction_wire_additional' => '<string>',
'info_for_receiver' => '<string>',
'line_1' => '<string>',
'line_2' => '<string>',
'line_3' => '<string>',
'line_4' => '<string>',
'participant_unique_ids' => '<string>',
'participant_unique_id1' => '<string>',
'participant_unique_id2' => '<string>',
'customer_account_token' => '<string>',
'source_of_funds' => '<string>',
'recipient_phone' => '<string>',
'ledger' => '<string>',
'api_key' => '<string>',
'user_id' => '<string>',
'entity_type' => '<string>',
'entity_id' => '<string>',
'response' => '<string>',
'status' => '<string>',
'message' => '<string>',
'duration' => '<string>',
'transaction_id' => '<string>',
'estimated_posting_time' => '<string>',
'estimated_posting_date' => '<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/v12/debit/process--wire"
payload := strings.NewReader("{\n \"request\": \"<string>\",\n \"participant_id\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"transaction\": \"<string>\",\n \"account_type\": \"<string>\",\n \"transaction_amount\": \"<string>\",\n \"currency_code\": \"<string>\",\n \"amount\": \"<string>\",\n \"transaction_wire_additional\": \"<string>\",\n \"info_for_receiver\": \"<string>\",\n \"line_1\": \"<string>\",\n \"line_2\": \"<string>\",\n \"line_3\": \"<string>\",\n \"line_4\": \"<string>\",\n \"participant_unique_ids\": \"<string>\",\n \"participant_unique_id1\": \"<string>\",\n \"participant_unique_id2\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"source_of_funds\": \"<string>\",\n \"recipient_phone\": \"<string>\",\n \"ledger\": \"<string>\",\n \"api_key\": \"<string>\",\n \"user_id\": \"<string>\",\n \"entity_type\": \"<string>\",\n \"entity_id\": \"<string>\",\n \"response\": \"<string>\",\n \"status\": \"<string>\",\n \"message\": \"<string>\",\n \"duration\": \"<string>\",\n \"transaction_id\": \"<string>\",\n \"estimated_posting_time\": \"<string>\",\n \"estimated_posting_date\": \"<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/v12/debit/process--wire")
.header("Content-Type", "application/json")
.body("{\n \"request\": \"<string>\",\n \"participant_id\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"transaction\": \"<string>\",\n \"account_type\": \"<string>\",\n \"transaction_amount\": \"<string>\",\n \"currency_code\": \"<string>\",\n \"amount\": \"<string>\",\n \"transaction_wire_additional\": \"<string>\",\n \"info_for_receiver\": \"<string>\",\n \"line_1\": \"<string>\",\n \"line_2\": \"<string>\",\n \"line_3\": \"<string>\",\n \"line_4\": \"<string>\",\n \"participant_unique_ids\": \"<string>\",\n \"participant_unique_id1\": \"<string>\",\n \"participant_unique_id2\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"source_of_funds\": \"<string>\",\n \"recipient_phone\": \"<string>\",\n \"ledger\": \"<string>\",\n \"api_key\": \"<string>\",\n \"user_id\": \"<string>\",\n \"entity_type\": \"<string>\",\n \"entity_id\": \"<string>\",\n \"response\": \"<string>\",\n \"status\": \"<string>\",\n \"message\": \"<string>\",\n \"duration\": \"<string>\",\n \"transaction_id\": \"<string>\",\n \"estimated_posting_time\": \"<string>\",\n \"estimated_posting_date\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox-api.ingomoney.com/gateway/v12/debit/process--wire")
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 \"transaction\": \"<string>\",\n \"account_type\": \"<string>\",\n \"transaction_amount\": \"<string>\",\n \"currency_code\": \"<string>\",\n \"amount\": \"<string>\",\n \"transaction_wire_additional\": \"<string>\",\n \"info_for_receiver\": \"<string>\",\n \"line_1\": \"<string>\",\n \"line_2\": \"<string>\",\n \"line_3\": \"<string>\",\n \"line_4\": \"<string>\",\n \"participant_unique_ids\": \"<string>\",\n \"participant_unique_id1\": \"<string>\",\n \"participant_unique_id2\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"source_of_funds\": \"<string>\",\n \"recipient_phone\": \"<string>\",\n \"ledger\": \"<string>\",\n \"api_key\": \"<string>\",\n \"user_id\": \"<string>\",\n \"entity_type\": \"<string>\",\n \"entity_id\": \"<string>\",\n \"response\": \"<string>\",\n \"status\": \"<string>\",\n \"message\": \"<string>\",\n \"duration\": \"<string>\",\n \"transaction_id\": \"<string>\",\n \"estimated_posting_time\": \"<string>\",\n \"estimated_posting_date\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": 100,
"client_message": "Success",
"data": {},
"time": "0.85"
}