Document360 Users API

The Users API from Document360 — 1 operation(s) for users.

OpenAPI Specification

document360-users-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Document360 Articles Users API
  description: The Document360 API provides programmatic access to manage knowledge base projects, articles, categories, drives, files, users, and teams. It enables integrating Document360 documentation workflows into CI/CD pipelines and external applications.
  version: 2.0.0
  contact:
    name: Document360
    url: https://document360.com/
servers:
- url: https://apihub.document360.io/v2
  description: Document360 API Hub
security:
- apiToken: []
tags:
- name: Users
paths:
  /Users:
    get:
      operationId: listUsers
      summary: List Users
      description: Retrieves users associated with the project.
      tags:
      - Users
      responses:
        '200':
          description: A list of users.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/User'
components:
  schemas:
    User:
      type: object
      properties:
        id:
          type: string
        firstName:
          type: string
        lastName:
          type: string
        emailId:
          type: string
        roleName:
          type: string
  securitySchemes:
    apiToken:
      type: apiKey
      in: header
      name: api_token