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 }
Obtain an access token using OAuth 2.0 Client Credentials
https://api.telzino.com/
client_credentials
curl https://api.telzino.com/v1/me \ -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{ "account_id": "m5b6g5jd-lanh-47yi-yhsg-cx56wjdah8h9" }