Public API

02/2024

Fetch end user information and react to Identity Intelligence threat detection using Cisco Identity Intelligence.

Authorization

Prerequisites

Generate client API credentials:

  1. Sign in to Cisco Identity Intelligence.

  2. From the Integrations tab, click Add Integration.

  3. Scroll down and click Add API Client.

  4. Provide a Name and Description.

  5. Click Save and generate credentials.

  6. Click Copy all to copy the credentials to your clipboard.

Exchange the client credentials for an access token

  1. Send a POST request to the tokenUrl with the following body:

    {
      "client_id": "<client ID of the API client>",
      "client_secret": "<client secret of the API client>",
      "audience": "<audience of the API client>",
      "grant_type": "client_credentials"
    }
  2. Extract the access_token from the response. An access token is valid for 10 hours.

  3. When invoking the public API requests set an Authorization header with the value Bearer <value ofaccess_token>

Using a Postman Collection

Import the attached Postman collection and follow the instructions in the collection overview tab.

Last updated