Skip to main content
POST
https://api.telzino.com
/
oauth
/
token
curl -X POST https://api.telzino.com/oauth/token \
  -H "Content-Type: application/json" \
  -d '{
    "client_id": "YOUR_CLIENT_ID",
    "client_secret": "YOUR_CLIENT_SECRET",
    "audience": "https://api.telzino.com/",
    "grant_type": "client_credentials"
  }'
{
  "access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
  "token_type": "Bearer",
  "expires_in": 86400
}

Request Access Token

Accepts a JSON request body for the Client Credentials Grant and returns an access token.
client_id
string
required
Your Auth0 client ID from the Telzino dashboard
client_secret
string
required
Your Auth0 client secret
audience
string
required
API audience. Use https://api.telzino.com/
grant_type
string
required
Must be client_credentials
curl -X POST https://api.telzino.com/oauth/token \
  -H "Content-Type: application/json" \
  -d '{
    "client_id": "YOUR_CLIENT_ID",
    "client_secret": "YOUR_CLIENT_SECRET",
    "audience": "https://api.telzino.com/",
    "grant_type": "client_credentials"
  }'
{
  "access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
  "token_type": "Bearer",
  "expires_in": 86400
}

Get Current Account

After obtaining an access token, you can retrieve the account ID associated with your credentials.
curl https://api.telzino.com/v1/me \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Response:
{
  "account_id": "m5b6g5jd-lanh-47yi-yhsg-cx56wjdah8h9"
}