curl --request PATCH \
--url https://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"allowed_domains": [
"<string>"
],
"client_id": "<string>",
"client_secret": "<string>",
"display_name": "<string>",
"enabled": true,
"groups_claim": "<string>",
"issuer": "<string>",
"scopes": "<string>"
}
'import requests
url = "https://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_id}"
payload = {
"allowed_domains": ["<string>"],
"client_id": "<string>",
"client_secret": "<string>",
"display_name": "<string>",
"enabled": True,
"groups_claim": "<string>",
"issuer": "<string>",
"scopes": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
allowed_domains: ['<string>'],
client_id: '<string>',
client_secret: '<string>',
display_name: '<string>',
enabled: true,
groups_claim: '<string>',
issuer: '<string>',
scopes: '<string>'
})
};
fetch('https://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_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://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'allowed_domains' => [
'<string>'
],
'client_id' => '<string>',
'client_secret' => '<string>',
'display_name' => '<string>',
'enabled' => true,
'groups_claim' => '<string>',
'issuer' => '<string>',
'scopes' => '<string>'
]),
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://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_id}"
payload := strings.NewReader("{\n \"allowed_domains\": [\n \"<string>\"\n ],\n \"client_id\": \"<string>\",\n \"client_secret\": \"<string>\",\n \"display_name\": \"<string>\",\n \"enabled\": true,\n \"groups_claim\": \"<string>\",\n \"issuer\": \"<string>\",\n \"scopes\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", 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.patch("https://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"allowed_domains\": [\n \"<string>\"\n ],\n \"client_id\": \"<string>\",\n \"client_secret\": \"<string>\",\n \"display_name\": \"<string>\",\n \"enabled\": true,\n \"groups_claim\": \"<string>\",\n \"issuer\": \"<string>\",\n \"scopes\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"allowed_domains\": [\n \"<string>\"\n ],\n \"client_id\": \"<string>\",\n \"client_secret\": \"<string>\",\n \"display_name\": \"<string>\",\n \"enabled\": true,\n \"groups_claim\": \"<string>\",\n \"issuer\": \"<string>\",\n \"scopes\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"allowed_domains": [
"<string>"
],
"client_secret_set": true,
"created_at": 123,
"enabled": true,
"enforced": true,
"id": "<string>",
"kind": "<string>",
"org_id": "<string>",
"provider_key": "<string>",
"updated_at": 123,
"client_id": "<string>",
"default_role_id": "<string>",
"display_name": "<string>",
"groups_claim": "<string>",
"issuer": "<string>",
"scopes": "<string>"
}Update Identity Provider
Update an SSO identity connection.
curl --request PATCH \
--url https://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"allowed_domains": [
"<string>"
],
"client_id": "<string>",
"client_secret": "<string>",
"display_name": "<string>",
"enabled": true,
"groups_claim": "<string>",
"issuer": "<string>",
"scopes": "<string>"
}
'import requests
url = "https://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_id}"
payload = {
"allowed_domains": ["<string>"],
"client_id": "<string>",
"client_secret": "<string>",
"display_name": "<string>",
"enabled": True,
"groups_claim": "<string>",
"issuer": "<string>",
"scopes": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
allowed_domains: ['<string>'],
client_id: '<string>',
client_secret: '<string>',
display_name: '<string>',
enabled: true,
groups_claim: '<string>',
issuer: '<string>',
scopes: '<string>'
})
};
fetch('https://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_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://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'allowed_domains' => [
'<string>'
],
'client_id' => '<string>',
'client_secret' => '<string>',
'display_name' => '<string>',
'enabled' => true,
'groups_claim' => '<string>',
'issuer' => '<string>',
'scopes' => '<string>'
]),
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://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_id}"
payload := strings.NewReader("{\n \"allowed_domains\": [\n \"<string>\"\n ],\n \"client_id\": \"<string>\",\n \"client_secret\": \"<string>\",\n \"display_name\": \"<string>\",\n \"enabled\": true,\n \"groups_claim\": \"<string>\",\n \"issuer\": \"<string>\",\n \"scopes\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", 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.patch("https://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"allowed_domains\": [\n \"<string>\"\n ],\n \"client_id\": \"<string>\",\n \"client_secret\": \"<string>\",\n \"display_name\": \"<string>\",\n \"enabled\": true,\n \"groups_claim\": \"<string>\",\n \"issuer\": \"<string>\",\n \"scopes\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"allowed_domains\": [\n \"<string>\"\n ],\n \"client_id\": \"<string>\",\n \"client_secret\": \"<string>\",\n \"display_name\": \"<string>\",\n \"enabled\": true,\n \"groups_claim\": \"<string>\",\n \"issuer\": \"<string>\",\n \"scopes\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"allowed_domains": [
"<string>"
],
"client_secret_set": true,
"created_at": 123,
"enabled": true,
"enforced": true,
"id": "<string>",
"kind": "<string>",
"org_id": "<string>",
"provider_key": "<string>",
"updated_at": 123,
"client_id": "<string>",
"default_role_id": "<string>",
"display_name": "<string>",
"groups_claim": "<string>",
"issuer": "<string>",
"scopes": "<string>"
}Authorizations
Timbal API key. Obtain your API key from the Timbal platform settings. See Authentication for more information.
Body
Update a connection. All fields optional; absent = unchanged. client_secret
is write-only — supply it only to rotate.
Response
Updated connection
Masked view of a connection. Never includes the client secret.
Whether a client secret is configured. The secret itself is never returned.
Read-only here: SSO enforcement isn't configurable via the API yet.
OIDC client id. null for non-OIDC kinds.
Catch-all role granted to JIT members with no matching group mapping.
null = no catch-all role.
OIDC issuer. null for non-OIDC kinds (e.g. SAML), whose connection
details live in kind-specific fields added when those kinds ship.