SSO Users

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

SSO Users object

Attributes

object

String

Type of the object, fixed as sso.tenant

id

String

The unique identifier of the sso tenant

sso_tenant

Object

sso_user_id

String

The SSO Tenant ID associated with this user

email

String

The email address of the SSO user

first_name

String

The first name of the SSO user

last_name

String

The last name of the SSO user

profiles

Object

List of SSO user profiles associated with this user

created_at

Date

The ISO 8601 timestamp when the sso user was created

updated_at

Date

The ISO 8601 timestamp when the sso user was last updated

{
"object": "sso.tenant",
"sso_tenant": {
"object": "sso.tenant"
},
"profiles": [
{
"object": "sso.user_profile",
"sso_tenant": {
"object": "sso.tenant"
}
},
{
"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

profile_id

UnionOptional

consumer_profile_id

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

Get SSO Tenant by ID

Retrieves details for a specific sso tenant by its ID.

URL Parameters

sso_user_id

String

The unique identifier for the sso_user

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