curl --request PUT \
--url https://{host}/api/llm-gateway/admin/providers/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"base_url": "<string>",
"auth_type": "api_key",
"api_key": "<string>",
"credentials": {},
"enabled": true,
"settings": {},
"connection_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"request_timeout_secs": 1800,
"stream_idle_timeout_secs": 900
}
'import requests
url = "https://{host}/api/llm-gateway/admin/providers/{id}"
payload = {
"name": "<string>",
"base_url": "<string>",
"auth_type": "api_key",
"api_key": "<string>",
"credentials": {},
"enabled": True,
"settings": {},
"connection_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"request_timeout_secs": 1800,
"stream_idle_timeout_secs": 900
}
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>',
base_url: '<string>',
auth_type: 'api_key',
api_key: '<string>',
credentials: {},
enabled: true,
settings: {},
connection_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
request_timeout_secs: 1800,
stream_idle_timeout_secs: 900
})
};
fetch('https://{host}/api/llm-gateway/admin/providers/{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/providers/{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>',
'base_url' => '<string>',
'auth_type' => 'api_key',
'api_key' => '<string>',
'credentials' => [
],
'enabled' => true,
'settings' => [
],
'connection_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'request_timeout_secs' => 1800,
'stream_idle_timeout_secs' => 900
]),
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/providers/{id}"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"base_url\": \"<string>\",\n \"auth_type\": \"api_key\",\n \"api_key\": \"<string>\",\n \"credentials\": {},\n \"enabled\": true,\n \"settings\": {},\n \"connection_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"request_timeout_secs\": 1800,\n \"stream_idle_timeout_secs\": 900\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/providers/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"base_url\": \"<string>\",\n \"auth_type\": \"api_key\",\n \"api_key\": \"<string>\",\n \"credentials\": {},\n \"enabled\": true,\n \"settings\": {},\n \"connection_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"request_timeout_secs\": 1800,\n \"stream_idle_timeout_secs\": 900\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{host}/api/llm-gateway/admin/providers/{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 \"base_url\": \"<string>\",\n \"auth_type\": \"api_key\",\n \"api_key\": \"<string>\",\n \"credentials\": {},\n \"enabled\": true,\n \"settings\": {},\n \"connection_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"request_timeout_secs\": 1800,\n \"stream_idle_timeout_secs\": 900\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "OpenAI Production (US)",
"model_provider": "openai",
"auth_type": "api_key",
"base_url": "<string>",
"enabled": true,
"settings": {},
"catalog_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"connection_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"request_timeout_secs": 1800,
"stream_idle_timeout_secs": 900,
"catalog_slug": "<string>"
}{
"error": "BadRequest",
"message": "request_timeout_secs must be between 1 and 3600"
}{
"error": "BadRequest",
"message": "request_timeout_secs must be between 1 and 3600"
}Update a provider
Patches a provider. To detach a provider from a shared credential and
switch it back to an inline API key, send connection_id: null and
the new api_key (or credentials) in the same request.
curl --request PUT \
--url https://{host}/api/llm-gateway/admin/providers/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"base_url": "<string>",
"auth_type": "api_key",
"api_key": "<string>",
"credentials": {},
"enabled": true,
"settings": {},
"connection_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"request_timeout_secs": 1800,
"stream_idle_timeout_secs": 900
}
'import requests
url = "https://{host}/api/llm-gateway/admin/providers/{id}"
payload = {
"name": "<string>",
"base_url": "<string>",
"auth_type": "api_key",
"api_key": "<string>",
"credentials": {},
"enabled": True,
"settings": {},
"connection_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"request_timeout_secs": 1800,
"stream_idle_timeout_secs": 900
}
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>',
base_url: '<string>',
auth_type: 'api_key',
api_key: '<string>',
credentials: {},
enabled: true,
settings: {},
connection_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
request_timeout_secs: 1800,
stream_idle_timeout_secs: 900
})
};
fetch('https://{host}/api/llm-gateway/admin/providers/{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/providers/{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>',
'base_url' => '<string>',
'auth_type' => 'api_key',
'api_key' => '<string>',
'credentials' => [
],
'enabled' => true,
'settings' => [
],
'connection_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'request_timeout_secs' => 1800,
'stream_idle_timeout_secs' => 900
]),
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/providers/{id}"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"base_url\": \"<string>\",\n \"auth_type\": \"api_key\",\n \"api_key\": \"<string>\",\n \"credentials\": {},\n \"enabled\": true,\n \"settings\": {},\n \"connection_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"request_timeout_secs\": 1800,\n \"stream_idle_timeout_secs\": 900\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/providers/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"base_url\": \"<string>\",\n \"auth_type\": \"api_key\",\n \"api_key\": \"<string>\",\n \"credentials\": {},\n \"enabled\": true,\n \"settings\": {},\n \"connection_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"request_timeout_secs\": 1800,\n \"stream_idle_timeout_secs\": 900\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{host}/api/llm-gateway/admin/providers/{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 \"base_url\": \"<string>\",\n \"auth_type\": \"api_key\",\n \"api_key\": \"<string>\",\n \"credentials\": {},\n \"enabled\": true,\n \"settings\": {},\n \"connection_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"request_timeout_secs\": 1800,\n \"stream_idle_timeout_secs\": 900\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "OpenAI Production (US)",
"model_provider": "openai",
"auth_type": "api_key",
"base_url": "<string>",
"enabled": true,
"settings": {},
"catalog_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"connection_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"request_timeout_secs": 1800,
"stream_idle_timeout_secs": 900,
"catalog_slug": "<string>"
}{
"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
Provider UUID
Body
All fields optional. connection_id supports an explicit null value
to detach the provider from a shared credential and switch it back to
a direct API key (which must be provided in the same request via
api_key or credentials).
The authentication scheme this credential or provider uses to talk to
the upstream model provider. Valid values depend on model_provider:
for OpenAI/Anthropic-style vendors this is typically api_key; for AWS
Bedrock it is one of aws_role, aws_keys, or bedrock_api_key; for
Google Vertex it is google_adc, google_service_account, or
google_impersonation; Anthropic OAuth passthrough uses oauth_passthrough.
"api_key"
1 <= x <= 36001 <= x <= 1800Response
The updated provider
A named upstream provider backed by a credential and a model family.
"OpenAI Production (US)"
Slug of the upstream model provider this resource speaks to
openai, anthropic, azure_openai, google_ai, bedrock, vertex, groq, together, mistral, cohere, xai, fireworks, perplexity, openrouter, deepseek, custom "openai"
The authentication scheme this credential or provider uses to talk to
the upstream model provider. Valid values depend on model_provider:
for OpenAI/Anthropic-style vendors this is typically api_key; for AWS
Bedrock it is one of aws_role, aws_keys, or bedrock_api_key; for
Google Vertex it is google_adc, google_service_account, or
google_impersonation; Anthropic OAuth passthrough uses oauth_passthrough.
"api_key"
Reference to a built-in provider catalog template, if used
Reference to a shared Credentials record, if any
Provider-tier total-request timeout override. When null (the
default) the gateway inherits the platform default. Affects every
route served by this provider unless a more specific Model Route
value overrides it.
1 <= x <= 3600Maximum allowed idle gap between streamed response chunks. null
inherits the platform default.
1 <= x <= 1800Catalog slug shorthand used in some response listings