GET
/
deployment
Get Deployment Information
curl --request GET \
  --url https://{deploymentHost}/deployment
{
  "status": 200,
  "message": "",
  "data": {
    "id": 123,
    "name": "Acme Corp Production",
    "hostname": "auth.acme.com",
    "environment": "production",
    "features": {
      "oauth_google": true,
      "oauth_github": true,
      "oauth_microsoft": false,
      "phone_verification": true,
      "magic_links": true,
      "two_factor_auth": true
    },
    "ui_settings": {
      "app_name": "Acme Corp Authentication",
      "logo_image_url": "https://cdn.acme.com/logo.svg",
      "primary_color": "#2563eb",
      "background_color": "#ffffff"
    },
    "created_at": "2024-01-01T00:00:00Z",
    "updated_at": "2024-01-15T10:30:00Z"
  },
  "session": {
    "signin_attempts": [],
    "signins": [
      {
        "id": "signin_987654321",
        "user_id": "user_456789123",
        "created_at": "2024-01-01T12:00:00Z"
      }
    ],
    "signup_attempts": [],
    "active_signin": {
      "id": "signin_987654321",
      "user_id": "user_456789123",
      "created_at": "2024-01-01T12:00:00Z"
    }
  },
  "errors": []
}

Authorizations

__session
string
cookie
required

Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.

Response

200
application/json

Deployment information retrieved successfully

The response is of type object.