Account Activation

Portal access, merchant profile, and when staging API keys are issued.

After KYC approval, DigetPay activates your merchant account. You gain access to the merchant dashboard and receive credentials to start integration on Fin staging.


What gets activated

ItemStagingProduction
Dashboard loginhttps://fin-admin.digetpay.comhttps://admin.digetpay.com
API key (x-api-key)Issued for FinIssued at go-live
Webhook configurationAvailable in stagingEnabled at go-live
SDK tokensFin environmentProduction environment

Reference: See Environments Overview documentation for URL details.


First login

  1. Open the dashboard URL for your environment
  2. Sign in with credentials from the DigetPay onboarding email
  3. Complete merchant profile (business name, contact, settlement details if prompted)
  4. Navigate to Settings → API CredentialsReference: See Dashboard: API Credentials documentation

Store your API key securely when first displayed. Masked keys cannot be retrieved in plain text after rotation without generating a new key.


Staging API key issuance

ChannelWhen
Onboarding emailKey may be included after activation
DashboardSettings → API Credentials → view or rotate
Integration teamManual issuance for partners

Your staging key works only against:

https://fin-api.digetpay.com/v1

Verify activation

Run a test payment link creation (replace YOUR_STAGING_KEY):

curl -s -X POST "https://fin-api.digetpay.com/v1/payment/checkout/intiate" \
  -H "x-api-key: YOUR_STAGING_KEY" \
  -H "Content-Type: application/json" \
  -d '{"merchantOrderId":"ACTIVATION-TEST","amount":0.20,"customerPhone":"501223324","successUrl":"https://fin-admin.digetpay.com/pay/checkout/success","failureUrl":"https://fin-admin.digetpay.com/pay/checkout/failure"}'

A 201 response with redirectUrl confirms activation.


Next steps

  • Sandbox setup — Technical onboarding to configure your dev environment.
  • Dashboard guide — Learn the merchant portal UI and features.


Did this page help you?