Live Agent has been put in maintenance mode. The product will continue to be maintained in the foreseeable future. Users can continue to fully rely on Live Agent being available. In future releases, only security updates and bug fixes will be provided; no new features will be released.
The Cognigy Live Agent API provides access to conversations, teams, and agents. It enables you to integrate, automate, and analyze workflows beyond the Live Agent GUI.
Access the API
The API Base URL and an access token are required to access the API.
Choose the API Base URL
The API Base URL is the endpoint for accessing the Cognigy Live Agent OpenAPI.
The table outlines the base URLs for different environments.
Get an Access Token
To use the Live Agent API, you need to get an access token. The token must be passed for each method in the HTTP-Authorization header.
- In the bottom-left corner of the Live Agent interface, click your profile icon and select Profile Settings.
- In the Access Token section, copy the token and save it for later use.
Make your First API Request
Create a request to get conversation metadata. Select one of the options to make the request:
- Open your terminal to create a
GET request:
- Replace the following placeholders in request:
- Replace
{api_base_url} with the base URL of your environment. For example, for the trial environment, use liveagent-trial.cognigy.ai.
- Replace
{account_id} with your Live Agent account ID. Find the ID in the Live Agent URL. For example, in https://liveagent-trial.cognigy.ai/accounts/12345/conversations, the account ID is 12345.
- Replace
your_access_token with the access token you saved.
- Open Postman and create a
GET request with the following URL: https://{api_base_url}/api/v1/accounts/{account_id}/conversations/meta.
- Replace the following placeholders in request:
- Replace
{api_base_url} with the base URL of your environment. For example, for the trial environment, use liveagent-trial.cognigy.ai.
- Replace
{account_id} with your Live Agent account ID. Find the ID in the Live Agent URL. For example, in https://liveagent-trial.cognigy.ai/accounts/12345/conversations, the account ID is 12345.
- Add the authorization header:
- Go to the Headers tab.
- Add the
api_access_token key and set the value to your_access_token.
- Click Send to execute the request.
You should receive a
200 OK response containing the following JSON:
Troubleshooting
If you receive a 401 Unauthorized error, ensure that you have included the correct access token in the request header.