Confirm cancellation
curl --request POST \
--url https://dev.bringin.xyz/api/v0/bringin-link/{standingOrderId}/cancel/confirm \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data '
{
"challengeId": "<string>",
"verificationCode": "<string>"
}
'import requests
url = "https://dev.bringin.xyz/api/v0/bringin-link/{standingOrderId}/cancel/confirm"
payload = {
"challengeId": "<string>",
"verificationCode": "<string>"
}
headers = {
"api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({challengeId: '<string>', verificationCode: '<string>'})
};
fetch('https://dev.bringin.xyz/api/v0/bringin-link/{standingOrderId}/cancel/confirm', 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://dev.bringin.xyz/api/v0/bringin-link/{standingOrderId}/cancel/confirm",
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([
'challengeId' => '<string>',
'verificationCode' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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://dev.bringin.xyz/api/v0/bringin-link/{standingOrderId}/cancel/confirm"
payload := strings.NewReader("{\n \"challengeId\": \"<string>\",\n \"verificationCode\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("api-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://dev.bringin.xyz/api/v0/bringin-link/{standingOrderId}/cancel/confirm")
.header("api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"challengeId\": \"<string>\",\n \"verificationCode\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://dev.bringin.xyz/api/v0/bringin-link/{standingOrderId}/cancel/confirm")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"challengeId\": \"<string>\",\n \"verificationCode\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "a5b03095-f4ad-4a10-8970-4c63de5a49a9",
"status": "CANCELLED",
"direction": "FIAT_TO_CRYPTO",
"sourceCurrency": "EUR",
"destinationCurrency": "BTC",
"percentFeeBps": "1",
"createdAt": "2026-03-24T08:33:18.366Z",
"updatedAt": "2026-03-24T09:10:00.000Z"
}
Connections
Confirm cancellation
POST
/
api
/
v0
/
bringin-link
/
{standingOrderId}
/
cancel
/
confirm
Confirm cancellation
curl --request POST \
--url https://dev.bringin.xyz/api/v0/bringin-link/{standingOrderId}/cancel/confirm \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data '
{
"challengeId": "<string>",
"verificationCode": "<string>"
}
'import requests
url = "https://dev.bringin.xyz/api/v0/bringin-link/{standingOrderId}/cancel/confirm"
payload = {
"challengeId": "<string>",
"verificationCode": "<string>"
}
headers = {
"api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({challengeId: '<string>', verificationCode: '<string>'})
};
fetch('https://dev.bringin.xyz/api/v0/bringin-link/{standingOrderId}/cancel/confirm', 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://dev.bringin.xyz/api/v0/bringin-link/{standingOrderId}/cancel/confirm",
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([
'challengeId' => '<string>',
'verificationCode' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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://dev.bringin.xyz/api/v0/bringin-link/{standingOrderId}/cancel/confirm"
payload := strings.NewReader("{\n \"challengeId\": \"<string>\",\n \"verificationCode\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("api-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://dev.bringin.xyz/api/v0/bringin-link/{standingOrderId}/cancel/confirm")
.header("api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"challengeId\": \"<string>\",\n \"verificationCode\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://dev.bringin.xyz/api/v0/bringin-link/{standingOrderId}/cancel/confirm")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"challengeId\": \"<string>\",\n \"verificationCode\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "a5b03095-f4ad-4a10-8970-4c63de5a49a9",
"status": "CANCELLED",
"direction": "FIAT_TO_CRYPTO",
"sourceCurrency": "EUR",
"destinationCurrency": "BTC",
"percentFeeBps": "1",
"createdAt": "2026-03-24T08:33:18.366Z",
"updatedAt": "2026-03-24T09:10:00.000Z"
}
Confirm the cancellation of a connection with an SMS OTP code. Only call this when Cancel connection returned a
After confirmation:
challengeId (hard cancel).
Requires a per-user api-key.
string
required
The standing order ID
string
required
The challenge ID from the cancel initiation response
string
required
6-digit SMS OTP code
{
"id": "a5b03095-f4ad-4a10-8970-4c63de5a49a9",
"status": "CANCELLED",
"direction": "FIAT_TO_CRYPTO",
"sourceCurrency": "EUR",
"destinationCurrency": "BTC",
"percentFeeBps": "1",
"createdAt": "2026-03-24T08:33:18.366Z",
"updatedAt": "2026-03-24T09:10:00.000Z"
}
- The standing order status becomes
CANCELLED - All connections linked to this standing order become
INACTIVE - The wallet is released for reuse
⌘I