Obtain access token
documentedRequests an access token using an authorization code or refresh token.
POST /api/v1/oauth/tokenAuthenticationno implementation yet0 runsNo 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}}"}'