Get access token
documentedObtain an OAuth access token using client credentials.
POST /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.kajabi.com/v1/oauth/token" \
-X POST \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Accept: application/json" \
-d 'grant_type=client_credentials&client_id={{KAJABI_CLIENT_ID}}&client_secret={{KAJABI_CLIENT_SECRET}}'