Deactivate payee destination
curl --request DELETE \
--url https://api.request.network/v2/payee-destination/{destinationId} \
--header 'Content-Type: application/json' \
--header 'Origin: <origin>' \
--header 'x-client-id: <x-client-id>' \
--data '
{
"signature": "<string>",
"nonce": "<string>"
}
'import requests
url = "https://api.request.network/v2/payee-destination/{destinationId}"
payload = {
"signature": "<string>",
"nonce": "<string>"
}
headers = {
"x-client-id": "<x-client-id>",
"Origin": "<origin>",
"Content-Type": "application/json"
}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'DELETE',
headers: {
'x-client-id': '<x-client-id>',
Origin: '<origin>',
'Content-Type': 'application/json'
},
body: JSON.stringify({signature: '<string>', nonce: '<string>'})
};
fetch('https://api.request.network/v2/payee-destination/{destinationId}', 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.request.network/v2/payee-destination/{destinationId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_POSTFIELDS => json_encode([
'signature' => '<string>',
'nonce' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"Origin: <origin>",
"x-client-id: <x-client-id>"
],
]);
$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.request.network/v2/payee-destination/{destinationId}"
payload := strings.NewReader("{\n \"signature\": \"<string>\",\n \"nonce\": \"<string>\"\n}")
req, _ := http.NewRequest("DELETE", url, payload)
req.Header.Add("x-client-id", "<x-client-id>")
req.Header.Add("Origin", "<origin>")
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.delete("https://api.request.network/v2/payee-destination/{destinationId}")
.header("x-client-id", "<x-client-id>")
.header("Origin", "<origin>")
.header("Content-Type", "application/json")
.body("{\n \"signature\": \"<string>\",\n \"nonce\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.request.network/v2/payee-destination/{destinationId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["x-client-id"] = '<x-client-id>'
request["Origin"] = '<origin>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"signature\": \"<string>\",\n \"nonce\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyV2/Payee Destination
Deactivate payee destination
Deactivate a payee destination with EIP-712 signature verification. Sets active=false without deleting the record.
DELETE
/
v2
/
payee-destination
/
{destinationId}
Deactivate payee destination
curl --request DELETE \
--url https://api.request.network/v2/payee-destination/{destinationId} \
--header 'Content-Type: application/json' \
--header 'Origin: <origin>' \
--header 'x-client-id: <x-client-id>' \
--data '
{
"signature": "<string>",
"nonce": "<string>"
}
'import requests
url = "https://api.request.network/v2/payee-destination/{destinationId}"
payload = {
"signature": "<string>",
"nonce": "<string>"
}
headers = {
"x-client-id": "<x-client-id>",
"Origin": "<origin>",
"Content-Type": "application/json"
}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'DELETE',
headers: {
'x-client-id': '<x-client-id>',
Origin: '<origin>',
'Content-Type': 'application/json'
},
body: JSON.stringify({signature: '<string>', nonce: '<string>'})
};
fetch('https://api.request.network/v2/payee-destination/{destinationId}', 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.request.network/v2/payee-destination/{destinationId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_POSTFIELDS => json_encode([
'signature' => '<string>',
'nonce' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"Origin: <origin>",
"x-client-id: <x-client-id>"
],
]);
$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.request.network/v2/payee-destination/{destinationId}"
payload := strings.NewReader("{\n \"signature\": \"<string>\",\n \"nonce\": \"<string>\"\n}")
req, _ := http.NewRequest("DELETE", url, payload)
req.Header.Add("x-client-id", "<x-client-id>")
req.Header.Add("Origin", "<origin>")
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.delete("https://api.request.network/v2/payee-destination/{destinationId}")
.header("x-client-id", "<x-client-id>")
.header("Origin", "<origin>")
.header("Content-Type", "application/json")
.body("{\n \"signature\": \"<string>\",\n \"nonce\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.request.network/v2/payee-destination/{destinationId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["x-client-id"] = '<x-client-id>'
request["Origin"] = '<origin>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"signature\": \"<string>\",\n \"nonce\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyHeaders
Client ID for frontend authentication
Origin header (automatically set by browser)
Body
application/json
Response
Payee destination deactivated successfully
Was this page helpful?
⌘I