Learn how to authenticate to the Corti API and make your first request
Get access
Walkthrough video
Authenticate
client credentials
grant type. This can be extended upon request to support authentication of individual users of your application, including options to utilize SSO or SAML.Click here to read more about how to appropriately use OAuth for your workflow needs.Content-Type: "application/x-www-form-urlencoded"
looks like this:access_token
:Code examples
Make an API request
access_token
to authenticate any API request. The baseURL is dependent on the environment:access_token
should be passed as part of the Request Header
. Additionally you need to include the Tenant-Name
parameter:access_token
should be passed in as URL parameter. The Tenant-Name
is already part of the WebSocket url returned with the create interaction request:Walkthrough video
Python app example
Walkthrough video