Getting Started with Sequel

This page will help you get started with sequel-docs. You'll be up and running in a jiffy!

:lock: Fetch your auth token

Our APIs are protected using JWT access tokens, so the first step is to fetch an auth token using the following details.

"client_id":copy from the Integrations page in your Introvoke Admin Dashboard under APIs
"client_secret":copy from the Integrations page in your Introvoke Admin Dashboard under APIs
"audience":https://www.introvoke.com/api”
"grant_type":"client_credentials"

Here is an example cURL:

curl --request POST \
  --url https://api.introvoke.com/api/oauth/token \
  --header 'content-type: application/json' \
  --data '{"client_id":"CODE_HERE","client_secret":"CODE_HERE","audience":"https://www.introvoke.com/api","grant_type":"client_credentials"}'

Example response:

{
  "access_token": "{returned_value}",
  "token_type": "Bearer"
}

That's it! :white-check-mark:

Now that you have an access_token, you are able to make authorized calls to the API calls. To embed an introvoke component have a look at our API section.


What’s Next

The first step is to create a new event. You can do it from the admins dashboard, or use the APIs to automate the process.