curl --request POST \
--url https://api.treasuryprime.com/apply/deposit \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"ach": {
"account_number": "98765432109",
"account_type": "checking",
"routing_number": "123456789"
},
"amount": "100.00",
"name_on_account": "George Washington"
}
'import requests
url = "https://api.treasuryprime.com/apply/deposit"
payload = {
"ach": {
"account_number": "98765432109",
"account_type": "checking",
"routing_number": "123456789"
},
"amount": "100.00",
"name_on_account": "George Washington"
}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
ach: {
account_number: '98765432109',
account_type: 'checking',
routing_number: '123456789'
},
amount: '100.00',
name_on_account: 'George Washington'
})
};
fetch('https://api.treasuryprime.com/apply/deposit', 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://api.treasuryprime.com/apply/deposit",
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([
'ach' => [
'account_number' => '98765432109',
'account_type' => 'checking',
'routing_number' => '123456789'
],
'amount' => '100.00',
'name_on_account' => 'George Washington'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"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://api.treasuryprime.com/apply/deposit"
payload := strings.NewReader("{\n \"ach\": {\n \"account_number\": \"98765432109\",\n \"account_type\": \"checking\",\n \"routing_number\": \"123456789\"\n },\n \"amount\": \"100.00\",\n \"name_on_account\": \"George Washington\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Basic <encoded-value>")
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://api.treasuryprime.com/apply/deposit")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"ach\": {\n \"account_number\": \"98765432109\",\n \"account_type\": \"checking\",\n \"routing_number\": \"123456789\"\n },\n \"amount\": \"100.00\",\n \"name_on_account\": \"George Washington\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.treasuryprime.com/apply/deposit")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"ach\": {\n \"account_number\": \"98765432109\",\n \"account_type\": \"checking\",\n \"routing_number\": \"123456789\"\n },\n \"amount\": \"100.00\",\n \"name_on_account\": \"George Washington\"\n}"
response = http.request(request)
puts response.read_body{
"ach": {
"account_type": "checking",
"last4": "2109",
"routing_number": "123456789"
},
"amount": "100.00",
"card": null,
"card_token": null,
"created_at": "2019-03-02T11:53:55Z",
"id": "adpt_01d5wcysg3vz",
"name_on_account": "George Washington",
"updated_at": "2019-03-02T11:53:55Z",
"userdata": null
}Create a Deposit
curl --request POST \
--url https://api.treasuryprime.com/apply/deposit \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"ach": {
"account_number": "98765432109",
"account_type": "checking",
"routing_number": "123456789"
},
"amount": "100.00",
"name_on_account": "George Washington"
}
'import requests
url = "https://api.treasuryprime.com/apply/deposit"
payload = {
"ach": {
"account_number": "98765432109",
"account_type": "checking",
"routing_number": "123456789"
},
"amount": "100.00",
"name_on_account": "George Washington"
}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
ach: {
account_number: '98765432109',
account_type: 'checking',
routing_number: '123456789'
},
amount: '100.00',
name_on_account: 'George Washington'
})
};
fetch('https://api.treasuryprime.com/apply/deposit', 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://api.treasuryprime.com/apply/deposit",
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([
'ach' => [
'account_number' => '98765432109',
'account_type' => 'checking',
'routing_number' => '123456789'
],
'amount' => '100.00',
'name_on_account' => 'George Washington'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"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://api.treasuryprime.com/apply/deposit"
payload := strings.NewReader("{\n \"ach\": {\n \"account_number\": \"98765432109\",\n \"account_type\": \"checking\",\n \"routing_number\": \"123456789\"\n },\n \"amount\": \"100.00\",\n \"name_on_account\": \"George Washington\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Basic <encoded-value>")
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://api.treasuryprime.com/apply/deposit")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"ach\": {\n \"account_number\": \"98765432109\",\n \"account_type\": \"checking\",\n \"routing_number\": \"123456789\"\n },\n \"amount\": \"100.00\",\n \"name_on_account\": \"George Washington\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.treasuryprime.com/apply/deposit")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"ach\": {\n \"account_number\": \"98765432109\",\n \"account_type\": \"checking\",\n \"routing_number\": \"123456789\"\n },\n \"amount\": \"100.00\",\n \"name_on_account\": \"George Washington\"\n}"
response = http.request(request)
puts response.read_body{
"ach": {
"account_type": "checking",
"last4": "2109",
"routing_number": "123456789"
},
"amount": "100.00",
"card": null,
"card_token": null,
"created_at": "2019-03-02T11:53:55Z",
"id": "adpt_01d5wcysg3vz",
"name_on_account": "George Washington",
"updated_at": "2019-03-02T11:53:55Z",
"userdata": null
}Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
The apply.deposit to create
Amount of money to transfer
^-?[0-9]+[.][0-9][0-9]$Name of the owner of the account providing the deposit
ACH payment instructions
Show child attributes
Show child attributes
Debit card payment instructions
Tokenized debit card payment instructions
Show child attributes
Show child attributes
Arbitrary data the user can attach to the object
Response
The apply.deposit created
ACH payment instructions
Show child attributes
Show child attributes
Amount of money to transfer
^-?[0-9]+[.][0-9][0-9]$Debit card payment instructions
Show child attributes
Show child attributes
Tokenized debit card payment instructions
Show child attributes
Show child attributes
Unique identifier for object
Name of the owner of the account providing the deposit
Arbitrary data the user can attach to the object
Was this page helpful?