...
Code Block |
---|
POST {{everifin_idp_url}}/auth/realms/everifin_paygate/protocol/openid-connect/token
Content-Type: "application/x-www-form-urlencoded"
Body:
client_id: "your-client-id"
client_secret: "your-client-secret"
grant_type: "client_credentials"
scope: "refunds" // OPTIONAL - required for refunds API calls |
Response
Code Block |
---|
200:
{
"access_token": "some-access-token",
"expires_in": 300,
"refresh_expires_in": 0,
"token_type": "Bearer",
"not-before-policy": 0,
"scope": "profile email refunds"
} |