Get SSO integration

Get SSO Integration

Returns information about a specific SSO integration in your account.

Endpoint

GET v5/sso/{sso_id}

Requires authentication

Path Parameters

Identifies the SSO integration to retrieve.

sso_id
string
required
The ID of the SSO integration to retrieve.

Query Parameters

This endpoint does not accept additional query parameters beyond authentication credentials.

None

Response

Returns a keyed object containing the requested SSO integration, where the key is the SSO ID.

result_ok
boolean
Whether the request succeeded.
data
object
Keyed object containing the requested SSO integration. The 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/YOUR_SSO_ID?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": "1234abcd5678efgh9101112",
      "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"
    }
  }
}