Sanction Service
curl --request POST \
--url https://api.your-blindsight.com/api/runtime-security/discovery/{service_uuid}/sanctionimport requests
url = "https://api.your-blindsight.com/api/runtime-security/discovery/{service_uuid}/sanction"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.your-blindsight.com/api/runtime-security/discovery/{service_uuid}/sanction', 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.your-blindsight.com/api/runtime-security/discovery/{service_uuid}/sanction",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$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.your-blindsight.com/api/runtime-security/discovery/{service_uuid}/sanction"
req, _ := http.NewRequest("POST", url, nil)
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.your-blindsight.com/api/runtime-security/discovery/{service_uuid}/sanction")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.your-blindsight.com/api/runtime-security/discovery/{service_uuid}/sanction")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}runtime-security-discovery
Sanction Service
Mark a discovered service as sanctioned (allowed, no longer shadow).
Sanctioning is the decision that this is not shadow AI, so it also takes the service out of whatever the shadow-AI posture was doing to it:
- a
blockrule is cleared, so approving a tool is a real way back from banning it rather than a status change the agent never hears about; - the “protect unapproved AI” floor stops applying, because the setting says
unapproved and this one now is. Written as an explicit
observerule, since the floor would otherwise re-protect it on the next merge.
An admin who wants an approved tool inspected can still protect it by hand; that is a decision about this service, not a side effect of a posture aimed at the ones nobody vetted.
Both of those follow from the status alone, so the rule is written by
_apply_decision rather than here. The version that reasoned about it
inline treated them as alternatives and never did the second after the
first.
POST
/
api
/
runtime-security
/
discovery
/
{service_uuid}
/
sanction
Sanction Service
curl --request POST \
--url https://api.your-blindsight.com/api/runtime-security/discovery/{service_uuid}/sanctionimport requests
url = "https://api.your-blindsight.com/api/runtime-security/discovery/{service_uuid}/sanction"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.your-blindsight.com/api/runtime-security/discovery/{service_uuid}/sanction', 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.your-blindsight.com/api/runtime-security/discovery/{service_uuid}/sanction",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$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.your-blindsight.com/api/runtime-security/discovery/{service_uuid}/sanction"
req, _ := http.NewRequest("POST", url, nil)
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.your-blindsight.com/api/runtime-security/discovery/{service_uuid}/sanction")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.your-blindsight.com/api/runtime-security/discovery/{service_uuid}/sanction")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Path Parameters
Response
Successful Response

