v53

OpenAPI 3.1.0raw.githubusercontent.com2026-08-041,1941,9384.1 MB
Authentication Providers

List all SSO authentication providers

Returns a list of your SSO authentication providers.

get/authentication_providers

Query parameters

sort'name' | '-name' | 'short_name' | '-short_name' | 'active' | '-active' | 'created_at' | '-created_at' | 'updated_at' | '-updated_at'
Example:name

Specifies the sort order for results. By default sorting direction is ascending. To have the results sorted in descending order add the <code>-</code> prefix.<br/><br/> That is: <ul>

<li> <code>name</code>: sorts the result by the <code>name</code> field in ascending order. </li> <li> <code>-name</code>: sorts the result by the <code>name</code> field in descending order. </li> </ul><br/>If not given, results are sorted by <code>created_at</code> in descending order.
numberinteger

The page number to load

sizeinteger

The size of the page

Consolidated page parameter (deepObject style). Originally: page[number], page[size]

Response

Successful response

Example response

{
  "data": [
    {
      "activated_at": "2018-02-02T22:25:27.521Z",
      "active": true,
      "created_at": "2018-02-02T22:25:27.521Z",
      "id": "35146afd-df93-4963-b1e9-1a085e2ae874",
      "name": "Okta",
      "organization_id": "24b4a4bb-c4df-46ad-bbcb-23fc741c5ad7",
      "record_type": "authentication_provider",
      "settings": {
        "assertion_consumer_service_url": "https://api.telnyx.com/sso/saml/auth/myorg",
        "idp_attribute_names": {
          "email": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress"
        },
        "idp_cert_fingerprint": "13:38:C7:BB:C9:FF:4A:70:38:3A:E3:D9:5C:CD:DB:2E:50:1E:80:A7",
        "idp_cert_fingerprint_algorithm": "sha256",
        "idp_certificate": "-----BEGIN CERTIFICATE-----\nMIIC...\n-----END CERTIFICATE-----",
        "idp_entity_id": "https://myorg.myidp.com/saml/metadata",
        "idp_slo_target_url": "https://myorg.myidp.com/trust/saml2/http-redirect/slo",
        "idp_sso_target_url": "https://myorg.myidp.com/trust/saml2/http-post/sso",
        "name_identifier_format": "urn:oasis:names:tc:SAML:1.1:nameid-format",
        "service_provider_entity_id": "https://api.telnyx.com/sso/saml/metadata/myorg",
        "service_provider_login_url": "https://api.telnyx.com/sso/myorg"
      },
      "short_name": "myorg",
      "updated_at": "2018-02-02T22:25:27.521Z"
    }
  ],
  "meta": {
    "page_number": 2,
    "page_size": 25,
    "total_pages": 3,
    "total_results": 55
  }
}