Skip to content

List identity providers

GET
/v1/identity-providers
curl --request GET \
--url 'https://example.com/v1/identity-providers?limit=50' \
--header 'X-API-Key: <X-API-Key>' \
--header 'X-Tenant-ID: 2489E9AD-2EE2-8E00-8EC9-32D5F69181C0'
X-Tenant-ID
required
string format: uuid

Tenant identifier. Must match the tenant associated with the credential. Returns 403 tenant_mismatch if the credential and header belong to different tenants.

limit
integer
default: 50 <= 250

Maximum number of items to return.

cursor
string

Opaque pagination cursor from a previous response. Omit for the first page.

enabled
boolean

Filter by enabled status.

OK

Media type application/json
object
data
required
Array<object>
object
id
required
string format: uuid
name
required
string
provider_type
required
string
Allowed values: aws_identity_center okta azure_ad google_workspace slack github pagerduty custom_scim
config
required
object
key
additional properties
any
enabled
required
boolean
last_synced_at
string format: date-time
nullable
sync_status
required
string
Allowed values: pending syncing synced failed
sync_error
string
nullable
created_at
required
string format: date-time
updated_at
required
string format: date-time
next_cursor
string
nullable
has_more
required
boolean
Example
{
"data": [
{
"provider_type": "aws_identity_center",
"sync_status": "pending"
}
]
}

Unauthenticated

Media type application/json
object
code
required

Machine-readable error code (e.g. “not_found”, “tenant_mismatch”).

string
message
required

Human-readable description of the error.

string
details

Optional additional context about the error.

object
key
additional properties
any
notices

Policy notices from determining Cedar rules, if applicable.

Array<string>
Example generated
{
"code": "example",
"message": "example",
"details": {},
"notices": [
"example"
]
}

Forbidden

Media type application/json
object
code
required

Machine-readable error code (e.g. “not_found”, “tenant_mismatch”).

string
message
required

Human-readable description of the error.

string
details

Optional additional context about the error.

object
key
additional properties
any
notices

Policy notices from determining Cedar rules, if applicable.

Array<string>
Example generated
{
"code": "example",
"message": "example",
"details": {},
"notices": [
"example"
]
}