Skip to main content
GET
/
management
/
v2.0
/
vendor
Returns info about the product.
curl --request GET \
  --url https://api-trial.cognigy.ai/new/management/v2.0/vendor \
  --header 'Authorization: Basic <encoded-value>'
{
  "version": "<string>",
  "frontendBaseUrl": "<string>",
  "hasLicenseAgreement": "<string>",
  "maxContactProfileTTL": 123,
  "maxConversationTTL": 123,
  "maxSessionStateTTL": 123
}

Authorizations

Authorization
string
header
required

Basic Authentication used by routes designed for the Management-UI.

Headers

Accept
enum<string>

The default media type is application/hal+json. Use application/json for pure data results.

Available options:
application/json,
application/hal+json,
application/xml,
text/xml,
text/csv

Response

Returns some product information like the version etc.

version
string

The product version we are running

frontendBaseUrl
string

Base URL to the frontend UI

hasLicenseAgreement
string

Flag whether users need to agree the license agreement within this env

maxContactProfileTTL
number
maxConversationTTL
number
maxSessionStateTTL
number
I