myFlashID API Documentation

Overview

myFlashID provides a secure way for users to log in to your app. This page helps developers integrate myFlashID quickly.

API Key

Every application needs an API key. You can generate one here and store it securely:

Authentication Flow

  1. User clicks "Login with myFlashID" in your app.
  2. They’re redirected to myFlashID’s login screen.
  3. After login, they’re redirected back to your provided Callback URL with an auth code.
  4. Your server exchanges that code for a token using your API key.

Callback URL Tester

Example Request

POST https://api.myflashid.com/token
Headers:
  Authorization: Bearer <YOUR_API_KEY>
  Content-Type: application/json
Body:
  {
    "code": "AUTH_CODE",
    "redirect_uri": "https://example.com/auth/callback/myflashid/"
  }