List SSO integrations

List SSO Integrations

Returns a list of all SSO integrations configured in your account.

Endpoint

GET v5/sso

Requires authentication

Path Parameters

None

Query Parameters

All query parameters are optional.

page
integer
Page number to return. Defaults to 1.
resultsperpage
integer
Number of results to return per page.

Response

Returns a keyed object of SSO integration objects, where each key is the SSO ID.

result_ok
boolean
Whether the request succeeded.
data
object
Keyed object of SSO integration objects, where each key is the SSO integration ID.

Examples

Note GET requests are cached for 60 seconds. Repeated identical requests within that window will return cached results.

Request (cURL)
curl -X GET "https://api.alchemer.com/v5/sso?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Response
{
  "result_ok": true,
  "data": {
    "YOUR_SSO_ID": {
      "id": "YOUR_SSO_ID",
      "entity_id": "https://example.alchemer.com/adfs/services/trust",
      "login": "https://example.alchemer.com/adfs/ls/",
      "logout": "https://example.alchemer.com/adfs/ls/",
      "cert_fingerprint": "abcd1234efgh5678ijkl9101112",
      "customerid": "YOUR_CUSTOMER_ID",
      "created": "2017-02-06 15:51:04",
      "dModified": "2017-06-22 17:23:43",
      "status": "Active",
      "cert_domain": null,
      "user_last_modified": "0",
      "creatusers": "false",
      "userteam": "0",
      "userlicense": "0",
      "userrole": "2",
      "iUserIDCreated": "YOUR_USER_ID",
      "usersolo": "true",
      "email_notification": null,
      "disable_users": "0",
      "weeks_to_disable": null,
      "type": "Survey",
      "attributes": [
        "Dept",
        "Street",
        "DisplayName"
      ],
      "name": "Survey Respondent Authentication",
      "force_sso_login": "0",
      "user_deleted": null,
      "deleted": null,
      "sp_metadata": "app.alchemer.com/login/getsamlxml/idp/YOUR_SSO_ID",
      "sp_login": "app.alchemer.com/ssologin.php?idp=YOUR_SSO_ID"
    }
  }
}