Kiteworks Source Types API

The Source Types API from Kiteworks — 2 operation(s) for source types.

Operations 2

GET /rest/sourceTypes List all ECM source types #
GET /rest/sourceTypes/{id} Returns requested ECM source type #

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-source-types-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

kiteworks-source-types-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '28'
  title: Kiteworks API Documentation Source Types API
tags:
- name: Source Types
paths:
  /rest/sourceTypes:
    get:
      tags:
      - Source Types
      summary: List all ECM source types
      description: Returns a list of available ECM source types, including each type's name and whether users can configure sources of that type.
      responses:
        '200':
          description: List of ECM source types retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/SourceType'
              examples:
                SourceTypeList:
                  summary: List of available ECM source types
                  value:
                    data:
                    - id: 1
                      name: SharePoint
                      userCanSet: true
                    - id: 2
                      name: OneDrive
                      userCanSet: true
        '490':
          description: Request blocked by WAF
      deprecated: false
      parameters:
      - in: query
        name: mode
        description: Filter source types by mode flag.
        schema:
          type: boolean
      - in: query
        name: orderBy
        description: Sorting options
        schema:
          type: array
          items:
            type: string
          enum:
          - id:asc
          - id:desc
          - name:asc
          - name:desc
      operationId: getRestSourceTypes
      x-operation-id-source: derived
  /rest/sourceTypes/{id}:
    get:
      tags:
      - Source Types
      summary: Returns requested ECM source type
      description: Returns the details of the specified ECM source type, including its name and whether users can configure sources of that type.
      responses:
        '200':
          description: ECM source type details retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SourceType'
              examples:
                SourceTypeInfo:
                  summary: Details of a single ECM source type
                  value:
                    id: 1
                    name: SharePoint
                    userCanSet: true
        '490':
          description: Request blocked by WAF
      deprecated: false
      parameters:
      - in: path
        name: id
        description: ID of the sourceType to be retrieved
        required: true
        schema:
          type: integer
      operationId: getRestSourceTypesById
      x-operation-id-source: derived
components:
  schemas:
    SourceType:
      description: Class SourceType
      properties:
        id:
          description: Unique identifier of Source type
          type: integer
        name:
          description: Display name of the source type
          type: string
        userCanSet:
          description: Indicates whether the user can set this source type
          type: boolean
        links:
          description: HATEOAS links associated with the entity
          type: array
          items:
            type: string