Wazo Configs API

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

Operations 8

GET /cfg_mgr Get the Config Manager resource
GET /cfg_mgr/configs List and find configurations
POST /cfg_mgr/configs Create a configuration
GET /cfg_mgr/configs/{config_id} Get a configuration
PUT /cfg_mgr/configs/{config_id} Update a configuration
DELETE /cfg_mgr/configs/{config_id} Delete a configuration
GET /cfg_mgr/configs/{config_id}/raw Get a raw configuration
POST /cfg_mgr/autocreate Create an autocreate configuration

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-configs-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-configs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: wazo-provd Configs API
  description: Provisioning application REST API
  version: '0.2'
  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: /api/provd/0.2
security:
- wazo_auth_token: []
tags:
- name: configs
paths:
  /cfg_mgr:
    get:
      summary: Get the Config Manager resource
      description: '**Required ACL:** `provd.cfg_mgr.read`


        The configuration manager resource represents the entry point to the wazo-provd configuration REST API

        '
      tags:
      - configs
      responses:
        '200':
          description: Links to the different configuration resources
          content:
            application/vnd.proformatique.provd+json:
              schema:
                $ref: '#/components/schemas/LinksObject'
  /cfg_mgr/configs:
    get:
      summary: List and find configurations
      description: '**Required ACL:** `provd.cfg_mgr.configs.read`'
      tags:
      - configs
      parameters:
      - $ref: '#/components/parameters/SearchQuery'
      - $ref: '#/components/parameters/SearchFields'
      - $ref: '#/components/parameters/Skip'
      - $ref: '#/components/parameters/SortEntries'
      - $ref: '#/components/parameters/SortOrder'
      responses:
        '200':
          $ref: '#/components/responses/ConfigsResponse'
    post:
      summary: Create a configuration
      description: '**Required ACL:** `provd.cfg_mgr.configs.create`'
      tags:
      - configs
      parameters:
      - $ref: '#/components/parameters/ConfigParam'
      responses:
        '201':
          $ref: '#/components/responses/ConfigCreationResponse'
  /cfg_mgr/configs/{config_id}:
    get:
      summary: Get a configuration
      description: '**Required ACL:** `provd.cfg_mgr.configs.{config_id}.read`'
      tags:
      - configs
      parameters:
      - $ref: '#/components/parameters/ConfigId'
      responses:
        '200':
          $ref: '#/components/responses/ConfigUniqueResponse'
        '404':
          $ref: '#/components/responses/NoSuchResourceError'
    put:
      summary: Update a configuration
      description: '**Required ACL:** `provd.cfg_mgr.configs.{config_id}.update`'
      tags:
      - configs
      parameters:
      - $ref: '#/components/parameters/ConfigId'
      - $ref: '#/components/parameters/ConfigParam'
      responses:
        '204':
          $ref: '#/components/responses/NoContentResponse'
        '404':
          $ref: '#/components/responses/NoSuchResourceError'
        '500':
          $ref: '#/components/responses/InternalServerError'
    delete:
      summary: Delete a configuration
      description: '**Required ACL:** `provd.cfg_mgr.configs.{config_id}.delete`'
      tags:
      - configs
      parameters:
      - $ref: '#/components/parameters/ConfigId'
      responses:
        '204':
          $ref: '#/components/responses/NoContentResponse'
        '403':
          $ref: '#/components/responses/ForbiddenResponse'
        '404':
          $ref: '#/components/responses/NoSuchResourceError'
  /cfg_mgr/configs/{config_id}/raw:
    get:
      summary: Get a raw configuration
      description: '**Required ACL:** `provd.cfg_mgr.configs.{config_id}.raw.read`'
      tags:
      - configs
      parameters:
      - $ref: '#/components/parameters/ConfigId'
      responses:
        '200':
          description: A raw configuration response
          content:
            application/vnd.proformatique.provd+json:
              schema:
                $ref: '#/components/schemas/RawConfigurationObject'
        '404':
          $ref: '#/components/responses/NoSuchResourceError'
  /cfg_mgr/autocreate:
    post:
      summary: Create an autocreate configuration
      description: '**Required ACL:** `provd.cfg_mgr.autocreate.create`


        Create a new config based on the config that has the autocreate role

        '
      tags:
      - configs
      parameters:
      - $ref: '#/components/parameters/EmptyBody'
      responses:
        '201':
          $ref: '#/components/responses/ConfigCreationResponse'
components:
  responses:
    ConfigCreationResponse:
      description: Configuration created. If the ``id`` field was not given, then the ID was automatically generated by the server.
      headers:
        Location:
          description: Location of the newly created configuration.
          schema:
            type: string
      content:
        application/vnd.proformatique.provd+json:
          schema:
            $ref: '#/components/schemas/IdObject'
    ForbiddenResponse:
      description: The operation is not permitted for this resource.
      content:
        application/vnd.proformatique.provd+json:
          schema:
            $ref: '#/components/schemas/ErrorMessage'
    ConfigUniqueResponse:
      description: A complete configuration response
      content:
        application/vnd.proformatique.provd+json:
          schema:
            $ref: '#/components/schemas/ConfigObject'
    ConfigsResponse:
      description: List of configurations
      content:
        application/vnd.proformatique.provd+json:
          schema:
            $ref: '#/components/schemas/ConfigsObject'
    InternalServerError:
      description: Internal Server Error. The IP or MAC address may be malformed
      content:
        application/vnd.proformatique.provd+json:
          schema:
            $ref: '#/components/schemas/ErrorMessage'
    NoSuchResourceError:
      description: No such resource. The provided id does not exist
      content:
        application/vnd.proformatique.provd+json:
          schema:
            $ref: '#/components/schemas/ErrorMessage'
    NoContentResponse:
      description: No content
  parameters:
    SortEntries:
      name: sort
      in: query
      description: 'The key on which to sort the results.


        Example: `id`

        '
      required: false
      schema:
        type: string
    SortOrder:
      name: sort_ord
      in: query
      description: The order of sort
      required: false
      schema:
        type: string
        enum:
        - ASC
        - DESC
    SearchQuery:
      name: q
      in: query
      description: 'A selector, encoded in JSON, describing which entries should be returned. All entries are returned if not specified.


        Example: `{"ip":"10.34.1.110"}`

        '
      required: false
      schema:
        type: string
    SearchFields:
      name: fields
      in: query
      description: 'A list of fields, separated by comma.


        Example: `mac,ip`

        '
      required: false
      schema:
        type: string
    ConfigId:
      required: true
      name: config_id
      in: path
      description: Configuration ID
      schema:
        type: string
    EmptyBody:
      description: Empty object body
      name: body
      in: body
      schema:
        $ref: '#/components/schemas/EmptyObject'
    Skip:
      name: skip
      in: query
      description: 'An integer specifing the number of entries to skip.


        Example: 10

        '
      required: false
      schema:
        type: integer
    ConfigParam:
      description: Body of a configuration parameter
      name: body
      in: body
      schema:
        $ref: '#/components/schemas/ConfigObject'
  schemas:
    IdObject:
      properties:
        id:
          type: string
      example:
        id: abcdef1234567890
    ConfigObject:
      description: A configuration object
      properties:
        config:
          $ref: '#/components/schemas/Config'
    ErrorMessage:
      description: Error message response
      type: string
    LinksObject:
      description: Links object
      type: object
      properties:
        links:
          type: array
          description: Links to different resources
          items:
            $ref: '#/components/schemas/LinkObject'
    EmptyObject:
      description: Empty body
      properties: {}
    ConfigsObject:
      properties:
        configs:
          type: array
          items:
            $ref: '#/components/schemas/Config'
    LinkObject:
      description: Link Object
      type: object
      properties:
        href:
          type: string
          description: Location of the resource
        rel:
          type: string
          description: Relation to the resource
    RawConfigurationObject:
      properties:
        raw_config:
          type: object
      example:
        raw_config:
          sip_lines:
            1:
              auth_username: '100'
              display_name: Foo
              password: '100'
              username: '100'
    Config:
      description: A complete configuration
      properties:
        id:
          type: string
          description: The unique configuration id
        deletable:
          type: boolean
        parent_ids:
          type: array
          items:
            type: string
            description: ID of a parent of the configuration
        raw_config:
          $ref: '#/components/schemas/RawConfigurationObject'
      example:
        id: abcdef123456890
        deletable: true
        parent_ids:
        - base
        raw_config:
          sip_lines:
            1:
              auth_username: '100'
              display_name: Foo
              password: '100'
              username: '100'
  securitySchemes:
    wazo_auth_token:
      type: apiKey
      name: X-Auth-Token
      in: header
x-xivo-name: provd
x-xivo-port: 8666
x-apievangelist-source:
  harvested_from: https://github.com/wazo-platform/wazo-provd
  assembly: base plugin api.yml deep-merged with all plugin api.yml fragments, reproducing what the running service serves at /api/provd/0.2/api/api.yml (see wazo_provd/plugins/api/http.py — xivo.chain_map.ChainMap)
  spec_version: Swagger 2.0 (as published by Wazo)
  harvested: '2026-08-17'