Get Password Policy
Returns the system's password policy settings, including minimum length, required character types, and whether the policy is enabled.
Password policy retrieved successfully.
Indicates whether browsers are allowed to fill in the password automatically
Indicates whether the password policy is enabled
Minimum length of the password
Minimum number of numeric characters required in the password
Minimum number of lowercase characters required in the password
Minimum number of special characters required in the password
Minimum number of uppercase characters required in the password
Request blocked by WAF
curl -X GET \
"https://{instance}.kiteworks.com/rest/settings/passwordPolicy" \
-H "Authorization: Bearer YOUR_TOKEN"import requests
url = "https://{instance}.kiteworks.com/rest/settings/passwordPolicy"
headers = {
"Authorization": "Bearer YOUR_TOKEN",
}
response = requests.get(url, headers=headers)
print(response.json())Get system settings
Returns the system-level settings, including language, location, storage quota, and mobile number configuration as configured by the system administrator.
System settings retrieved successfully.
Language identifier of the user the settings represent
Location identifier for user settings. User's personal default location for file send and uploads
Email message signature
Storage used by the user across the folders they own
Storage quota allocated to the user across all the folders they own
Encrypted key store data used by the mobile client for secure operations
User's mobile number
Indicates whether the mobile number is verified
HATEOAS links associated with the entity
Request blocked by WAF
curl -X GET \
"https://{instance}.kiteworks.com/rest/settings/system" \
-H "Authorization: Bearer YOUR_TOKEN"import requests
url = "https://{instance}.kiteworks.com/rest/settings/system"
headers = {
"Authorization": "Bearer YOUR_TOKEN",
}
response = requests.get(url, headers=headers)
print(response.json())