Create Standalone Transfer
Creates a forward transfer distributing organization balance funds to recipients
curl --request POST \
--url https://api-sandbox.y.uno/v1/split-marketplace/transfers \
--header 'Content-Type: application/json' \
--header 'PRIVATE-SECRET-KEY: <api-key>' \
--header 'PUBLIC-API-KEY: <api-key>' \
--header 'X-Idempotency-Key: <x-idempotency-key>' \
--data '
{
"account_id": "<string>",
"recipient_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"provider_id": "<string>",
"amount": {
"value": 150,
"currency": "USD"
},
"description": "<string>",
"merchant_reference": "<string>",
"metadata": [
{
"key": "<string>",
"value": "<string>"
}
]
}
'import requests
url = "https://api-sandbox.y.uno/v1/split-marketplace/transfers"
payload = {
"account_id": "<string>",
"recipient_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"provider_id": "<string>",
"amount": {
"value": 150,
"currency": "USD"
},
"description": "<string>",
"merchant_reference": "<string>",
"metadata": [
{
"key": "<string>",
"value": "<string>"
}
]
}
headers = {
"X-Idempotency-Key": "<x-idempotency-key>",
"PUBLIC-API-KEY": "<api-key>",
"PRIVATE-SECRET-KEY": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Idempotency-Key': '<x-idempotency-key>',
'PUBLIC-API-KEY': '<api-key>',
'PRIVATE-SECRET-KEY': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
account_id: '<string>',
recipient_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
provider_id: '<string>',
amount: {value: 150, currency: 'USD'},
description: '<string>',
merchant_reference: '<string>',
metadata: [{key: '<string>', value: '<string>'}]
})
};
fetch('https://api-sandbox.y.uno/v1/split-marketplace/transfers', 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.y.uno/v1/split-marketplace/transfers",
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([
'account_id' => '<string>',
'recipient_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'provider_id' => '<string>',
'amount' => [
'value' => 150,
'currency' => 'USD'
],
'description' => '<string>',
'merchant_reference' => '<string>',
'metadata' => [
[
'key' => '<string>',
'value' => '<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"PRIVATE-SECRET-KEY: <api-key>",
"PUBLIC-API-KEY: <api-key>",
"X-Idempotency-Key: <x-idempotency-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.y.uno/v1/split-marketplace/transfers"
payload := strings.NewReader("{\n \"account_id\": \"<string>\",\n \"recipient_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"provider_id\": \"<string>\",\n \"amount\": {\n \"value\": 150,\n \"currency\": \"USD\"\n },\n \"description\": \"<string>\",\n \"merchant_reference\": \"<string>\",\n \"metadata\": [\n {\n \"key\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Idempotency-Key", "<x-idempotency-key>")
req.Header.Add("PUBLIC-API-KEY", "<api-key>")
req.Header.Add("PRIVATE-SECRET-KEY", "<api-key>")
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-sandbox.y.uno/v1/split-marketplace/transfers")
.header("X-Idempotency-Key", "<x-idempotency-key>")
.header("PUBLIC-API-KEY", "<api-key>")
.header("PRIVATE-SECRET-KEY", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"account_id\": \"<string>\",\n \"recipient_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"provider_id\": \"<string>\",\n \"amount\": {\n \"value\": 150,\n \"currency\": \"USD\"\n },\n \"description\": \"<string>\",\n \"merchant_reference\": \"<string>\",\n \"metadata\": [\n {\n \"key\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.y.uno/v1/split-marketplace/transfers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Idempotency-Key"] = '<x-idempotency-key>'
request["PUBLIC-API-KEY"] = '<api-key>'
request["PRIVATE-SECRET-KEY"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"account_id\": \"<string>\",\n \"recipient_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"provider_id\": \"<string>\",\n \"amount\": {\n \"value\": 150,\n \"currency\": \"USD\"\n },\n \"description\": \"<string>\",\n \"merchant_reference\": \"<string>\",\n \"metadata\": [\n {\n \"key\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_bodyHeaders
Unique key for request idempotency.
Body
The unique identifier of the account.
The target recipient identifier.
The payment provider code to use (e.g., adyen, stripe).
Show child attributes
Show child attributes
A human-readable description for the transfer (3-255 chars). This is sent to the provider.
Merchant's unique identifier for idempotency and tracking.
Show child attributes
Show child attributes
Response
Created
"TRF_7kB2mQ9xPnL4vR"
"550e8400-e29b-41d4-a716-446655440000"
Show child attributes
Show child attributes
"SUCCEEDED"
"ORDER_CANCELLED"
"Weekly marketplace earnings"
"TRANSFER-2026-02-15-001"
Show child attributes
Show child attributes
Show child attributes
Show child attributes
"2026-02-16T10:30:00Z"
"2026-02-16T10:30:15Z"
"2026-02-16T10:30:15Z"
null
Show child attributes
Show child attributes
Was this page helpful?
curl --request POST \
--url https://api-sandbox.y.uno/v1/split-marketplace/transfers \
--header 'Content-Type: application/json' \
--header 'PRIVATE-SECRET-KEY: <api-key>' \
--header 'PUBLIC-API-KEY: <api-key>' \
--header 'X-Idempotency-Key: <x-idempotency-key>' \
--data '
{
"account_id": "<string>",
"recipient_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"provider_id": "<string>",
"amount": {
"value": 150,
"currency": "USD"
},
"description": "<string>",
"merchant_reference": "<string>",
"metadata": [
{
"key": "<string>",
"value": "<string>"
}
]
}
'import requests
url = "https://api-sandbox.y.uno/v1/split-marketplace/transfers"
payload = {
"account_id": "<string>",
"recipient_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"provider_id": "<string>",
"amount": {
"value": 150,
"currency": "USD"
},
"description": "<string>",
"merchant_reference": "<string>",
"metadata": [
{
"key": "<string>",
"value": "<string>"
}
]
}
headers = {
"X-Idempotency-Key": "<x-idempotency-key>",
"PUBLIC-API-KEY": "<api-key>",
"PRIVATE-SECRET-KEY": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Idempotency-Key': '<x-idempotency-key>',
'PUBLIC-API-KEY': '<api-key>',
'PRIVATE-SECRET-KEY': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
account_id: '<string>',
recipient_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
provider_id: '<string>',
amount: {value: 150, currency: 'USD'},
description: '<string>',
merchant_reference: '<string>',
metadata: [{key: '<string>', value: '<string>'}]
})
};
fetch('https://api-sandbox.y.uno/v1/split-marketplace/transfers', 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.y.uno/v1/split-marketplace/transfers",
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([
'account_id' => '<string>',
'recipient_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'provider_id' => '<string>',
'amount' => [
'value' => 150,
'currency' => 'USD'
],
'description' => '<string>',
'merchant_reference' => '<string>',
'metadata' => [
[
'key' => '<string>',
'value' => '<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"PRIVATE-SECRET-KEY: <api-key>",
"PUBLIC-API-KEY: <api-key>",
"X-Idempotency-Key: <x-idempotency-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.y.uno/v1/split-marketplace/transfers"
payload := strings.NewReader("{\n \"account_id\": \"<string>\",\n \"recipient_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"provider_id\": \"<string>\",\n \"amount\": {\n \"value\": 150,\n \"currency\": \"USD\"\n },\n \"description\": \"<string>\",\n \"merchant_reference\": \"<string>\",\n \"metadata\": [\n {\n \"key\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Idempotency-Key", "<x-idempotency-key>")
req.Header.Add("PUBLIC-API-KEY", "<api-key>")
req.Header.Add("PRIVATE-SECRET-KEY", "<api-key>")
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-sandbox.y.uno/v1/split-marketplace/transfers")
.header("X-Idempotency-Key", "<x-idempotency-key>")
.header("PUBLIC-API-KEY", "<api-key>")
.header("PRIVATE-SECRET-KEY", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"account_id\": \"<string>\",\n \"recipient_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"provider_id\": \"<string>\",\n \"amount\": {\n \"value\": 150,\n \"currency\": \"USD\"\n },\n \"description\": \"<string>\",\n \"merchant_reference\": \"<string>\",\n \"metadata\": [\n {\n \"key\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.y.uno/v1/split-marketplace/transfers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Idempotency-Key"] = '<x-idempotency-key>'
request["PUBLIC-API-KEY"] = '<api-key>'
request["PRIVATE-SECRET-KEY"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"account_id\": \"<string>\",\n \"recipient_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"provider_id\": \"<string>\",\n \"amount\": {\n \"value\": 150,\n \"currency\": \"USD\"\n },\n \"description\": \"<string>\",\n \"merchant_reference\": \"<string>\",\n \"metadata\": [\n {\n \"key\": \"<string>\",\n \"value\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body