Dixa Contact Endpoints API

The Contact Endpoints API from Dixa — 2 operation(s) for contact endpoints.

Operations 2

GET /beta/contact-endpoints/{contactEndpointId} Get contact endpoint #
GET /beta/contact-endpoints List contact endpoints #

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/dixa-contact-endpoints-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

dixa-contact-endpoints-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dixa Agents Contact Endpoints API
  version: beta
servers:
- url: https://dev.dixa.io
security:
- ApiKeyAuth: []
tags:
- name: Contact Endpoints
paths:
  /beta/contact-endpoints/{contactEndpointId}:
    get:
      tags:
      - Contact Endpoints
      summary: Get contact endpoint
      description: Get contact endpoint by id (email or phone number).
      operationId: getContact-endpointsContactendpointid
      parameters:
      - name: contactEndpointId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: The requested contact endpoint
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetContactPointByIdOutput'
              example:
                data:
                  address: some@email.com
                  senderOverride: otheremail@mail.dk
                  name: Special email flow
                  _type: EmailEndpoint
        '400':
          description: Invalid value extracted from request context, The contactEndpointId is neither a valid email nor a valid E.164 phone number
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequest'
              example:
                message: Decoding failure in request
        '404':
          description: An entity in this request could not be found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFound'
              example:
                message: The requested resource could not be found
  /beta/contact-endpoints:
    get:
      tags:
      - Contact Endpoints
      summary: List contact endpoints
      description: List all available contact endpoints in an organization.
      operationId: getContact-endpoints
      parameters:
      - name: _type
        in: query
        description: 'An optional contact type can be specified to filter the contact endpoints. If not provided, all types are listed. Possible values: [EmailEndpoint, TelephonyEndpoint]'
        required: false
        schema:
          type: string
      responses:
        '200':
          description: The list of available contact endpoints
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListContactPointsOutput'
              example:
                data:
                - number: '+4531434343'
                  functionality:
                  - VoiceInbound
                  - VoiceOutbound
                  name: DK Sms
                  _type: TelephonyEndpoint
                - address: some@email.com
                  senderOverride: otheremail@mail.dk
                  name: Special email flow
                  _type: EmailEndpoint
        '400':
          description: 'Invalid value extracted from request context, Invalid value for: query parameter _type'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequest'
              example:
                message: Invalid value in request
        '500':
          description: Internal failure during request processing
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServerError'
              example:
                message: There was an internal server error while processing the request
components:
  schemas:
    ListContactPointsOutput:
      title: ListContactPointsOutput
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/ContactEndpoint'
    GetContactPointByIdOutput:
      title: GetContactPointByIdOutput
      type: object
      required:
      - data
      properties:
        data:
          $ref: '#/components/schemas/ContactEndpoint'
    ServerError:
      title: ServerError
      type: object
      required:
      - message
      properties:
        message:
          type: string
    BadRequest:
      title: BadRequest
      type: object
      required:
      - message
      properties:
        message:
          type: string
    NotFound:
      title: NotFound
      type: object
      required:
      - message
      properties:
        message:
          type: string
    EmailEndpoint:
      title: EmailEndpoint
      type: object
      required:
      - address
      properties:
        address:
          type: string
        senderOverride:
          type: string
        name:
          type: string
    ContactEndpoint:
      title: ContactEndpoint
      oneOf:
      - $ref: '#/components/schemas/EmailEndpoint'
      - $ref: '#/components/schemas/TelephonyEndpoint'
    TelephonyEndpoint:
      title: TelephonyEndpoint
      type: object
      required:
      - number
      properties:
        number:
          type: string
        functionality:
          type: array
          items:
            description: 'values: [Sms, VoiceInbound, VoiceOutbound]'
            type: string
        name:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      name: Authorization
      in: header