Developer documentation
HomeLogin
Enterprise API
Enterprise API
  • Authentication
    • Generate a private and a public certificate
    • Create a JWT token using your private key
  • Webhooks
  • Payment methods
    • Openbanking recurring payments
    • Openbanking payments
    • Card not present card payments
  • API reference
    • Payments
    • Payment methods
    • Customers
    • Settlements
    • Profiles
    • Specification
Powered by GitBook
On this page

Was this helpful?

Authentication

Each API request must contain an authorization header in the following format to make a call: Bearer <your_access_token>.

Do not ever share your access tokens, JWT tokens, as these can be used to access your payments data and initiate transactions, refunds, and others.

In order to generate your access token, you need to follow the following process.

  1. Generate a private and a public certificate

  2. Upload the generate public key onto your account, or email it to your account manager.

  3. Create a JWT token using your private key

  4. Use the client ID generated while suppling your public key as client_id and set the Authrization header as Bearer ${jwt} in your OAuth 2.0 authrorization request.

NextGenerate a private and a public certificate

Last updated 6 months ago

Was this helpful?