Skip to main content
POST
/
pci-proxy
/
destinations
/
{id}
/
disable
Disable Destination
curl --request POST \
  --url https://api-sandbox.y.uno/v1/pci-proxy/destinations/{id}/disable \
  --header 'private-secret-key: <api-key>' \
  --header 'public-api-key: <api-key>'
import requests

url = "https://api-sandbox.y.uno/v1/pci-proxy/destinations/{id}/disable"

headers = {
    "public-api-key": "<api-key>",
    "private-secret-key": "<api-key>"
}

response = requests.post(url, headers=headers)

print(response.text)
const options = {
  method: 'POST',
  headers: {'public-api-key': '<api-key>', 'private-secret-key': '<api-key>'}
};

fetch('https://api-sandbox.y.uno/v1/pci-proxy/destinations/{id}/disable', 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/pci-proxy/destinations/{id}/disable",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_HTTPHEADER => [
    "private-secret-key: <api-key>",
    "public-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"
	"net/http"
	"io"
)

func main() {

	url := "https://api-sandbox.y.uno/v1/pci-proxy/destinations/{id}/disable"

	req, _ := http.NewRequest("POST", url, nil)

	req.Header.Add("public-api-key", "<api-key>")
	req.Header.Add("private-secret-key", "<api-key>")

	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/pci-proxy/destinations/{id}/disable")
  .header("public-api-key", "<api-key>")
  .header("private-secret-key", "<api-key>")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api-sandbox.y.uno/v1/pci-proxy/destinations/{id}/disable")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["public-api-key"] = '<api-key>'
request["private-secret-key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "id": "d7e8f9a0-1234-4b5c-8d6e-7f8091a2b3c4",
  "account_id": null,
  "hostname": "api.example-processor.com",
  "status": "ENABLED",
  "purpose": "Direct acquiring — Processor X",
  "created_at": "2026-07-09T13:05:36Z",
  "updated_at": "2026-07-09T13:05:36Z"
}
{
  "code": "INVALID_REQUEST",
  "messages": [
    "invalid id"
  ]
}
{
  "code": "NOT_AUTHENTICATED",
  "messages": [
    "not authenticated"
  ]
}
{
  "code": "NOT_FOUND",
  "messages": [
    "destination not found"
  ]
}
Turns a destination off without removing it — the record and its audit history are kept, but the forward proxy rejects it with 403 DESTINATION_NOT_ALLOWED until it is enabled again. Useful for temporarily suspending a destination without losing its configuration. See the Destination Allowlist guide.

Authorizations

public-api-key
string
header
default:<Your public-api-key>
required
private-secret-key
string
header
default:<Your private-secret-key>
required

Path Parameters

id
string<uuid>
required

The id (UUID) of the destination to disable.

Example:

"d7e8f9a0-1234-4b5c-8d6e-7f8091a2b3c4"

Response

The destination was disabled; the updated object is returned.

id
string<uuid>

Unique identifier of the destination. Use it to remove the destination.

Example:

"d7e8f9a0-1234-4b5c-8d6e-7f8091a2b3c4"

account_id
string | null

The account this destination is scoped to, or null when it applies to the whole organization.

Example:

null

hostname
string

The registered hostname.

Example:

"api.example-processor.com"

status
enum<string>

Whether the destination is active. Only ENABLED destinations are used by the forward path.

Available options:
ENABLED,
DISABLED
Example:

"ENABLED"

purpose
string

The label you provided when registering the destination.

Example:

"Direct acquiring — Processor X"

created_at
string<date-time>

When the destination was registered.

Example:

"2026-07-09T13:05:36Z"

updated_at
string<date-time>

When the destination was last changed.

Example:

"2026-07-09T13:05:36Z"