Getting Started with Sequel
This page will help you get started with sequel-docs. You'll be up and running in a jiffy!
π 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.
- Execute a POST call to https://api.introvoke.com/api/oauth/token
- Set the header to content-type: application/json
- Add a JSON body with the following:
"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! β
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.
Updated over 2 years ago
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.