{ "opencollection": "1.0.0", "info": { "name": "Clerk Backend Account Portal SAML Connections API", "version": "2025-11-10" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "SAML Connections", "type": "folder" }, "items": [ { "info": { "name": "Get a List of SAML Connections for an Instance", "type": "http" }, "http": { "method": "GET", "url": "https://api.clerk.com/v1/saml_connections", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Applies a limit to the number of results returned.\nCan be used for paginating the results together with `offset`." }, { "name": "offset", "value": "", "type": "query", "description": "Skip the first `offset` results when paginating.\nNeeds to be an integer greater or equal to zero.\nTo be used in conjunction with `limit`." }, { "name": "query", "value": "", "type": "query", "description": "Returns SAML connections that have a name that matches the given query, via case-insensitive partial match." }, { "name": "order_by", "value": "", "type": "query", "description": "Sorts organizations memberships by phone_number, email_address, created_at, first_name, last_name or username.\nBy prepending one of those values with + or -,\nwe can choose to sort in ascending (ASC) or descending (DESC) order." }, { "name": "organization_id", "value": "", "type": "query", "description": "Returns SAML connections that have an associated organization ID to the\ngiven organizations.\nFor each organization ID, the `+` and `-` can be\nprepended to the ID, which denote whether the\nrespective organization should be included or\nexcluded from the result set.\nAccepts up to 100 organization IDs." } ] }, "docs": "Returns the list of SAML Connections for an instance.\nResults can be paginated using the optional `limit` and `offset` query parameters.\nThe SAML Connections are ordered by descending creation date and the most recent will be returned first.\nDeprecated: Use the Enterprise Connections API instead. This endpoint will be removed in future versions." }, { "info": { "name": "Create a SAML Connection", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/saml_connections", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new SAML Connection.\nDeprecated: Use the Enterprise Connections API instead. This endpoint will be removed in future versions." }, { "info": { "name": "Retrieve a SAML Connection by ID", "type": "http" }, "http": { "method": "GET", "url": "https://api.clerk.com/v1/saml_connections/:saml_connection_id", "params": [ { "name": "saml_connection_id", "value": "", "type": "path", "description": "The ID of the SAML Connection" } ] }, "docs": "Fetches the SAML Connection whose ID matches the provided `saml_connection_id` in the path.\nDeprecated: Use the Enterprise Connections API instead. This endpoint will be removed in future versions." }, { "info": { "name": "Update a SAML Connection", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.clerk.com/v1/saml_connections/:saml_connection_id", "params": [ { "name": "saml_connection_id", "value": "", "type": "path", "description": "The ID of the SAML Connection to update" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the SAML Connection whose ID matches the provided `id` in the path.\nDeprecated: Use the Enterprise Connections API instead. This endpoint will be removed in future versions." }, { "info": { "name": "Delete a SAML Connection", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.clerk.com/v1/saml_connections/:saml_connection_id", "params": [ { "name": "saml_connection_id", "value": "", "type": "path", "description": "The ID of the SAML Connection to delete" } ] }, "docs": "Deletes the SAML Connection whose ID matches the provided `id` in the path.\nDeprecated: Use the Enterprise Connections API instead. This endpoint will be removed in future versions." } ] } ], "bundled": true }