A SAML Connection holds configuration data required for facilitating a SAML flow between your Clerk Instance (SP) and a particular SAML IdP.
This request returns the list of SAML Connections for an instance.
Results can be paginated using the optional limit
and offset
query parameters.
The SAML Connections are ordered by descending creation date and the most recent will be returned first.
Note: This is a Private Beta feature and it is currently hidden behind a feature flag. Reach out to us via Intercom to try it out.
A list of SAML Connections
Payment required
Authorization invalid
Invalid request parameters
{- "data": [
- {
- "object": "saml_connection",
- "id": "string",
- "name": "string",
- "domain": "string",
- "idp_entity_id": "string",
- "idp_sso_url": "string",
- "idp_certificate": "string",
- "acs_url": "string",
- "sp_entity_id": "string",
- "active": true,
- "provider": "string",
- "user_count": 0,
- "sync_user_attributes": true,
- "created_at": 0,
- "updated_at": 0
}
], - "total_count": 0
}
Creates a new SAML Connection.
Note: This is a Private Beta feature and it is currently hidden behind a feature flag. Reach out to us via Intercom to try it out.
A SAML Connection
Payment required
Authorization invalid
Invalid request parameters
{- "name": "string",
- "domain": "string",
- "idp_entity_id": "string",
- "idp_sso_url": "string",
- "idp_certificate": "string"
}
{- "object": "saml_connection",
- "id": "string",
- "name": "string",
- "domain": "string",
- "idp_entity_id": "string",
- "idp_sso_url": "string",
- "idp_certificate": "string",
- "acs_url": "string",
- "sp_entity_id": "string",
- "active": true,
- "provider": "string",
- "user_count": 0,
- "sync_user_attributes": true,
- "created_at": 0,
- "updated_at": 0
}
Fetches the SAML Connection whose ID matches the provided id
in the path.
Note: This is a Private Beta feature and it is currently hidden behind a feature flag. Reach out to us via Intercom to try it out.
A SAML Connection
Payment required
Authorization invalid
Resource not found
{- "object": "saml_connection",
- "id": "string",
- "name": "string",
- "domain": "string",
- "idp_entity_id": "string",
- "idp_sso_url": "string",
- "idp_certificate": "string",
- "acs_url": "string",
- "sp_entity_id": "string",
- "active": true,
- "provider": "string",
- "user_count": 0,
- "sync_user_attributes": true,
- "created_at": 0,
- "updated_at": 0
}
Updates an existing SAML Connection
Note: This is a Private Beta feature and it is currently hidden behind a feature flag. Reach out to us via Intercom to try it out.
A SAML Connection
Payment required
Authorization invalid
Resource not found
Invalid request parameters
{- "name": "string",
- "domain": "string",
- "idp_entity_id": "string",
- "idp_sso_url": "string",
- "idp_certificate": "string",
- "active": true,
- "sync_user_attributes": true
}
{- "object": "saml_connection",
- "id": "string",
- "name": "string",
- "domain": "string",
- "idp_entity_id": "string",
- "idp_sso_url": "string",
- "idp_certificate": "string",
- "acs_url": "string",
- "sp_entity_id": "string",
- "active": true,
- "provider": "string",
- "user_count": 0,
- "sync_user_attributes": true,
- "created_at": 0,
- "updated_at": 0
}
Deletes the given SAML Connection.
Note: This is a Private Beta feature and it is currently hidden behind a feature flag. Reach out to us via Intercom to try it out.
Deleted Object
Payment required
Authorization invalid
Resource not found
{- "object": "string",
- "id": "string",
- "slug": "string",
- "deleted": true
}