idp_Before you can use Everifin Paygate in any flow, you need to authenticate yourself. For authentication a simple OAuth mechanism is used.
...
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" |
...