Get access token
documentedObtain an OAuth-style access token for Open Banking API calls.
POST /tokenOAuth / Authenticationno 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://{{$REVOLUT_TOKEN_BASE_URL}}/token" \
-X POST \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Accept: application/json" \
--cert "{{REVOLUT_TRANSPORT_CERT}}" \
--key "{{REVOLUT_TRANSPORT_KEY}}" \
-d "grant_type={{REVOLUT_GRANT_TYPE}}" \
-d "scope={{REVOLUT_SCOPE}}"