Tokenize a Wire Transfer Account
Validate and tokenize a wire transfer account for use in subsequent Debit requests.
curl --request POST \
--url https://sandbox-api.ingomoney.com/gateway/verify--wire \
--header 'Content-Type: application/json' \
--data '
{
"participant_id": 123,
"account_type": "<string>",
"customer_account_token": "<string>",
"amount": 123,
"recipient_first_name": "<string>",
"recipient_last_name": "<string>",
"recipient_business_name": "<string>",
"recipient_address1": "<string>",
"recipient_address2": "<string>",
"recipient_city": "<string>",
"recipient_state": "<string>",
"recipient_zip": "<string>",
"recipient_phone": 123,
"account": "<string>",
"routing_number": "<string>",
"participant_unique_id1": "<string>",
"participant_unique_id2": "<string>",
"timestamp": 123,
"version": 123,
"status": 123,
"client_message": "<string>",
"data": {},
"last_4": "<string>",
"request_timestamp": 123,
"issuers": {},
"payee_id": "<string>",
"payee_name": "<string>",
"payee_address": "<string>",
"payee_city": "<string>",
"payee_state": "<string>",
"payee_zip": "<string>",
"credit_info": {},
"min": "<string>",
"max": "<string>",
"card_type": "<string>",
"estimated_posting_time": "<string>",
"estimated_posting_date": "<string>",
"debit_info": "<string>",
"issuing_network": "<string>",
"credit_enabled": 123,
"debit_enabled": 123,
"count": 123,
"time": "<string>"
}
'import requests
url = "https://sandbox-api.ingomoney.com/gateway/verify--wire"
payload = {
"participant_id": 123,
"account_type": "<string>",
"customer_account_token": "<string>",
"amount": 123,
"recipient_first_name": "<string>",
"recipient_last_name": "<string>",
"recipient_business_name": "<string>",
"recipient_address1": "<string>",
"recipient_address2": "<string>",
"recipient_city": "<string>",
"recipient_state": "<string>",
"recipient_zip": "<string>",
"recipient_phone": 123,
"account": "<string>",
"routing_number": "<string>",
"participant_unique_id1": "<string>",
"participant_unique_id2": "<string>",
"timestamp": 123,
"version": 123,
"status": 123,
"client_message": "<string>",
"data": {},
"last_4": "<string>",
"request_timestamp": 123,
"issuers": {},
"payee_id": "<string>",
"payee_name": "<string>",
"payee_address": "<string>",
"payee_city": "<string>",
"payee_state": "<string>",
"payee_zip": "<string>",
"credit_info": {},
"min": "<string>",
"max": "<string>",
"card_type": "<string>",
"estimated_posting_time": "<string>",
"estimated_posting_date": "<string>",
"debit_info": "<string>",
"issuing_network": "<string>",
"credit_enabled": 123,
"debit_enabled": 123,
"count": 123,
"time": "<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({
participant_id: 123,
account_type: '<string>',
customer_account_token: '<string>',
amount: 123,
recipient_first_name: '<string>',
recipient_last_name: '<string>',
recipient_business_name: '<string>',
recipient_address1: '<string>',
recipient_address2: '<string>',
recipient_city: '<string>',
recipient_state: '<string>',
recipient_zip: '<string>',
recipient_phone: 123,
account: '<string>',
routing_number: '<string>',
participant_unique_id1: '<string>',
participant_unique_id2: '<string>',
timestamp: 123,
version: 123,
status: 123,
client_message: '<string>',
data: {},
last_4: '<string>',
request_timestamp: 123,
issuers: {},
payee_id: '<string>',
payee_name: '<string>',
payee_address: '<string>',
payee_city: '<string>',
payee_state: '<string>',
payee_zip: '<string>',
credit_info: {},
min: '<string>',
max: '<string>',
card_type: '<string>',
estimated_posting_time: '<string>',
estimated_posting_date: '<string>',
debit_info: '<string>',
issuing_network: '<string>',
credit_enabled: 123,
debit_enabled: 123,
count: 123,
time: '<string>'
})
};
fetch('https://sandbox-api.ingomoney.com/gateway/verify--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/verify--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([
'participant_id' => 123,
'account_type' => '<string>',
'customer_account_token' => '<string>',
'amount' => 123,
'recipient_first_name' => '<string>',
'recipient_last_name' => '<string>',
'recipient_business_name' => '<string>',
'recipient_address1' => '<string>',
'recipient_address2' => '<string>',
'recipient_city' => '<string>',
'recipient_state' => '<string>',
'recipient_zip' => '<string>',
'recipient_phone' => 123,
'account' => '<string>',
'routing_number' => '<string>',
'participant_unique_id1' => '<string>',
'participant_unique_id2' => '<string>',
'timestamp' => 123,
'version' => 123,
'status' => 123,
'client_message' => '<string>',
'data' => [
],
'last_4' => '<string>',
'request_timestamp' => 123,
'issuers' => [
],
'payee_id' => '<string>',
'payee_name' => '<string>',
'payee_address' => '<string>',
'payee_city' => '<string>',
'payee_state' => '<string>',
'payee_zip' => '<string>',
'credit_info' => [
],
'min' => '<string>',
'max' => '<string>',
'card_type' => '<string>',
'estimated_posting_time' => '<string>',
'estimated_posting_date' => '<string>',
'debit_info' => '<string>',
'issuing_network' => '<string>',
'credit_enabled' => 123,
'debit_enabled' => 123,
'count' => 123,
'time' => '<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--wire"
payload := strings.NewReader("{\n \"participant_id\": 123,\n \"account_type\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"amount\": 123,\n \"recipient_first_name\": \"<string>\",\n \"recipient_last_name\": \"<string>\",\n \"recipient_business_name\": \"<string>\",\n \"recipient_address1\": \"<string>\",\n \"recipient_address2\": \"<string>\",\n \"recipient_city\": \"<string>\",\n \"recipient_state\": \"<string>\",\n \"recipient_zip\": \"<string>\",\n \"recipient_phone\": 123,\n \"account\": \"<string>\",\n \"routing_number\": \"<string>\",\n \"participant_unique_id1\": \"<string>\",\n \"participant_unique_id2\": \"<string>\",\n \"timestamp\": 123,\n \"version\": 123,\n \"status\": 123,\n \"client_message\": \"<string>\",\n \"data\": {},\n \"last_4\": \"<string>\",\n \"request_timestamp\": 123,\n \"issuers\": {},\n \"payee_id\": \"<string>\",\n \"payee_name\": \"<string>\",\n \"payee_address\": \"<string>\",\n \"payee_city\": \"<string>\",\n \"payee_state\": \"<string>\",\n \"payee_zip\": \"<string>\",\n \"credit_info\": {},\n \"min\": \"<string>\",\n \"max\": \"<string>\",\n \"card_type\": \"<string>\",\n \"estimated_posting_time\": \"<string>\",\n \"estimated_posting_date\": \"<string>\",\n \"debit_info\": \"<string>\",\n \"issuing_network\": \"<string>\",\n \"credit_enabled\": 123,\n \"debit_enabled\": 123,\n \"count\": 123,\n \"time\": \"<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--wire")
.header("Content-Type", "application/json")
.body("{\n \"participant_id\": 123,\n \"account_type\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"amount\": 123,\n \"recipient_first_name\": \"<string>\",\n \"recipient_last_name\": \"<string>\",\n \"recipient_business_name\": \"<string>\",\n \"recipient_address1\": \"<string>\",\n \"recipient_address2\": \"<string>\",\n \"recipient_city\": \"<string>\",\n \"recipient_state\": \"<string>\",\n \"recipient_zip\": \"<string>\",\n \"recipient_phone\": 123,\n \"account\": \"<string>\",\n \"routing_number\": \"<string>\",\n \"participant_unique_id1\": \"<string>\",\n \"participant_unique_id2\": \"<string>\",\n \"timestamp\": 123,\n \"version\": 123,\n \"status\": 123,\n \"client_message\": \"<string>\",\n \"data\": {},\n \"last_4\": \"<string>\",\n \"request_timestamp\": 123,\n \"issuers\": {},\n \"payee_id\": \"<string>\",\n \"payee_name\": \"<string>\",\n \"payee_address\": \"<string>\",\n \"payee_city\": \"<string>\",\n \"payee_state\": \"<string>\",\n \"payee_zip\": \"<string>\",\n \"credit_info\": {},\n \"min\": \"<string>\",\n \"max\": \"<string>\",\n \"card_type\": \"<string>\",\n \"estimated_posting_time\": \"<string>\",\n \"estimated_posting_date\": \"<string>\",\n \"debit_info\": \"<string>\",\n \"issuing_network\": \"<string>\",\n \"credit_enabled\": 123,\n \"debit_enabled\": 123,\n \"count\": 123,\n \"time\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox-api.ingomoney.com/gateway/verify--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 \"participant_id\": 123,\n \"account_type\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"amount\": 123,\n \"recipient_first_name\": \"<string>\",\n \"recipient_last_name\": \"<string>\",\n \"recipient_business_name\": \"<string>\",\n \"recipient_address1\": \"<string>\",\n \"recipient_address2\": \"<string>\",\n \"recipient_city\": \"<string>\",\n \"recipient_state\": \"<string>\",\n \"recipient_zip\": \"<string>\",\n \"recipient_phone\": 123,\n \"account\": \"<string>\",\n \"routing_number\": \"<string>\",\n \"participant_unique_id1\": \"<string>\",\n \"participant_unique_id2\": \"<string>\",\n \"timestamp\": 123,\n \"version\": 123,\n \"status\": 123,\n \"client_message\": \"<string>\",\n \"data\": {},\n \"last_4\": \"<string>\",\n \"request_timestamp\": 123,\n \"issuers\": {},\n \"payee_id\": \"<string>\",\n \"payee_name\": \"<string>\",\n \"payee_address\": \"<string>\",\n \"payee_city\": \"<string>\",\n \"payee_state\": \"<string>\",\n \"payee_zip\": \"<string>\",\n \"credit_info\": {},\n \"min\": \"<string>\",\n \"max\": \"<string>\",\n \"card_type\": \"<string>\",\n \"estimated_posting_time\": \"<string>\",\n \"estimated_posting_date\": \"<string>\",\n \"debit_info\": \"<string>\",\n \"issuing_network\": \"<string>\",\n \"credit_enabled\": 123,\n \"debit_enabled\": 123,\n \"count\": 123,\n \"time\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": 100,
"client_message": "Success",
"data": {
"customer_account_token": "tok-wire-001"
},
"time": "0.85"
}Body
Wire transfer account tokenization request.
Unique participant identifier assigned by Ingo.
Value should be set to ‘WT’.
2customer_account_token
Amount of disbursement. Max value determined by participant velocity limits.
Recipient first name. Not required if a valid customer_account_token is provided.
255Recipient last name. Not required if a valid customer_account_token is provided.
255Optional recipient business name.
150Recipient address 1. Not required if a valid customer_account_token is provided.
255Recipient address 2.
255Recipient city. Not required if a valid customer_account_token is provided.
255Recipient state (standard postal abbreviation). Not required if a valid customer_account_token is provided.
2Recipient zip (5-digit zip or 10-digit zip plus 4 in xxxxx-xxxx format). Not required if a valid customer_account_token is provided.
1010-digit recipient phone.
Account number. Not required if a valid customer_account_token is provided.
255Bank routing number associated with the account number.
9participant_unique_id1
participant_unique_id2
Unix timestamp.
Current version is: 11
status
client_message
data
last_4
request_timestamp
issuers
payee_id
payee_name
payee_address
payee_city
payee_state
payee_zip
credit_info
min
max
card_type
estimated_posting_time
estimated_posting_date
debit_info
issuing_network
credit_enabled
debit_enabled
count
time
Response
Successful tokenization response.
curl --request POST \
--url https://sandbox-api.ingomoney.com/gateway/verify--wire \
--header 'Content-Type: application/json' \
--data '
{
"participant_id": 123,
"account_type": "<string>",
"customer_account_token": "<string>",
"amount": 123,
"recipient_first_name": "<string>",
"recipient_last_name": "<string>",
"recipient_business_name": "<string>",
"recipient_address1": "<string>",
"recipient_address2": "<string>",
"recipient_city": "<string>",
"recipient_state": "<string>",
"recipient_zip": "<string>",
"recipient_phone": 123,
"account": "<string>",
"routing_number": "<string>",
"participant_unique_id1": "<string>",
"participant_unique_id2": "<string>",
"timestamp": 123,
"version": 123,
"status": 123,
"client_message": "<string>",
"data": {},
"last_4": "<string>",
"request_timestamp": 123,
"issuers": {},
"payee_id": "<string>",
"payee_name": "<string>",
"payee_address": "<string>",
"payee_city": "<string>",
"payee_state": "<string>",
"payee_zip": "<string>",
"credit_info": {},
"min": "<string>",
"max": "<string>",
"card_type": "<string>",
"estimated_posting_time": "<string>",
"estimated_posting_date": "<string>",
"debit_info": "<string>",
"issuing_network": "<string>",
"credit_enabled": 123,
"debit_enabled": 123,
"count": 123,
"time": "<string>"
}
'import requests
url = "https://sandbox-api.ingomoney.com/gateway/verify--wire"
payload = {
"participant_id": 123,
"account_type": "<string>",
"customer_account_token": "<string>",
"amount": 123,
"recipient_first_name": "<string>",
"recipient_last_name": "<string>",
"recipient_business_name": "<string>",
"recipient_address1": "<string>",
"recipient_address2": "<string>",
"recipient_city": "<string>",
"recipient_state": "<string>",
"recipient_zip": "<string>",
"recipient_phone": 123,
"account": "<string>",
"routing_number": "<string>",
"participant_unique_id1": "<string>",
"participant_unique_id2": "<string>",
"timestamp": 123,
"version": 123,
"status": 123,
"client_message": "<string>",
"data": {},
"last_4": "<string>",
"request_timestamp": 123,
"issuers": {},
"payee_id": "<string>",
"payee_name": "<string>",
"payee_address": "<string>",
"payee_city": "<string>",
"payee_state": "<string>",
"payee_zip": "<string>",
"credit_info": {},
"min": "<string>",
"max": "<string>",
"card_type": "<string>",
"estimated_posting_time": "<string>",
"estimated_posting_date": "<string>",
"debit_info": "<string>",
"issuing_network": "<string>",
"credit_enabled": 123,
"debit_enabled": 123,
"count": 123,
"time": "<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({
participant_id: 123,
account_type: '<string>',
customer_account_token: '<string>',
amount: 123,
recipient_first_name: '<string>',
recipient_last_name: '<string>',
recipient_business_name: '<string>',
recipient_address1: '<string>',
recipient_address2: '<string>',
recipient_city: '<string>',
recipient_state: '<string>',
recipient_zip: '<string>',
recipient_phone: 123,
account: '<string>',
routing_number: '<string>',
participant_unique_id1: '<string>',
participant_unique_id2: '<string>',
timestamp: 123,
version: 123,
status: 123,
client_message: '<string>',
data: {},
last_4: '<string>',
request_timestamp: 123,
issuers: {},
payee_id: '<string>',
payee_name: '<string>',
payee_address: '<string>',
payee_city: '<string>',
payee_state: '<string>',
payee_zip: '<string>',
credit_info: {},
min: '<string>',
max: '<string>',
card_type: '<string>',
estimated_posting_time: '<string>',
estimated_posting_date: '<string>',
debit_info: '<string>',
issuing_network: '<string>',
credit_enabled: 123,
debit_enabled: 123,
count: 123,
time: '<string>'
})
};
fetch('https://sandbox-api.ingomoney.com/gateway/verify--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/verify--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([
'participant_id' => 123,
'account_type' => '<string>',
'customer_account_token' => '<string>',
'amount' => 123,
'recipient_first_name' => '<string>',
'recipient_last_name' => '<string>',
'recipient_business_name' => '<string>',
'recipient_address1' => '<string>',
'recipient_address2' => '<string>',
'recipient_city' => '<string>',
'recipient_state' => '<string>',
'recipient_zip' => '<string>',
'recipient_phone' => 123,
'account' => '<string>',
'routing_number' => '<string>',
'participant_unique_id1' => '<string>',
'participant_unique_id2' => '<string>',
'timestamp' => 123,
'version' => 123,
'status' => 123,
'client_message' => '<string>',
'data' => [
],
'last_4' => '<string>',
'request_timestamp' => 123,
'issuers' => [
],
'payee_id' => '<string>',
'payee_name' => '<string>',
'payee_address' => '<string>',
'payee_city' => '<string>',
'payee_state' => '<string>',
'payee_zip' => '<string>',
'credit_info' => [
],
'min' => '<string>',
'max' => '<string>',
'card_type' => '<string>',
'estimated_posting_time' => '<string>',
'estimated_posting_date' => '<string>',
'debit_info' => '<string>',
'issuing_network' => '<string>',
'credit_enabled' => 123,
'debit_enabled' => 123,
'count' => 123,
'time' => '<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--wire"
payload := strings.NewReader("{\n \"participant_id\": 123,\n \"account_type\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"amount\": 123,\n \"recipient_first_name\": \"<string>\",\n \"recipient_last_name\": \"<string>\",\n \"recipient_business_name\": \"<string>\",\n \"recipient_address1\": \"<string>\",\n \"recipient_address2\": \"<string>\",\n \"recipient_city\": \"<string>\",\n \"recipient_state\": \"<string>\",\n \"recipient_zip\": \"<string>\",\n \"recipient_phone\": 123,\n \"account\": \"<string>\",\n \"routing_number\": \"<string>\",\n \"participant_unique_id1\": \"<string>\",\n \"participant_unique_id2\": \"<string>\",\n \"timestamp\": 123,\n \"version\": 123,\n \"status\": 123,\n \"client_message\": \"<string>\",\n \"data\": {},\n \"last_4\": \"<string>\",\n \"request_timestamp\": 123,\n \"issuers\": {},\n \"payee_id\": \"<string>\",\n \"payee_name\": \"<string>\",\n \"payee_address\": \"<string>\",\n \"payee_city\": \"<string>\",\n \"payee_state\": \"<string>\",\n \"payee_zip\": \"<string>\",\n \"credit_info\": {},\n \"min\": \"<string>\",\n \"max\": \"<string>\",\n \"card_type\": \"<string>\",\n \"estimated_posting_time\": \"<string>\",\n \"estimated_posting_date\": \"<string>\",\n \"debit_info\": \"<string>\",\n \"issuing_network\": \"<string>\",\n \"credit_enabled\": 123,\n \"debit_enabled\": 123,\n \"count\": 123,\n \"time\": \"<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--wire")
.header("Content-Type", "application/json")
.body("{\n \"participant_id\": 123,\n \"account_type\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"amount\": 123,\n \"recipient_first_name\": \"<string>\",\n \"recipient_last_name\": \"<string>\",\n \"recipient_business_name\": \"<string>\",\n \"recipient_address1\": \"<string>\",\n \"recipient_address2\": \"<string>\",\n \"recipient_city\": \"<string>\",\n \"recipient_state\": \"<string>\",\n \"recipient_zip\": \"<string>\",\n \"recipient_phone\": 123,\n \"account\": \"<string>\",\n \"routing_number\": \"<string>\",\n \"participant_unique_id1\": \"<string>\",\n \"participant_unique_id2\": \"<string>\",\n \"timestamp\": 123,\n \"version\": 123,\n \"status\": 123,\n \"client_message\": \"<string>\",\n \"data\": {},\n \"last_4\": \"<string>\",\n \"request_timestamp\": 123,\n \"issuers\": {},\n \"payee_id\": \"<string>\",\n \"payee_name\": \"<string>\",\n \"payee_address\": \"<string>\",\n \"payee_city\": \"<string>\",\n \"payee_state\": \"<string>\",\n \"payee_zip\": \"<string>\",\n \"credit_info\": {},\n \"min\": \"<string>\",\n \"max\": \"<string>\",\n \"card_type\": \"<string>\",\n \"estimated_posting_time\": \"<string>\",\n \"estimated_posting_date\": \"<string>\",\n \"debit_info\": \"<string>\",\n \"issuing_network\": \"<string>\",\n \"credit_enabled\": 123,\n \"debit_enabled\": 123,\n \"count\": 123,\n \"time\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox-api.ingomoney.com/gateway/verify--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 \"participant_id\": 123,\n \"account_type\": \"<string>\",\n \"customer_account_token\": \"<string>\",\n \"amount\": 123,\n \"recipient_first_name\": \"<string>\",\n \"recipient_last_name\": \"<string>\",\n \"recipient_business_name\": \"<string>\",\n \"recipient_address1\": \"<string>\",\n \"recipient_address2\": \"<string>\",\n \"recipient_city\": \"<string>\",\n \"recipient_state\": \"<string>\",\n \"recipient_zip\": \"<string>\",\n \"recipient_phone\": 123,\n \"account\": \"<string>\",\n \"routing_number\": \"<string>\",\n \"participant_unique_id1\": \"<string>\",\n \"participant_unique_id2\": \"<string>\",\n \"timestamp\": 123,\n \"version\": 123,\n \"status\": 123,\n \"client_message\": \"<string>\",\n \"data\": {},\n \"last_4\": \"<string>\",\n \"request_timestamp\": 123,\n \"issuers\": {},\n \"payee_id\": \"<string>\",\n \"payee_name\": \"<string>\",\n \"payee_address\": \"<string>\",\n \"payee_city\": \"<string>\",\n \"payee_state\": \"<string>\",\n \"payee_zip\": \"<string>\",\n \"credit_info\": {},\n \"min\": \"<string>\",\n \"max\": \"<string>\",\n \"card_type\": \"<string>\",\n \"estimated_posting_time\": \"<string>\",\n \"estimated_posting_date\": \"<string>\",\n \"debit_info\": \"<string>\",\n \"issuing_network\": \"<string>\",\n \"credit_enabled\": 123,\n \"debit_enabled\": 123,\n \"count\": 123,\n \"time\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": 100,
"client_message": "Success",
"data": {
"customer_account_token": "tok-wire-001"
},
"time": "0.85"
}