curl --request POST \
--url https://api.example.com/v1/public/sandbox/deposits/{uuid}/pay \
--header 'Content-Type: application/json' \
--header 'X-Signature: <api-key>' \
--data '
{
"amount": "100",
"fromAddress": "TSandboxSender",
"confirmations": 0
}
'import requests
url = "https://api.example.com/v1/public/sandbox/deposits/{uuid}/pay"
payload = {
"amount": "100",
"fromAddress": "TSandboxSender",
"confirmations": 0
}
headers = {
"X-Signature": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Signature': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({amount: '100', fromAddress: 'TSandboxSender', confirmations: 0})
};
fetch('https://api.example.com/v1/public/sandbox/deposits/{uuid}/pay', 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.example.com/v1/public/sandbox/deposits/{uuid}/pay",
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([
'amount' => '100',
'fromAddress' => 'TSandboxSender',
'confirmations' => 0
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Signature: <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.example.com/v1/public/sandbox/deposits/{uuid}/pay"
payload := strings.NewReader("{\n \"amount\": \"100\",\n \"fromAddress\": \"TSandboxSender\",\n \"confirmations\": 0\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Signature", "<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.example.com/v1/public/sandbox/deposits/{uuid}/pay")
.header("X-Signature", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"amount\": \"100\",\n \"fromAddress\": \"TSandboxSender\",\n \"confirmations\": 0\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/public/sandbox/deposits/{uuid}/pay")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Signature"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"amount\": \"100\",\n \"fromAddress\": \"TSandboxSender\",\n \"confirmations\": 0\n}"
response = http.request(request)
puts response.read_body{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"txhash": "sandbox:…:1757…",
"amount": "100",
"confirmations": 19,
"requiredConfirmations": 19
}Simulate an incoming transaction (sandbox site only, 1.4.0)
Эмулирует входящую транзакцию на адрес депозита: депозит проходит штатный путь process → finalize → sweep (без сети), вебхуки deposit.* приходят настоящие с полем sandbox: true. Сумма по умолчанию — ожидаемая; больше/меньше — paid_over / wrong_amount (и доплата, если включена). confirmations меньше порога — депозит остаётся в process, финализация придёт через ~30 с. Работает и для статических адресов (каждый вызов — отдельный платёж). Только для сайта с включённой песочницей (403 SANDBOX_ONLY).
curl --request POST \
--url https://api.example.com/v1/public/sandbox/deposits/{uuid}/pay \
--header 'Content-Type: application/json' \
--header 'X-Signature: <api-key>' \
--data '
{
"amount": "100",
"fromAddress": "TSandboxSender",
"confirmations": 0
}
'import requests
url = "https://api.example.com/v1/public/sandbox/deposits/{uuid}/pay"
payload = {
"amount": "100",
"fromAddress": "TSandboxSender",
"confirmations": 0
}
headers = {
"X-Signature": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Signature': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({amount: '100', fromAddress: 'TSandboxSender', confirmations: 0})
};
fetch('https://api.example.com/v1/public/sandbox/deposits/{uuid}/pay', 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.example.com/v1/public/sandbox/deposits/{uuid}/pay",
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([
'amount' => '100',
'fromAddress' => 'TSandboxSender',
'confirmations' => 0
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Signature: <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.example.com/v1/public/sandbox/deposits/{uuid}/pay"
payload := strings.NewReader("{\n \"amount\": \"100\",\n \"fromAddress\": \"TSandboxSender\",\n \"confirmations\": 0\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Signature", "<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.example.com/v1/public/sandbox/deposits/{uuid}/pay")
.header("X-Signature", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"amount\": \"100\",\n \"fromAddress\": \"TSandboxSender\",\n \"confirmations\": 0\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/public/sandbox/deposits/{uuid}/pay")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Signature"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"amount\": \"100\",\n \"fromAddress\": \"TSandboxSender\",\n \"confirmations\": 0\n}"
response = http.request(request)
puts response.read_body{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"txhash": "sandbox:…:1757…",
"amount": "100",
"confirmations": 19,
"requiredConfirmations": 19
}Authorizations
HMAC-SHA256-Hex(timestamp + "." + raw_body, api_secret)
Path Parameters
Body
Сумма «входящей» транзакции. По умолчанию — ожидаемая сумма депозита (для депозитов без суммы обязательна).
"100"
Адрес отправителя в эмулируемой tx.
"TSandboxSender"
Число подтверждений на момент детекции. По умолчанию — порог финализации (депозит финализируется сразу). Меньше порога — депозит останется в process (webhook deposit.tx_detected), финализация придёт через ~30 с.
0