Replace the integration's risk-classification cutpoints
Base URL
https://api.isnotai.com
Available Regions
2 regions
Body
thresholds
object
Responses
200
application/json
Payload of RiskThresholdsResponse
400
application/json
Payload of ErrorEnvelope
401
application/json
Payload of ErrorEnvelope
curl --request PUT \
--url https://api.isnotai.com/v1/settings/risk-thresholds \
--header 'Authorization: Bearer aik_v1_YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{}'
import requests
url = "https://api.isnotai.com/v1/settings/risk-thresholds"
payload = {}
headers = {
"Authorization": "Bearer aik_v1_YOUR_API_KEY",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.json())
const fetch = require('node-fetch');
const url = 'https://api.isnotai.com/v1/settings/risk-thresholds';
const options = {
method: 'PUT',
headers: {
Authorization: 'Bearer aik_v1_YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: '{}'
};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
Method = HttpMethod.Put,
RequestUri = new Uri("https://api.isnotai.com/v1/settings/risk-thresholds"),
Headers =
{
{ "Authorization", "Bearer aik_v1_YOUR_API_KEY" },
},
Content = new StringContent("{}")
{
Headers =
{
ContentType = new MediaTypeHeaderValue("application/json")
}
}
};
using (var response = await client.SendAsync(request))
{
response.EnsureSuccessStatusCode();
var body = await response.Content.ReadAsStringAsync();
Console.WriteLine(body);
}
Sent to the API as Authorization: Bearer aik_v1_.... Held only in this tab's input element; re-enter on each browser tab. The docs site never receives or stores it.
{}
{
"data": {
"thresholds": {
"mediumAt": 0,
"botAt": 0
},
"updatedAt": "2024-01-01T00:00:00Z",
"updatedBy": "string"
}
}
{
"error": {
"code": "string",
"message": "string",
"details": {}
}
}
{
"error": {
"code": "string",
"message": "string",
"details": {}
}
}