Skip to main content

Basic Authentication

Learn how to authenticate your API requests using Basic Auth.

Overview

Paymid uses Basic Authentication for all API requests. You need to provide your App Key and Secret Key in the Authorization header.

Credentials

You can find your API credentials in the Merchant Dashboard:

  1. Go to Settings
  2. Select API Config
  3. Use the App Key as your username
  4. Use the Secret Key as your password

Header Format

Authorization: Basic <base64(AppKey:SecretKey)>

Example Screenshot

Basic Auth Configuration