Skip to main content
GET
/
api
/
v1
/
admin
/
auth
/
providers
List external auth providers
curl --request GET \
  --url https://app.mlm-platform.com/api/v1/admin/auth/providers \
  --header 'x-tenant-api-key: <api-key>'
{
  "providers": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "provider_id": "<string>",
      "display_name": "<string>",
      "issuer": "<string>",
      "jwks_uri": "<string>",
      "allowed_audiences": [
        "<string>"
      ],
      "auto_create_users": true,
      "default_membership_tier": "<string>",
      "is_active": true,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

x-tenant-api-key
string
header
required

Tenant API key for authentication

Query Parameters

include_inactive
boolean
default:false

Include inactive providers in the response

Response

List of providers

providers
object[]