Get an Access Token
Before you get started
You'll need your API Credentials.
Get Your Access Token
- Send a
POST
request tohttps://api.tackle.io/v1/authenticate
following the Authentication API Reference :
curl -L -X POST 'https://api.tackle.io/v1/authenticate' \
-H 'Content-Type: application/json' \
--data-raw '{
"client_secret": "your-application-client-secret",
"client_id": "your-application-client-id",
"grant_type": "client_credentials"
}'
- If successful, you should receive a
200 OK
response similar to the following:
{
"access_token": "your-jwt-here",
"token_type": "bearer",
"expires_in": 5400
}
Now you have your access token, and you're ready to use the Tackle API.
The token expires in 5400 seconds or 90 minutes.
Updated 7 months ago
Whatโs Next