Skip to main content
PUT
/
orgs
/
{org_id}
/
identity-providers
/
{provider_id}
/
default-role
cURL
curl --request PUT \
  --url https://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_id}/default-role \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "role_id": 123
}'
import requests

url = "https://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_id}/default-role"

payload = { "role_id": 123 }
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({role_id: 123})
};

fetch('https://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_id}/default-role', 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}/default-role",
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([
'role_id' => 123
]),
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}/default-role"

payload := strings.NewReader("{\n \"role_id\": 123\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://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_id}/default-role")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"role_id\": 123\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.timbal.ai/orgs/{org_id}/identity-providers/{provider_id}/default-role")

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 \"role_id\": 123\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

Authorization
string
header
required

Timbal API key. Obtain your API key from the Timbal platform settings. See Authentication for more information.

Path Parameters

org_id
string
required
provider_id
string
required

Body

application/json

Body for the dedicated default-role endpoint. The field is required but may be null to clear the catch-all role (no separate "unset" verb needed).

role_id
integer<int64> | null

Target role id, or null to remove the catch-all (group-mapping-only). Accepts a number or a stringified id.

Response

Updated connection

Masked view of a connection. Never includes the client secret.

allowed_domains
string[]
required
client_secret_set
boolean
required

Whether a client secret is configured. The secret itself is never returned.

created_at
integer<int64>
required
enabled
boolean
required
enforced
boolean
required

Read-only here: SSO enforcement isn't configurable via the API yet.

id
string
required
kind
string
required
org_id
string
required
provider_key
string
required
updated_at
integer<int64>
required
client_id
string | null

OIDC client id. null for non-OIDC kinds.

default_role_id
string | null

Catch-all role granted to JIT members with no matching group mapping. null = no catch-all role.

display_name
string | null
groups_claim
string | null
issuer
string | null

OIDC issuer. null for non-OIDC kinds (e.g. SAML), whose connection details live in kind-specific fields added when those kinds ship.

scopes
string | null