Wazo · AsyncAPI Specification

wazo-sysconfd events

Version 26.08

View Spec View on GitHub TelephonyVoIPUnified CommunicationsUCaaSContact CenterSIPasteriskWebRTCOpen-SourceSelf-HostedWhite LabelPBXMSPCall CenterProvisioningWebhookEvent-DrivenChatPresenceCDRAsyncAPIWebhooksEvents

Channels

asterisk_reload_progress
subscribe
request_handlers_progress
subscribe

Servers

amqp
production amqp://{username}:{password}@/localhost:{port}//
Local RabbitMQ messaging server for inter-service communication

AsyncAPI Specification

Raw ↑
asyncapi: 2.0.0
info:
  title: wazo-sysconfd events
  version: '26.08'
servers:
  production:
    url: amqp://{username}:{password}@/localhost:{port}//
    description: Local RabbitMQ messaging server for inter-service communication
    protocol: amqp
    protocolVersion: 0.9.1
    variables:
      username:
        default: guest
        description: Configurable through each service's config.yml file
      password:
        default: guest
        description: Configurable through each service's config.yml file
      port:
        default: '5672'
        description: Configurable through each service's config.yml file
defaultContentType: application/json
channels:
  asterisk_reload_progress:
    subscribe:
      summary: ''
      tags:
      - name: sysconfd
      message:
        name: asterisk-reload-progress-payload
        payload:
          type: object
          properties:
            uuid:
              type: string
              format: uuid
            status:
              type: string
            command:
              type: string
            request_uuids:
              type: array
              items:
                type: string
                format: uuid
        headers:
          type: object
          properties:
            name:
              type: string
              const: asterisk_reload_progress
              description: Name of the event (used for routing the message)
            required_acl:
              type: string
              const: events.sysconfd.asterisk.reload.{uuid}.{status}
              description: Necessary user access required to read this event
            origin_uuid:
              $ref: '#/components/schemas/origin_uuid'
            timestamp:
              $ref: '#/components/schemas/timestamp'
          required:
          - name
          - required_acl
          - origin_uuid
          - timestamp
  request_handlers_progress:
    subscribe:
      summary: ''
      tags:
      - name: sysconfd
      message:
        name: request-handlers-progress-payload
        payload:
          type: object
          properties:
            request_uuid:
              type: string
              format: uuid
            request_context:
              type: object
              properties: {}
              nullable: true
            status:
              type: string
        headers:
          type: object
          properties:
            name:
              type: string
              const: request_handlers_progress
              description: Name of the event (used for routing the message)
            required_acl:
              type: string
              const: events.sysconfd.request_handlers.{uuid}.{status}
              description: Necessary user access required to read this event
            origin_uuid:
              $ref: '#/components/schemas/origin_uuid'
            timestamp:
              $ref: '#/components/schemas/timestamp'
          required:
          - name
          - required_acl
          - origin_uuid
          - timestamp
components:
  schemas:
    origin_uuid:
      type: string
      format: uuid
      description: Unique identifier of the publishing WAZO service
    timestamp:
      type: string
      format: date-time
      description: Date and time this event was published
    tenant_uuid:
      type: string
      format: uuid
      description: Unique identifier of this resource's tenant
    user_uuid:{uuid}:
      type: boolean
      description: User's unique identifier that this event is intended for. The format user_uuid:{uuid} allows multiple users to be the recipient
        of this event