SSO Profiles

SSO Profiles allow you to manage single sign-on configurations for your instance.

SSO Profiles object

Attributes

object

String

Type of the object, fixed as sso.user_profile

id

String

The unique identifier of the sso tenant

sso_connection_id

String

The SSO Connection ID associated with this user profile

sso_tenant

Object

email

String

The email address of the SSO user

uid

String

The unique identifier of the SSO user provided by the SSO provider

sub

String

The subject identifier of the SSO user

first_name

String

The first name of the SSO user

last_name

String

The last name of the SSO user

roles

Array of Strings

The roles assigned to the SSO user

groups

Array of Strings

The groups the SSO user belongs to

created_at

Date

The ISO 8601 timestamp when the sso user profile was created

updated_at

Date

The ISO 8601 timestamp when the sso user profile was last updated

{
"object": "sso.user_profile",
"sso_tenant": {
"object": "sso.tenant"
}
}

List SSO Tenants

Returns a paginated list of sso tenants.

Query Parameters

limit

NumberOptional

after

StringOptional

before

StringOptional

cursor

StringOptional

order

EnumOptional

user_id

UnionOptional

consumer_profile_id

UnionOptional
GEThttp://api.metorial.com/sso-profiles
curl -X GET "https://api.metorial.com/sso-profiles" \
-H "Authorization: Bearer metorial_sk_..."

Get SSO Tenant by ID

Retrieves details for a specific sso tenant by its ID.

URL Parameters

sso_profile_id

String

The unique identifier for the sso_profile

GEThttp://api.metorial.com/sso-profiles/:sso_profile_id
curl -X GET "https://api.metorial.com/sso-profiles/sso_Rm4Mnheq2bfEPhBhP7SY" \
-H "Authorization: Bearer metorial_sk_..."