Kiteworks settings API

The settings API from Kiteworks — 2 operation(s) for settings.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/kiteworks-settings-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

kiteworks-settings-api-openapi.yml Raw ↑
openapi: 3.0.2
info:
  version: '28'
  title: Kiteworks API Documentation activities settings API
tags:
- name: settings
paths:
  /rest/settings/passwordPolicy:
    get:
      tags:
      - settings
      summary: Get Password Policy
      description: Returns the system's password policy settings, including minimum length, required character types, and whether the policy is enabled.
      responses:
        '200':
          description: Password policy retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PasswordPolicy'
              examples:
                PasswordPolicy:
                  summary: System password policy
                  value:
                    enabled: true
                    minLength: 8
                    minNumeric: 1
                    minLower: 1
                    minUpper: 1
                    minSpecial: 1
                    allowBrowserAutofill: false
        '490':
          description: Request blocked by WAF
      deprecated: false
  /rest/settings/system:
    get:
      tags:
      - settings
      summary: Get system settings
      description: Returns the system-level settings, including language, location, storage quota, and mobile number configuration as configured by the system administrator.
      responses:
        '200':
          description: System settings retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Settings'
              examples:
                SystemSettings:
                  summary: System-level settings
                  value:
                    languageId: 1
                    locationId: 1
                    storageQuota: 10737418240
                    mobileNumber: null
                    mobileNumberVerified: false
        '490':
          description: Request blocked by WAF
      deprecated: false
components:
  schemas:
    PasswordPolicy:
      description: Class PasswordPolicy
      required:
      - allowAutoFill
      - enabled
      - minCharacters
      - minDigits
      - minLowerCharacters
      - minSpecialCharacters
      - minUpperCharacters
      properties:
        allowAutoFill:
          description: Indicates whether browsers are allowed to fill in the password automatically
          type: boolean
        enabled:
          description: Indicates whether the password policy is enabled
          type: boolean
        minCharacters:
          description: Minimum length of the password
          type: integer
        minDigits:
          description: Minimum number of numeric characters required in the password
          type: integer
        minLowerCharacters:
          description: Minimum number of lowercase characters required in the password
          type: integer
        minSpecialCharacters:
          description: Minimum number of special characters required in the password
          type: integer
        minUpperCharacters:
          description: Minimum number of uppercase characters required in the password
          type: integer
    Settings:
      description: Class Settings
      properties:
        languageId:
          description: Language identifier of the user the settings represent
          type: integer
        locationId:
          description: Location identifier for user settings. User's personal default location for file send and uploads
          type: integer
        signature:
          description: Email message signature
          type: string
        storageUsed:
          description: Storage used by the user across the folders they own
          type: integer
        storageQuota:
          description: Storage quota allocated to the user across all the folders they own
          type: integer
        mobileKeyStore:
          description: Encrypted key store data used by the mobile client for secure operations
          type: string
        mobileNumber:
          description: User's mobile number
          type: string
        mobileNumberVerified:
          description: Indicates whether the mobile number is verified
          type: boolean
        links:
          description: HATEOAS links associated with the entity
          type: array
          items:
            type: string