curl --request PATCH \
--url https://api.sandbox.iron.xyz/api/autoramps/{autoramp_id} \
--header 'Content-Type: application/json; charset=utf-8' \
--header 'X-API-Key: <api-key>' \
--data '
{
"customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"destination_currency": {
"blockchain": "Solana",
"token": "USDC"
},
"fee_profile_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"recipient_account": {
"type": "Fiat",
"account_identifier": {
"iban": "DE89370400440532013000"
}
}
}
'import requests
url = "https://api.sandbox.iron.xyz/api/autoramps/{autoramp_id}"
payload = {
"customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"destination_currency": {
"blockchain": "Solana",
"token": "USDC"
},
"fee_profile_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"recipient_account": {
"type": "Fiat",
"account_identifier": { "iban": "DE89370400440532013000" }
}
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json; charset=utf-8"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json; charset=utf-8'},
body: JSON.stringify({
customer_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
destination_currency: {blockchain: 'Solana', token: 'USDC'},
fee_profile_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
recipient_account: {type: 'Fiat', account_identifier: {iban: 'DE89370400440532013000'}}
})
};
fetch('https://api.sandbox.iron.xyz/api/autoramps/{autoramp_id}', 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.sandbox.iron.xyz/api/autoramps/{autoramp_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'customer_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'destination_currency' => [
'blockchain' => 'Solana',
'token' => 'USDC'
],
'fee_profile_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'recipient_account' => [
'type' => 'Fiat',
'account_identifier' => [
'iban' => 'DE89370400440532013000'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json; charset=utf-8",
"X-API-Key: <api-key>"
],
]);
$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.sandbox.iron.xyz/api/autoramps/{autoramp_id}"
payload := strings.NewReader("{\n \"customer_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"destination_currency\": {\n \"blockchain\": \"Solana\",\n \"token\": \"USDC\"\n },\n \"fee_profile_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"recipient_account\": {\n \"type\": \"Fiat\",\n \"account_identifier\": {\n \"iban\": \"DE89370400440532013000\"\n }\n }\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json; charset=utf-8")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.sandbox.iron.xyz/api/autoramps/{autoramp_id}")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json; charset=utf-8")
.body("{\n \"customer_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"destination_currency\": {\n \"blockchain\": \"Solana\",\n \"token\": \"USDC\"\n },\n \"fee_profile_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"recipient_account\": {\n \"type\": \"Fiat\",\n \"account_identifier\": {\n \"iban\": \"DE89370400440532013000\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sandbox.iron.xyz/api/autoramps/{autoramp_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json; charset=utf-8'
request.body = "{\n \"customer_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"destination_currency\": {\n \"blockchain\": \"Solana\",\n \"token\": \"USDC\"\n },\n \"fee_profile_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"recipient_account\": {\n \"type\": \"Fiat\",\n \"account_identifier\": {\n \"iban\": \"DE89370400440532013000\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"batch_payout": true,
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"deposit_rails": [
{
"address": "10 Downing Street, London, SW1A 2AA, GB",
"beneficiary_name": "Alan Turing",
"bic": "COBADEFFXXX",
"iban": "DE89370400440532013000",
"name": "Iron Bank",
"phone": "+44-20-1234-5678"
}
],
"destination_currency": {
"blockchain": "Solana",
"token": "USDC"
},
"fee_profile_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"is_third_party": true,
"kind": "Onramp",
"quotes": [
{
"amount_in": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"amount_out": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"fee": {
"banking_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"iron_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"network_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"network_fees": [
{
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
}
],
"network_fees_with_settlement": [
{
"fee_amount": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"fee_type": "SepaIn",
"settlement": "deductedImmediately"
}
],
"partner_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"partner_fees": [
{
"fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"label": "<string>",
"settlement": "deductedImmediately"
}
],
"total_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"transaction_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"banking_fee_network": "Sepa",
"deducted_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"iron_fee_settlement": "deductedImmediately"
},
"fee_settlement": "deductedImmediately",
"partner_fee_settlement": "deductedImmediately",
"quote_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"rate": "<string>",
"rate_expiry_policy": "Return",
"rate_lock_valid_until": "2023-11-07T05:31:56Z",
"valid_until": "2023-11-07T05:31:56Z",
"slippage_tolerance_in_bips": "<string>"
}
],
"recipient": {
"account_identifier": {
"iban": "DE89370400440532013000",
"type": "SEPA"
},
"address": {
"city": "London",
"country": {
"code": "GB"
},
"postal_code": "SW1A 2AA",
"state": "England",
"street": "10 Downing Street"
},
"bank_address": null,
"email_address": {
"email": "john.doe@example.com"
},
"is_third_party": false,
"phone_number": "+49-30-12345678",
"provider_country": {
"code": "DE"
},
"provider_name": "Iron Bank",
"recipient": {
"name": "Aperture Science",
"type": "Business"
}
},
"source": "Standalone",
"source_currencies": [
{
"blockchain": "Solana",
"token": "USDC"
}
],
"status": "Created",
"additional_partner_fee_in_bips": "<string>",
"deposit_account": {
"address": "10 Downing Street, London, SW1A 2AA, GB",
"beneficiary_name": "Alan Turing",
"bic": "COBADEFFXXX",
"iban": "DE89370400440532013000",
"name": "Iron Bank",
"phone": "+44-20-1234-5678"
},
"external_id": "<string>",
"fps_payment_reference": "<string>",
"inbound_payment_reference": "<string>",
"name": "<string>",
"payment_reference": "<string>",
"quote": {
"amount_in": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"amount_out": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"fee": {
"banking_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"iron_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"network_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"network_fees": [
{
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
}
],
"network_fees_with_settlement": [
{
"fee_amount": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"fee_type": "SepaIn",
"settlement": "deductedImmediately"
}
],
"partner_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"partner_fees": [
{
"fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"label": "<string>",
"settlement": "deductedImmediately"
}
],
"total_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"transaction_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"banking_fee_network": "Sepa",
"deducted_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"iron_fee_settlement": "deductedImmediately"
},
"fee_settlement": "deductedImmediately",
"partner_fee_settlement": "deductedImmediately",
"quote_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"rate": "<string>",
"rate_expiry_policy": "Return",
"rate_lock_valid_until": "2023-11-07T05:31:56Z",
"valid_until": "2023-11-07T05:31:56Z",
"slippage_tolerance_in_bips": "<string>"
},
"sepa_payment_reference": "<string>",
"swift_payment_reference": "<string>",
"travel_address": "<string>",
"wire_message": "<string>"
}"<string>"{
"message": "<string>",
"trace_id": "<string>"
}{
"message": "<string>",
"trace_id": "<string>"
}Patch an autoramp market
Patch the autoramp market by ID
curl --request PATCH \
--url https://api.sandbox.iron.xyz/api/autoramps/{autoramp_id} \
--header 'Content-Type: application/json; charset=utf-8' \
--header 'X-API-Key: <api-key>' \
--data '
{
"customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"destination_currency": {
"blockchain": "Solana",
"token": "USDC"
},
"fee_profile_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"recipient_account": {
"type": "Fiat",
"account_identifier": {
"iban": "DE89370400440532013000"
}
}
}
'import requests
url = "https://api.sandbox.iron.xyz/api/autoramps/{autoramp_id}"
payload = {
"customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"destination_currency": {
"blockchain": "Solana",
"token": "USDC"
},
"fee_profile_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"recipient_account": {
"type": "Fiat",
"account_identifier": { "iban": "DE89370400440532013000" }
}
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json; charset=utf-8"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json; charset=utf-8'},
body: JSON.stringify({
customer_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
destination_currency: {blockchain: 'Solana', token: 'USDC'},
fee_profile_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
recipient_account: {type: 'Fiat', account_identifier: {iban: 'DE89370400440532013000'}}
})
};
fetch('https://api.sandbox.iron.xyz/api/autoramps/{autoramp_id}', 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.sandbox.iron.xyz/api/autoramps/{autoramp_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'customer_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'destination_currency' => [
'blockchain' => 'Solana',
'token' => 'USDC'
],
'fee_profile_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'recipient_account' => [
'type' => 'Fiat',
'account_identifier' => [
'iban' => 'DE89370400440532013000'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json; charset=utf-8",
"X-API-Key: <api-key>"
],
]);
$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.sandbox.iron.xyz/api/autoramps/{autoramp_id}"
payload := strings.NewReader("{\n \"customer_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"destination_currency\": {\n \"blockchain\": \"Solana\",\n \"token\": \"USDC\"\n },\n \"fee_profile_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"recipient_account\": {\n \"type\": \"Fiat\",\n \"account_identifier\": {\n \"iban\": \"DE89370400440532013000\"\n }\n }\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json; charset=utf-8")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.sandbox.iron.xyz/api/autoramps/{autoramp_id}")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json; charset=utf-8")
.body("{\n \"customer_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"destination_currency\": {\n \"blockchain\": \"Solana\",\n \"token\": \"USDC\"\n },\n \"fee_profile_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"recipient_account\": {\n \"type\": \"Fiat\",\n \"account_identifier\": {\n \"iban\": \"DE89370400440532013000\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sandbox.iron.xyz/api/autoramps/{autoramp_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json; charset=utf-8'
request.body = "{\n \"customer_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"destination_currency\": {\n \"blockchain\": \"Solana\",\n \"token\": \"USDC\"\n },\n \"fee_profile_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"recipient_account\": {\n \"type\": \"Fiat\",\n \"account_identifier\": {\n \"iban\": \"DE89370400440532013000\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"batch_payout": true,
"created_at": "2023-11-07T05:31:56Z",
"customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"deposit_rails": [
{
"address": "10 Downing Street, London, SW1A 2AA, GB",
"beneficiary_name": "Alan Turing",
"bic": "COBADEFFXXX",
"iban": "DE89370400440532013000",
"name": "Iron Bank",
"phone": "+44-20-1234-5678"
}
],
"destination_currency": {
"blockchain": "Solana",
"token": "USDC"
},
"fee_profile_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"is_third_party": true,
"kind": "Onramp",
"quotes": [
{
"amount_in": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"amount_out": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"fee": {
"banking_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"iron_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"network_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"network_fees": [
{
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
}
],
"network_fees_with_settlement": [
{
"fee_amount": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"fee_type": "SepaIn",
"settlement": "deductedImmediately"
}
],
"partner_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"partner_fees": [
{
"fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"label": "<string>",
"settlement": "deductedImmediately"
}
],
"total_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"transaction_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"banking_fee_network": "Sepa",
"deducted_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"iron_fee_settlement": "deductedImmediately"
},
"fee_settlement": "deductedImmediately",
"partner_fee_settlement": "deductedImmediately",
"quote_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"rate": "<string>",
"rate_expiry_policy": "Return",
"rate_lock_valid_until": "2023-11-07T05:31:56Z",
"valid_until": "2023-11-07T05:31:56Z",
"slippage_tolerance_in_bips": "<string>"
}
],
"recipient": {
"account_identifier": {
"iban": "DE89370400440532013000",
"type": "SEPA"
},
"address": {
"city": "London",
"country": {
"code": "GB"
},
"postal_code": "SW1A 2AA",
"state": "England",
"street": "10 Downing Street"
},
"bank_address": null,
"email_address": {
"email": "john.doe@example.com"
},
"is_third_party": false,
"phone_number": "+49-30-12345678",
"provider_country": {
"code": "DE"
},
"provider_name": "Iron Bank",
"recipient": {
"name": "Aperture Science",
"type": "Business"
}
},
"source": "Standalone",
"source_currencies": [
{
"blockchain": "Solana",
"token": "USDC"
}
],
"status": "Created",
"additional_partner_fee_in_bips": "<string>",
"deposit_account": {
"address": "10 Downing Street, London, SW1A 2AA, GB",
"beneficiary_name": "Alan Turing",
"bic": "COBADEFFXXX",
"iban": "DE89370400440532013000",
"name": "Iron Bank",
"phone": "+44-20-1234-5678"
},
"external_id": "<string>",
"fps_payment_reference": "<string>",
"inbound_payment_reference": "<string>",
"name": "<string>",
"payment_reference": "<string>",
"quote": {
"amount_in": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"amount_out": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"fee": {
"banking_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"iron_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"network_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"network_fees": [
{
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
}
],
"network_fees_with_settlement": [
{
"fee_amount": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"fee_type": "SepaIn",
"settlement": "deductedImmediately"
}
],
"partner_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"partner_fees": [
{
"fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"label": "<string>",
"settlement": "deductedImmediately"
}
],
"total_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"transaction_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"banking_fee_network": "Sepa",
"deducted_fee": {
"amount": "100.5",
"currency": {
"code": "USD",
"type": "Fiat"
}
},
"iron_fee_settlement": "deductedImmediately"
},
"fee_settlement": "deductedImmediately",
"partner_fee_settlement": "deductedImmediately",
"quote_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"rate": "<string>",
"rate_expiry_policy": "Return",
"rate_lock_valid_until": "2023-11-07T05:31:56Z",
"valid_until": "2023-11-07T05:31:56Z",
"slippage_tolerance_in_bips": "<string>"
},
"sepa_payment_reference": "<string>",
"swift_payment_reference": "<string>",
"travel_address": "<string>",
"wire_message": "<string>"
}"<string>"{
"message": "<string>",
"trace_id": "<string>"
}{
"message": "<string>",
"trace_id": "<string>"
}Authorizations
API Key
Headers
Optional sub-partner UUID, if provided, the autoramps will be filtered for the sub-partner
Selects the API version for this request, as an ISO date (YYYY-MM-DD). Omit to use the default version (2025-03-13). Supported versions: 2025-03-13, 2026-07-01, 2026-08-01.
Path Parameters
The autoramp ID
Body
Parameters for updating the autoramp market
Patch Autoramp Market Parameters
The parameters for patching the autoramp market
Currency
Can be either crypto or fiat
- Crypto
- Fiat
Show child attributes
Show child attributes
{ "blockchain": "Solana", "token": "USDC" }
Change the fee profile applied to this autoramp. Must be a transactional profile of the same partner, eligible for the (post-patch) autoramp shape. A change requires 2FA confirmation before it takes effect.
Account
The account for the autoramp
- FiatAccount
- CryptoWallet
- PixAccount
Show child attributes
Show child attributes
Response
Update autoramp successful
Autoramp
The autoramp response
A Autoramp response
Whether payouts for this autoramp are batched daily
The created at timestamp
The id of the customer that owns the autoramp
- IbanDepositInfo
- AfricanBankTransferDepositInfo
- PixDepositInfo
- SpeiDepositInfo
- MobileMoneyDepositInfo
- CryptoWallet
- FpsDepositInfo
- ChapsDepositInfo
- ACHDepositInfo
- WireDepositInfo
- RtpDepositInfo
- SwiftDepositInfo
Show child attributes
Show child attributes
{
"address": "10 Downing Street, London, SW1A 2AA, GB",
"beneficiary_name": "Alan Turing",
"bic": "COBADEFFXXX",
"iban": "DE89370400440532013000",
"name": "Iron Bank",
"phone": "+44-20-1234-5678"
}
Currency
Can be either crypto or fiat
- Crypto
- Fiat
Show child attributes
Show child attributes
{ "blockchain": "Solana", "token": "USDC" }
The fee profile id used for the autoramp
The id of the autoramp
Is this a third party payment (3pp) autoramp
Autoramp type
The type (onramp, offramp, swap) of an autoramp
Onramp, Offramp, Swap, Mint, Redeem Active (non-expired) quotes associated with this autoramp. Deposits are
matched to the newest active quote with matching amount_in value and
currency.
Show child attributes
Show child attributes
Recipient
The recipient of the payment
- RecipientBankAccount
- RecipientWallet
- RecipientPix
Show child attributes
Show child attributes
{
"account_identifier": {
"iban": "DE89370400440532013000",
"type": "SEPA"
},
"address": {
"city": "London",
"country": { "code": "GB" },
"postal_code": "SW1A 2AA",
"state": "England",
"street": "10 Downing Street"
},
"bank_address": null,
"email_address": { "email": "john.doe@example.com" },
"is_third_party": false,
"phone_number": "+49-30-12345678",
"provider_country": { "code": "DE" },
"provider_name": "Iron Bank",
"recipient": {
"name": "Aperture Science",
"type": "Business"
}
}
Autoramp Source
The source of the autoramp
Standalone, Quote The source currencies
Currency
Can be either crypto or fiat
- Crypto
- Fiat
Show child attributes
Show child attributes
{ "blockchain": "Solana", "token": "USDC" }
Created, EditPending, Authorized, DepositAccountAdded, Approved, Rejected, Cancelled The additional partner fee in bips
Deprecated, please use the information in the deposit_rails field instead
- IbanDepositInfo
- AchWireDepositInfo
- AfricanBankTransferDepositInfo
- PixDepositInfo
- SpeiDepositInfo
- MobileMoneyDepositInfo
- CryptoWallet
- ChapsFpsDepositInfo
Show child attributes
Show child attributes
{
"address": "10 Downing Street, London, SW1A 2AA, GB",
"beneficiary_name": "Alan Turing",
"bic": "COBADEFFXXX",
"iban": "DE89370400440532013000",
"name": "Iron Bank",
"phone": "+44-20-1234-5678"
}
External ID for the autoramp, provided by the partner
reference message for outgoing FPS transfers
System-generated inbound memo that senders must include on transfers
to the shared VA. None for autoramps that don't use pay-by-reference.
The name of the autoramp
The payment reference for the autoramp
Deprecated: use the quotes field instead. Returns the newest active (non-expired) quote if any.
Show child attributes
Show child attributes
reference message for outgoing SEPA transfers
reference message for outgoing SWIFT transfers
The travel rule address for compliance
reference message for outgoing wire transfers
Was this page helpful?