Learn how to authenticate to the Corti API and make your first request
Get access
Walkthrough video
Authenticate
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