Obtain access token
documentedObtain an OAuth access token to authorize subsequent API requests.
POST /oauth/access_tokenAuthorizationno 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.sendpulse.com/oauth/access_token\" \
-X POST \
-H \"Content-Type: application/json\" \
-H \"Accept: application/json\" \
-d '{\"grant_type\":\"client_credentials\",\"client_id\":\"{{SENDPULSE_API_KEY}}\",\"client_secret\":\"{{SENDPULSE_SECRET}}\"}'