Frontend API
Retrieve deployment configuration and settings. Requires authentication to access detailed deployment data.
cURL
curl --request GET \ --url https://{deploymentHost}/deployment \ --cookie __session=
{ "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": [] }
Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.
Deployment information retrieved successfully
HTTP status code
Response message (empty for success)
Response data (can be any type)
Show child attributes
Array of error objects (empty for success)