Get Access Token
Authentication
Get Access Token
Obtain an OAuth 2.0 access token to authenticate your API requests.
POST
Get Access Token
Authentication
The Ibantrack API uses the OAuth 2.0 Client Credentials flow where you exchange yourclient_id and client_secret for a temporary access_token.
Security Best Practices
Keep your credentials secret. Your Client ID and Client Secret have the power to perform financial verifications and incur costs. Never share them in client-side code, public repositories, or mobile applications.
Request Details
This specific endpoint requires the request body to be formatted asapplication/x-www-form-urlencoded.
Required Parameters
| Parameter | Value | Description |
|---|---|---|
grant_type | client_credentials | Must be exactly this value. |
client_id | YOUR_CLIENT_ID | Provided in your Ibantrack Dashboard. |
client_secret | YOUR_CLIENT_SECRET | Provided in your Ibantrack Dashboard. |
Token Lifecycle
- Expiration: Tokens are valid for 3600 seconds (1 hour).
- Caching: We strongly recommend caching the token and reusing it until it expires. Requesting a new token for every single verification will trigger rate limits on the authentication server.
Using the token
Once you have received theaccess_token, you must include it in the header of all subsequent API calls:
Body
application/x-www-form-urlencoded

