v10

latestOpenAPI 3.0.0raw.githubusercontent.com2026-07-0582185581.9 KB
Organization Auth Config

Get organization authentication methods

Retrieve the configured authentication methods for the organization.

Response Structure:

Returns an array of authentication steps, each containing:

  • order: Step number (1-3)
  • allowedMethods: Array of methods allowed for that step

Example Response:

{
  "authMethods": [
    { "order": 1, "allowedMethods": [{ "type": "password" }, { "type": "google" }] },
    { "order": 2, "allowedMethods": [{ "type": "otp" }] }
  ]
}

Admin Access Required: Only organization admins can view auth configuration.

get/orgAuthConfig/authMethods

Response

Authentication methods retrieved successfully