Update a rate limit
curl --request PUT \
--url https://{host}/api/llm-gateway/admin/rate-limits/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"scope_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"scope_value": "<string>",
"requests_per_minute": 123,
"tokens_per_minute": 123,
"traffic_type": "all",
"enabled": true
}
'import requests
url = "https://{host}/api/llm-gateway/admin/rate-limits/{id}"
payload = {
"name": "<string>",
"scope_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"scope_value": "<string>",
"requests_per_minute": 123,
"tokens_per_minute": 123,
"traffic_type": "all",
"enabled": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
scope_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
scope_value: '<string>',
requests_per_minute: 123,
tokens_per_minute: 123,
traffic_type: 'all',
enabled: true
})
};
fetch('https://{host}/api/llm-gateway/admin/rate-limits/{id}', 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://{host}/api/llm-gateway/admin/rate-limits/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'scope_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'scope_value' => '<string>',
'requests_per_minute' => 123,
'tokens_per_minute' => 123,
'traffic_type' => 'all',
'enabled' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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://{host}/api/llm-gateway/admin/rate-limits/{id}"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"scope_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"scope_value\": \"<string>\",\n \"requests_per_minute\": 123,\n \"tokens_per_minute\": 123,\n \"traffic_type\": \"all\",\n \"enabled\": true\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.put("https://{host}/api/llm-gateway/admin/rate-limits/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"scope_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"scope_value\": \"<string>\",\n \"requests_per_minute\": 123,\n \"tokens_per_minute\": 123,\n \"traffic_type\": \"all\",\n \"enabled\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{host}/api/llm-gateway/admin/rate-limits/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"scope_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"scope_value\": \"<string>\",\n \"requests_per_minute\": 123,\n \"tokens_per_minute\": 123,\n \"traffic_type\": \"all\",\n \"enabled\": true\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Engineering RPM cap",
"scope_type": "org",
"traffic_type": "all",
"enabled": true,
"scope_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"scope_value": "<string>",
"requests_per_minute": 123,
"tokens_per_minute": 123
}{
"error": "BadRequest",
"message": "request_timeout_secs must be between 1 and 3600"
}{
"error": "BadRequest",
"message": "request_timeout_secs must be between 1 and 3600"
}LLM Gateway: Rate Limits
Update a rate limit
PUT
/
admin
/
rate-limits
/
{id}
Update a rate limit
curl --request PUT \
--url https://{host}/api/llm-gateway/admin/rate-limits/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"scope_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"scope_value": "<string>",
"requests_per_minute": 123,
"tokens_per_minute": 123,
"traffic_type": "all",
"enabled": true
}
'import requests
url = "https://{host}/api/llm-gateway/admin/rate-limits/{id}"
payload = {
"name": "<string>",
"scope_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"scope_value": "<string>",
"requests_per_minute": 123,
"tokens_per_minute": 123,
"traffic_type": "all",
"enabled": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
scope_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
scope_value: '<string>',
requests_per_minute: 123,
tokens_per_minute: 123,
traffic_type: 'all',
enabled: true
})
};
fetch('https://{host}/api/llm-gateway/admin/rate-limits/{id}', 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://{host}/api/llm-gateway/admin/rate-limits/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'scope_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'scope_value' => '<string>',
'requests_per_minute' => 123,
'tokens_per_minute' => 123,
'traffic_type' => 'all',
'enabled' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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://{host}/api/llm-gateway/admin/rate-limits/{id}"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"scope_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"scope_value\": \"<string>\",\n \"requests_per_minute\": 123,\n \"tokens_per_minute\": 123,\n \"traffic_type\": \"all\",\n \"enabled\": true\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.put("https://{host}/api/llm-gateway/admin/rate-limits/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"scope_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"scope_value\": \"<string>\",\n \"requests_per_minute\": 123,\n \"tokens_per_minute\": 123,\n \"traffic_type\": \"all\",\n \"enabled\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{host}/api/llm-gateway/admin/rate-limits/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"scope_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"scope_value\": \"<string>\",\n \"requests_per_minute\": 123,\n \"tokens_per_minute\": 123,\n \"traffic_type\": \"all\",\n \"enabled\": true\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Engineering RPM cap",
"scope_type": "org",
"traffic_type": "all",
"enabled": true,
"scope_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"scope_value": "<string>",
"requests_per_minute": 123,
"tokens_per_minute": 123
}{
"error": "BadRequest",
"message": "request_timeout_secs must be between 1 and 3600"
}{
"error": "BadRequest",
"message": "request_timeout_secs must be between 1 and 3600"
}Authorizations
JWT obtained through Barndoor's authentication flow. Pass the token
verbatim in Authorization: Bearer <token>. Use the Barndoor SDK's
loginInteractive() helper to obtain a token in scripts and notebooks.
Path Parameters
Body
application/json
Send null for requests_per_minute or tokens_per_minute to clear
that metric (the other must remain set). At least one metric must
always be enforced.
Who the rate limit applies to
Available options:
org, team, user, role, group, api_key, mcp_server, agent, project, llm_provider, model, model_alias Whether the policy applies to LLM, MCP, or both kinds of traffic
Available options:
all, llm, mcp Response
The updated policy
Example:
"Engineering RPM cap"
Who the rate limit applies to
Available options:
org, team, user, role, group, api_key, mcp_server, agent, project, llm_provider, model, model_alias Whether the policy applies to LLM, MCP, or both kinds of traffic
Available options:
all, llm, mcp UUID for scopes that reference an entity (user, agent, api_key, etc.)
String for name-based scopes (group name, role name, model alias, etc.)