Sign in

Get access token

documented

Obtain an OAuth2 access token for authenticating API requests. Evidence: OAuth token endpoint documented by TrackVia. Source: turn12search3.

POST /oauth/tokenAuthenticationno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://go.trackvia.com/oauth/token" \
  -X POST \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Accept: application/json" \
  -d 'grant_type={{$grant_type}}' \
  -d 'client_id={{$client_id}}' \
  -d 'client_secret={{$client_secret}}' \
  -d 'username={{$username}}' \
  -d 'password={{$password}}'