cURL
curl --request PUT \
--url https://api.rownd.io/applications/{app}/oidc-clients/{client} \
--header 'Content-Type: application/json' \
--header 'x-rownd-app-key: <api-key>' \
--header 'x-rownd-app-secret: <api-key>' \
--data '
{
"name": "Example OIDC Provider",
"description": "Example OIDC Provider",
"config": {
"allowed_origins": [
"https://example.com"
],
"redirect_uris": [
"https://example.com/callback"
],
"post_logout_uris": [
"https://example.com/logout"
],
"logo_uri": "https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png",
"logo_dark_mode_uri": "https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png",
"allowed_scopes": [
"openid",
"profile",
"email"
],
"hub_title": "Sign in to My App with Another App",
"hub_dark_mode": "enabled",
"hub_show_logos": true,
"is_pkce_supported": true
}
}
'import requests
url = "https://api.rownd.io/applications/{app}/oidc-clients/{client}"
payload = {
"name": "Example OIDC Provider",
"description": "Example OIDC Provider",
"config": {
"allowed_origins": ["https://example.com"],
"redirect_uris": ["https://example.com/callback"],
"post_logout_uris": ["https://example.com/logout"],
"logo_uri": "https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png",
"logo_dark_mode_uri": "https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png",
"allowed_scopes": ["openid", "profile", "email"],
"hub_title": "Sign in to My App with Another App",
"hub_dark_mode": "enabled",
"hub_show_logos": True,
"is_pkce_supported": True
}
}
headers = {
"x-rownd-app-key": "<api-key>",
"x-rownd-app-secret": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {
'x-rownd-app-key': '<api-key>',
'x-rownd-app-secret': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
name: 'Example OIDC Provider',
description: 'Example OIDC Provider',
config: {
allowed_origins: ['https://example.com'],
redirect_uris: ['https://example.com/callback'],
post_logout_uris: ['https://example.com/logout'],
logo_uri: 'https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png',
logo_dark_mode_uri: 'https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png',
allowed_scopes: ['openid', 'profile', 'email'],
hub_title: 'Sign in to My App with Another App',
hub_dark_mode: 'enabled',
hub_show_logos: true,
is_pkce_supported: true
}
})
};
fetch('https://api.rownd.io/applications/{app}/oidc-clients/{client}', 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.rownd.io/applications/{app}/oidc-clients/{client}",
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' => 'Example OIDC Provider',
'description' => 'Example OIDC Provider',
'config' => [
'allowed_origins' => [
'https://example.com'
],
'redirect_uris' => [
'https://example.com/callback'
],
'post_logout_uris' => [
'https://example.com/logout'
],
'logo_uri' => 'https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png',
'logo_dark_mode_uri' => 'https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png',
'allowed_scopes' => [
'openid',
'profile',
'email'
],
'hub_title' => 'Sign in to My App with Another App',
'hub_dark_mode' => 'enabled',
'hub_show_logos' => true,
'is_pkce_supported' => true
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-rownd-app-key: <api-key>",
"x-rownd-app-secret: <api-key>"
],
]);
$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.rownd.io/applications/{app}/oidc-clients/{client}"
payload := strings.NewReader("{\n \"name\": \"Example OIDC Provider\",\n \"description\": \"Example OIDC Provider\",\n \"config\": {\n \"allowed_origins\": [\n \"https://example.com\"\n ],\n \"redirect_uris\": [\n \"https://example.com/callback\"\n ],\n \"post_logout_uris\": [\n \"https://example.com/logout\"\n ],\n \"logo_uri\": \"https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png\",\n \"logo_dark_mode_uri\": \"https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png\",\n \"allowed_scopes\": [\n \"openid\",\n \"profile\",\n \"email\"\n ],\n \"hub_title\": \"Sign in to My App with Another App\",\n \"hub_dark_mode\": \"enabled\",\n \"hub_show_logos\": true,\n \"is_pkce_supported\": true\n }\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("x-rownd-app-key", "<api-key>")
req.Header.Add("x-rownd-app-secret", "<api-key>")
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.rownd.io/applications/{app}/oidc-clients/{client}")
.header("x-rownd-app-key", "<api-key>")
.header("x-rownd-app-secret", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Example OIDC Provider\",\n \"description\": \"Example OIDC Provider\",\n \"config\": {\n \"allowed_origins\": [\n \"https://example.com\"\n ],\n \"redirect_uris\": [\n \"https://example.com/callback\"\n ],\n \"post_logout_uris\": [\n \"https://example.com/logout\"\n ],\n \"logo_uri\": \"https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png\",\n \"logo_dark_mode_uri\": \"https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png\",\n \"allowed_scopes\": [\n \"openid\",\n \"profile\",\n \"email\"\n ],\n \"hub_title\": \"Sign in to My App with Another App\",\n \"hub_dark_mode\": \"enabled\",\n \"hub_show_logos\": true,\n \"is_pkce_supported\": true\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rownd.io/applications/{app}/oidc-clients/{client}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["x-rownd-app-key"] = '<api-key>'
request["x-rownd-app-secret"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Example OIDC Provider\",\n \"description\": \"Example OIDC Provider\",\n \"config\": {\n \"allowed_origins\": [\n \"https://example.com\"\n ],\n \"redirect_uris\": [\n \"https://example.com/callback\"\n ],\n \"post_logout_uris\": [\n \"https://example.com/logout\"\n ],\n \"logo_uri\": \"https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png\",\n \"logo_dark_mode_uri\": \"https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png\",\n \"allowed_scopes\": [\n \"openid\",\n \"profile\",\n \"email\"\n ],\n \"hub_title\": \"Sign in to My App with Another App\",\n \"hub_dark_mode\": \"enabled\",\n \"hub_show_logos\": true,\n \"is_pkce_supported\": true\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "oidc_client_ck9c1glf0100001l2f7z8z9z9",
"app_id": "app_ckl8bcf1g000001l2f7z8z9z9",
"name": "Example OIDC Provider",
"description": "Example OIDC Provider",
"config": {
"allowed_origins": [
"https://example.com"
],
"redirect_uris": [
"https://example.com/callback"
],
"post_logout_uris": [
"https://example.com/logout"
],
"logo_uri": "https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png",
"logo_dark_mode_uri": "https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png",
"allowed_scopes": [
"openid",
"profile",
"email"
],
"hub_title": "Sign in to My App with Another App",
"hub_dark_mode": "enabled",
"hub_show_logos": true,
"is_pkce_supported": true
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"credentials": [
{
"name": "Production API Key",
"client_id": "<string>",
"secret": "<string>",
"expires": "2024-12-31T23:59:59Z",
"application": "app_k3y1qwerty12345",
"app_variant_id": "variant_fgy1qw367fty121lm",
"oidc_client_configuration_id": "oidcc_k3y1qwerty12345",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
]
}OpenID Clients
Update an OpenID Connect client
Platform API for updating an OIDC client for an application
PUT
/
applications
/
{app}
/
oidc-clients
/
{client}
cURL
curl --request PUT \
--url https://api.rownd.io/applications/{app}/oidc-clients/{client} \
--header 'Content-Type: application/json' \
--header 'x-rownd-app-key: <api-key>' \
--header 'x-rownd-app-secret: <api-key>' \
--data '
{
"name": "Example OIDC Provider",
"description": "Example OIDC Provider",
"config": {
"allowed_origins": [
"https://example.com"
],
"redirect_uris": [
"https://example.com/callback"
],
"post_logout_uris": [
"https://example.com/logout"
],
"logo_uri": "https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png",
"logo_dark_mode_uri": "https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png",
"allowed_scopes": [
"openid",
"profile",
"email"
],
"hub_title": "Sign in to My App with Another App",
"hub_dark_mode": "enabled",
"hub_show_logos": true,
"is_pkce_supported": true
}
}
'import requests
url = "https://api.rownd.io/applications/{app}/oidc-clients/{client}"
payload = {
"name": "Example OIDC Provider",
"description": "Example OIDC Provider",
"config": {
"allowed_origins": ["https://example.com"],
"redirect_uris": ["https://example.com/callback"],
"post_logout_uris": ["https://example.com/logout"],
"logo_uri": "https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png",
"logo_dark_mode_uri": "https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png",
"allowed_scopes": ["openid", "profile", "email"],
"hub_title": "Sign in to My App with Another App",
"hub_dark_mode": "enabled",
"hub_show_logos": True,
"is_pkce_supported": True
}
}
headers = {
"x-rownd-app-key": "<api-key>",
"x-rownd-app-secret": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {
'x-rownd-app-key': '<api-key>',
'x-rownd-app-secret': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
name: 'Example OIDC Provider',
description: 'Example OIDC Provider',
config: {
allowed_origins: ['https://example.com'],
redirect_uris: ['https://example.com/callback'],
post_logout_uris: ['https://example.com/logout'],
logo_uri: 'https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png',
logo_dark_mode_uri: 'https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png',
allowed_scopes: ['openid', 'profile', 'email'],
hub_title: 'Sign in to My App with Another App',
hub_dark_mode: 'enabled',
hub_show_logos: true,
is_pkce_supported: true
}
})
};
fetch('https://api.rownd.io/applications/{app}/oidc-clients/{client}', 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.rownd.io/applications/{app}/oidc-clients/{client}",
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' => 'Example OIDC Provider',
'description' => 'Example OIDC Provider',
'config' => [
'allowed_origins' => [
'https://example.com'
],
'redirect_uris' => [
'https://example.com/callback'
],
'post_logout_uris' => [
'https://example.com/logout'
],
'logo_uri' => 'https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png',
'logo_dark_mode_uri' => 'https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png',
'allowed_scopes' => [
'openid',
'profile',
'email'
],
'hub_title' => 'Sign in to My App with Another App',
'hub_dark_mode' => 'enabled',
'hub_show_logos' => true,
'is_pkce_supported' => true
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-rownd-app-key: <api-key>",
"x-rownd-app-secret: <api-key>"
],
]);
$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.rownd.io/applications/{app}/oidc-clients/{client}"
payload := strings.NewReader("{\n \"name\": \"Example OIDC Provider\",\n \"description\": \"Example OIDC Provider\",\n \"config\": {\n \"allowed_origins\": [\n \"https://example.com\"\n ],\n \"redirect_uris\": [\n \"https://example.com/callback\"\n ],\n \"post_logout_uris\": [\n \"https://example.com/logout\"\n ],\n \"logo_uri\": \"https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png\",\n \"logo_dark_mode_uri\": \"https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png\",\n \"allowed_scopes\": [\n \"openid\",\n \"profile\",\n \"email\"\n ],\n \"hub_title\": \"Sign in to My App with Another App\",\n \"hub_dark_mode\": \"enabled\",\n \"hub_show_logos\": true,\n \"is_pkce_supported\": true\n }\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("x-rownd-app-key", "<api-key>")
req.Header.Add("x-rownd-app-secret", "<api-key>")
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.rownd.io/applications/{app}/oidc-clients/{client}")
.header("x-rownd-app-key", "<api-key>")
.header("x-rownd-app-secret", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Example OIDC Provider\",\n \"description\": \"Example OIDC Provider\",\n \"config\": {\n \"allowed_origins\": [\n \"https://example.com\"\n ],\n \"redirect_uris\": [\n \"https://example.com/callback\"\n ],\n \"post_logout_uris\": [\n \"https://example.com/logout\"\n ],\n \"logo_uri\": \"https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png\",\n \"logo_dark_mode_uri\": \"https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png\",\n \"allowed_scopes\": [\n \"openid\",\n \"profile\",\n \"email\"\n ],\n \"hub_title\": \"Sign in to My App with Another App\",\n \"hub_dark_mode\": \"enabled\",\n \"hub_show_logos\": true,\n \"is_pkce_supported\": true\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rownd.io/applications/{app}/oidc-clients/{client}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["x-rownd-app-key"] = '<api-key>'
request["x-rownd-app-secret"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Example OIDC Provider\",\n \"description\": \"Example OIDC Provider\",\n \"config\": {\n \"allowed_origins\": [\n \"https://example.com\"\n ],\n \"redirect_uris\": [\n \"https://example.com/callback\"\n ],\n \"post_logout_uris\": [\n \"https://example.com/logout\"\n ],\n \"logo_uri\": \"https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png\",\n \"logo_dark_mode_uri\": \"https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png\",\n \"allowed_scopes\": [\n \"openid\",\n \"profile\",\n \"email\"\n ],\n \"hub_title\": \"Sign in to My App with Another App\",\n \"hub_dark_mode\": \"enabled\",\n \"hub_show_logos\": true,\n \"is_pkce_supported\": true\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "oidc_client_ck9c1glf0100001l2f7z8z9z9",
"app_id": "app_ckl8bcf1g000001l2f7z8z9z9",
"name": "Example OIDC Provider",
"description": "Example OIDC Provider",
"config": {
"allowed_origins": [
"https://example.com"
],
"redirect_uris": [
"https://example.com/callback"
],
"post_logout_uris": [
"https://example.com/logout"
],
"logo_uri": "https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png",
"logo_dark_mode_uri": "https://storage.rownd.io/logo-oidc-client-app_1234_oidcc_5667-filename.png",
"allowed_scopes": [
"openid",
"profile",
"email"
],
"hub_title": "Sign in to My App with Another App",
"hub_dark_mode": "enabled",
"hub_show_logos": true,
"is_pkce_supported": true
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"credentials": [
{
"name": "Production API Key",
"client_id": "<string>",
"secret": "<string>",
"expires": "2024-12-31T23:59:59Z",
"application": "app_k3y1qwerty12345",
"app_variant_id": "variant_fgy1qw367fty121lm",
"oidc_client_configuration_id": "oidcc_k3y1qwerty12345",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
]
}Authorizations
appKey & appSecrethubAccessTokenForRowndApi
The publishable key of your application credentials. (more details)
The private secret of your application credentials. (more details)
Body
application/json
Response
200 - application/json
OIDC client updated successfully
Unique identifier for the OIDC client
Example:
"oidc_client_ck9c1glf0100001l2f7z8z9z9"
Application identifier associated with the OIDC client
Example:
"app_ckl8bcf1g000001l2f7z8z9z9"
Name of the OIDC client
Example:
"Example OIDC Provider"
Description of the OIDC client
Example:
"Example OIDC Provider"
Show child attributes
Show child attributes
The ISO 8601 date-time that the resource was created
The ISO 8601 date-time that the resource was updated
Credentials associated with the OIDC client
Show child attributes
Show child attributes
⌘I