Wazo Connectors API

The connectors API from Wazo — 5 operation(s) for connectors.

Operations 5

GET /connectors List capability metadata for every registered backend #
GET /connectors/{backend}/auth-schema Get the credential schema declared by the backend #
GET /connectors/{backend}/identities List identities the backend reports this tenant owns #
POST /connectors/incoming Receive incoming webhook from connector #
POST /connectors/incoming/{backend} Receive incoming webhook with backend hint #

Documentation

Specifications

Other Resources

🔗
Console
https://api.wazo.io/documentation/console/authentication/
🔗
SourceCode
https://github.com/wazo-platform/wazo-auth
🔗
ChangeLog
https://github.com/wazo-platform/wazo-auth/blob/master/CHANGELOG.md
🔗
Conventions
https://raw.githubusercontent.com/api-evangelist/wazo/refs/heads/main/conventions/wazo-conventions.yml
🔗
ErrorCatalog
https://raw.githubusercontent.com/api-evangelist/wazo/refs/heads/main/errors/wazo-problem-types.yml
🔗
Console
https://api.wazo.io/documentation/console/configuration/
🔗
SourceCode
https://github.com/wazo-platform/wazo-confd
🔗
ChangeLog
https://github.com/wazo-platform/wazo-confd/blob/master/CHANGELOG.md
🔗
Console
https://api.wazo.io/documentation/console/application/
🔗
SourceCode
https://github.com/wazo-platform/wazo-calld
🔗
ChangeLog
https://github.com/wazo-platform/wazo-calld/blob/master/CHANGELOG.md
🔗
Console
https://api.wazo.io/documentation/console/cdr/
🔗
SourceCode
https://github.com/wazo-platform/wazo-call-logd
🔗
ChangeLog
https://github.com/wazo-platform/wazo-call-logd/blob/master/CHANGELOG.md
🔗
Console
https://api.wazo.io/documentation/console/contact/
🔗
SourceCode
https://github.com/wazo-platform/wazo-dird
🔗
ChangeLog
https://github.com/wazo-platform/wazo-dird/blob/master/CHANGELOG.md
🔗
Console
https://api.wazo.io/documentation/console/webhook/
🔗
SourceCode
https://github.com/wazo-platform/wazo-webhookd
🔗
ChangeLog
https://github.com/wazo-platform/wazo-webhookd/blob/master/CHANGELOG.md
🔗
Webhooks
https://raw.githubusercontent.com/api-evangelist/wazo/refs/heads/main/asyncapi/wazo-events-webhooks.yml
🔗
Console
https://api.wazo.io/documentation/console/plugins/
🔗
SourceCode
https://github.com/wazo-platform/wazo-plugind
🔗
ChangeLog
https://github.com/wazo-platform/wazo-plugind/blob/master/CHANGELOG.md
🔗
Console
https://api.wazo.io/documentation/console/agent/
🔗
SourceCode
https://github.com/wazo-platform/wazo-agentd
🔗
ChangeLog
https://github.com/wazo-platform/wazo-agentd/blob/master/CHANGELOG.md
🔗
Console
https://api.wazo.io/documentation/console/chat/
🔗
SourceCode
https://github.com/wazo-platform/wazo-chatd
🔗
ChangeLog
https://github.com/wazo-platform/wazo-chatd/blob/master/CHANGELOG.md
🔗
SourceCode
https://github.com/wazo-platform/wazo-phoned
🔗
ChangeLog
https://github.com/wazo-platform/wazo-phoned/blob/master/CHANGELOG.md
🔗
Console
https://api.wazo.io/documentation/console/setup/
🔗
SourceCode
https://github.com/wazo-platform/wazo-setupd
🔗
ChangeLog
https://github.com/wazo-platform/wazo-setupd/blob/master/CHANGELOG.md
🔗
Console
https://api.wazo.io/documentation/console/amid/
🔗
SourceCode
https://github.com/wazo-platform/wazo-amid
🔗
ChangeLog
https://github.com/wazo-platform/wazo-amid/blob/master/CHANGELOG.md

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/wazo-connectors-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

wazo-connectors-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: wazo-chatd Connectors API
  description: Control your message and presence from a REST API
  version: 1.0.0
  contact:
    name: Wazo Dev Team
    url: https://wazo-platform.org/
    email: dev@wazo.community
  x-logo:
    url: https://wazo-platform.org/images/logo-black.svg
    backgroundColor: '#FAFAFA'
    altText: Wazo Logo
servers:
- url: /1.0
security:
- wazo_auth_token: []
tags:
- name: connectors
paths:
  /connectors:
    get:
      operationId: list_connectors
      summary: List capability metadata for every registered backend
      description: '**Required ACL:** `chatd.connectors.read`


        Returns supported types and tenant-configured state for

        each registered backend.

        '
      tags:
      - connectors
      parameters:
      - $ref: '#/components/parameters/tenant_uuid'
      responses:
        '200':
          description: Connector list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectorList'
  /connectors/{backend}/auth-schema:
    get:
      operationId: get_connector_auth_schema
      summary: Get the credential schema declared by the backend
      description: '**Required ACL:** `chatd.connectors.{backend}.auth-schema.read`


        Returns the connector''s declared credential fields and where the

        credentials live (`scope`). The body is class-level metadata —

        identical across tenants.

        '
      tags:
      - connectors
      parameters:
      - $ref: '#/components/parameters/tenant_uuid'
      - name: backend
        in: path
        description: The backend name
        required: true
        schema:
          type: string
      - name: If-None-Match
        in: header
        required: false
        description: Quoted ETag of a previously fetched body
        schema:
          type: string
      responses:
        '200':
          description: Auth schema
          headers:
            ETag:
              description: Quoted SHA-256 of the canonical body
              schema:
                type: string
            Cache-Control:
              description: Caching directives (`private, no-cache`)
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectorAuthSchema'
        '304':
          description: Body unchanged since the ETag was issued
        '404':
          description: No such connector
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
  /connectors/{backend}/identities:
    get:
      operationId: list_connector_identities
      summary: List identities the backend reports this tenant owns
      description: '**Required ACL:** `chatd.connectors.{backend}.identities.read`


        Each item carries the backend-reported identity and its

        binding to a Wazo user (``null`` when unbound).

        '
      tags:
      - connectors
      parameters:
      - $ref: '#/components/parameters/tenant_uuid'
      - name: backend
        in: path
        description: The backend name
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Identity list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectorIdentityList'
        '400':
          description: Backend not configured for this tenant
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
        '404':
          description: No such connector
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
        '501':
          description: Connector does not support listing identities
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
        '502':
          description: Connector failed to list identities
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
        '503':
          $ref: '#/components/responses/AnotherServiceUnavailable'
  /connectors/incoming:
    post:
      operationId: connector_webhook
      summary: Receive incoming webhook from connector
      description: 'Dispatches an incoming webhook to the matching connector backend.


        **Body size**: capped at 4 MB at the nginx layer. Bodies above

        the cap are rejected with HTTP 413 before reaching chatd.

        '
      tags:
      - connectors
      security: []
      responses:
        '204':
          description: Webhook accepted
        '400':
          description: No connector matched the webhook payload
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
        '401':
          description: Webhook signature verification failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
        '503':
          description: Webhook deferred; backend should retry
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
      requestBody:
        content:
          application/json:
            schema:
              type: object
          application/x-www-form-urlencoded:
            schema:
              type: object
        required: true
  /connectors/incoming/{backend}:
    post:
      operationId: connector_webhook_with_hint
      summary: Receive incoming webhook with backend hint
      description: Dispatches an incoming webhook, trying the specified backend first.
      tags:
      - connectors
      security: []
      parameters:
      - name: backend
        in: path
        description: Backend name hint for faster dispatch
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Webhook accepted
        '400':
          description: No connector matched the webhook payload
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
        '401':
          description: Webhook signature verification failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
        '503':
          description: Webhook deferred; backend should retry
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
      requestBody:
        content:
          application/json:
            schema:
              type: object
          application/x-www-form-urlencoded:
            schema:
              type: object
        required: true
components:
  schemas:
    ConnectorLocalizedLabel:
      title: ConnectorLocalizedLabel
      properties:
        language:
          type: string
          description: Locale tag, e.g. `en_US`.
        value:
          type: string
    APIError:
      type: object
      allOf:
      - $ref: '#/components/schemas/Error'
      - properties:
          resource:
            description: Resource name of the error
            type: string
    Connector:
      title: Connector
      properties:
        name:
          type: string
          description: The backend identifier
        supported_types:
          type: array
          items:
            type: string
          description: Messaging types this backend can handle
        configured:
          type: boolean
          description: 'Whether the backend is ready to use for this tenant. For backends

            that require per-tenant credentials, this is true once wazo-auth has

            external credentials stored. Backends with no credential requirement

            (auth scope ``none``) are always reported as configured.

            '
        mode:
          type: string
          enum:
          - webhook
          - poll
          - listen
          description: 'Transport the backend uses to exchange messages with the provider.

            ``webhook`` requires configuring a provider-side callback to wazo;

            ``poll`` and ``listen`` need none.

            '
    ConnectorIdentityItem:
      title: ConnectorIdentityItem
      properties:
        identity:
          type: string
          description: The external identity value
        capabilities:
          type: array
          items:
            type: string
          description: Messaging capabilities of this identity (e.g. ["sms"], ["sms", "mms"])
        binding:
          $ref: '#/components/schemas/ConnectorIdentityBinding'
          description: Wazo binding for this identity, or null when unbound
    ConnectorList:
      title: ConnectorList
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Connector'
        total:
          type: integer
          description: The number of results
    ConnectorAuthSchemaField:
      title: ConnectorAuthSchemaField
      properties:
        name:
          type: string
          description: Machine-readable field name (used as the form key).
        type:
          type: string
          enum:
          - string
          - secret
          - select
          - boolean
          - integer
          - url
        required:
          type: boolean
        default:
          type: string
        label:
          type: array
          items:
            $ref: '#/components/schemas/ConnectorLocalizedLabel'
        choices:
          type: array
          items:
            type: string
          description: Allowed values; only emitted when `type` is `select`.
    Error:
      title: Error
      description: Error message for the client
      properties:
        message:
          description: Human readable explanation of the error
          type: string
        error_id:
          description: Identifier of the type of error. It is more precise than the HTTP status code.
          type: string
        details:
          description: Additional information about the error. The keys are specific to each error.
          type: object
        timestamp:
          description: Time when the error occured
          type: number
          format: timestamp
    ConnectorIdentityBinding:
      title: ConnectorIdentityBinding
      properties:
        identity_uuid:
          type: string
          description: The UUID of the bound UserIdentity row
        user_uuid:
          type: string
          description: The UUID of the user the identity is bound to
    ConnectorIdentityList:
      title: ConnectorIdentityList
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/ConnectorIdentityItem'
        total:
          type: integer
          description: The number of results
    ConnectorAuthSchema:
      title: ConnectorAuthSchema
      properties:
        scope:
          type: string
          enum:
          - none
          - tenant
          description: 'Where the credentials are stored. `none` means the backend needs

            no credentials; `tenant` means they live in wazo-auth tenant

            external config.

            '
        fields:
          type: array
          description: Fields required to collect the credentials.
          items:
            $ref: '#/components/schemas/ConnectorAuthSchemaField'
  responses:
    AnotherServiceUnavailable:
      description: Another service is unavailable (e.g. wazo-auth, wazo-confd, ...)
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  parameters:
    tenant_uuid:
      name: Wazo-Tenant
      in: header
      description: The tenant's UUID, defining the ownership of a given resource.
      required: false
      schema:
        type: string
  securitySchemes:
    wazo_auth_token:
      type: apiKey
      name: X-Auth-Token
      in: header
x-xivo-port: 9304
x-xivo-name: chatd
x-apievangelist-source:
  harvested_from: https://github.com/wazo-platform/wazo-chatd
  assembly: base plugin api.yml deep-merged with all plugin api.yml fragments, reproducing what the running service serves at /api/chatd/1.0/api/api.yml (see wazo_chatd/plugins/api/http.py — xivo.chain_map.ChainMap)
  spec_version: Swagger 2.0 (as published by Wazo)
  harvested: '2026-08-17'