Get security settings
curl --request GET \
--url https://app.alana.shopping/api/workspace/{workspaceId}/security \
--header 'Authorization: Bearer <token>'{
"enforce_2fa": true,
"session_timeout_minutes": 60,
"password_min_length": 12,
"require_special_chars": true,
"ip_whitelist": [
"203.0.113.0/24"
]
}Get Security Settings
Retrieve workspace security configuration including password policies and session settings
GET
/
api
/
workspace
/
{workspaceId}
/
security
Get security settings
curl --request GET \
--url https://app.alana.shopping/api/workspace/{workspaceId}/security \
--header 'Authorization: Bearer <token>'{
"enforce_2fa": true,
"session_timeout_minutes": 60,
"password_min_length": 12,
"require_special_chars": true,
"ip_whitelist": [
"203.0.113.0/24"
]
}Authorizations
Bearer token authentication via Auth0. Users authenticate through Auth0 Universal Login. Include the access token in the Authorization header: Authorization: Bearer <token>
Path Parameters
The workspace ID
Pattern:
^ws_[a-z0-9]+$Response
Security settings retrieved successfully
Require 2FA for all members
Session timeout in minutes
Required range:
5 <= x <= 1440Minimum password length
Required range:
x >= 8Require special characters in passwords
List of whitelisted IP addresses
Last modified on February 16, 2026
⌘I