Sign in

Obtain access token

documented

Requests an access token using an authorization code or refresh token.

POST /api/v1/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://api.runsteady.com/api/v1/oauth/token" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"client_id": "{{$client_id}}", "client_secret": "{{$client_secret}}", "grant_type": "authorization_code", "code": "{{$code}}", "redirect_uri": "{{$redirect_uri}}"}'