Configuration & Secret Key

Learn how to get your secret key and set up the integration.

Configuration & Secret Key

Before you start using our payment API, you need to configure your application with a Secret Key and App Key. These keys are used to authenticate your requests to the payment gateway.

How to Get Your API Keys

  1. Sign Up at epay.guiddini.dz.
  2. Login to your developer dashboard.
  3. Generate API Keys: In the dashboard, go to the API Keys section and generate a Secret Key and App Key.
  4. Secure Your Keys: Keep your keys safe and never expose them publicly.

Setting Up the API Key

Once you’ve obtained your API keys, include them in your requests. Below is an example of how to authenticate your requests using the Secret Key:

curl -X POST https://api.yourservice.com/v1/payments \
     -H "Authorization: Bearer YOUR_SECRET_KEY" \
     -d '{"amount": 1000, "currency": "DZD", "payment_method": "credit_card"}'

On this page