Getting Started with Tessell API
This page will help you get started with Tessell API. You'll be up and running in a jiffy!
Authorization Token
To access Tessell APIs, you will require Authorization Token. Here is how you can get Authorisation Token for yourself:
- Get Tenant ID and API Key while getting onboarded to Tessell.
- Use these params in the API # /iam/authorize as following:
curl --request POST
--url <https://api.console.tessell.com/iam/authorize>
--header 'accept: application/json'
--header 'content-type: application/json'
--header 'tenant-id: here-goes-your-tenant'
--data '
{
"apiKey": "here-goes-your-api-key"
}
'
- You can use https://developer.tessell.com/reference/authorizeapikey this page as well to get Authorization Token
- In response, you will get an Access Token which is Authorization Token.
- You can use this Authorization Token to access any API
Updated 7 months ago
What’s Next