Chatwoot/swagger/index.yml

45 lines
1.5 KiB
YAML
Raw Normal View History

swagger: "2.0"
2020-02-23 07:24:29 +00:00
info:
2020-03-11 10:49:13 +00:00
description: This is the API documentation for Chatwoot server.
2020-02-23 07:24:29 +00:00
version: 1.0.0
title: Chatwoot
termsOfService: https://www.chatwoot.com/terms-of-service/
contact:
email: support@chatwoot.com
license:
name: MIT License
url: https://opensource.org/licenses/MIT
2020-03-11 10:49:13 +00:00
host: app.chatwoot.com
basePath: /api/v1/
schemes:
- https
produces:
- application/json; charset=utf-8
consumes:
- application/json; charset=utf-8
securityDefinitions:
userApiKey:
type: apiKey
in: header
name: api_access_token
description: This token can be obtained by visiting the profile page or via rails console. Provides access to endpoints based on the user permissions levels. This token can be saved by an external system when user is created via API, to perform activities on behalf of the user.
agentBotApiKey:
type: apiKey
in: header
name: api_access_token
description: This token should be provided by system admin or obtained via rails console. This token can be used to build bot integrations and can only access limited apis.
superAdminApiKey:
type: apiKey
in: header
name: api_access_token
description: This token is only for the system admin or obtained via rails console. This token is to be used rarely for cases like creating a pre verified user through api from external system.
security:
- userApiKey: []
2020-03-11 10:49:13 +00:00
2020-02-23 07:24:29 +00:00
paths:
$ref: ./paths/index.yml
definitions:
$ref: ./definitions/index.yml
parameters:
$ref: ./parameters/index.yml