Sign in

Obtain access token

documented

Obtain an OAuth access token to authorize subsequent API requests.

POST /oauth/access_tokenAuthorizationno 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.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}}\"}'
Obtain access token · SendPulse · OpenIntegrations