SPOTIO Multi Channel Communication API

The controller is responsible for text messages management. Sending messages to customers

Operations 1

POST /api/c3/v2/messages Send text message to recipients

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/spotio-multichannelcommunication-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

spotio-multichannelcommunication-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v1
  title: Spotio 2.0 Multi Channel Communication API
  description: The controller is responsible for text messages management. Sending messages to customers
  contact:
    name: Contact us
    url: https://spotio.com/contact/
    email: support@spotio.com
servers:
- url: https://api.spotio2.com
  description: Production
- url: https://app-test.spotio2.com
  description: Test
security:
- Bearer: []
tags:
- name: MultiChannelCommunication
  description: The controller is responsible for text messages management. Sending messages to customers
paths:
  /api/c3/v2/messages:
    post:
      tags:
      - MultiChannelCommunication
      summary: Send text message to recipients
      description: Use template for send messages for your contacts. Field phone number is required.
      requestBody:
        content:
          application/merge-patch+json:
            schema:
              $ref: '#/components/schemas/Spotio.Frontend.ViewModel.C3.SendMessagesRequestV2'
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/Spotio.Frontend.ViewModel.C3.SendMessagesRequestV2'
          application/json:
            schema:
              $ref: '#/components/schemas/Spotio.Frontend.ViewModel.C3.SendMessagesRequestV2'
          text/json:
            schema:
              $ref: '#/components/schemas/Spotio.Frontend.ViewModel.C3.SendMessagesRequestV2'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Spotio.Frontend.ViewModel.C3.SendMessagesRequestV2'
      responses:
        '200':
          description: Success
      security:
      - Bearer: []
      servers:
      - url: https://api.spotio2.com
        description: Production
      - url: https://app-test.spotio2.com
        description: Test
components:
  schemas:
    Spotio.Frontend.ViewModel.C3.DataObjectPhone:
      type: object
      additionalProperties: false
      properties:
        dataObjectId:
          type:
          - string
          - 'null'
        phone:
          type:
          - string
          - 'null'
        existingActivityId:
          type:
          - integer
          - 'null'
          format: int32
        activityDone:
          type:
          - boolean
          - 'null'
    Spotio.Frontend.ViewModel.C3.SendMessagesRequestV2:
      type: object
      additionalProperties: false
      properties:
        templateId:
          type:
          - string
          - 'null'
          description: The unique identifier of the message template.
        body:
          type:
          - string
          - 'null'
          description: The message body.
        force:
          type:
          - boolean
          - 'null'
          description: Indicates whether to force the message to send.
        to:
          type:
          - array
          - 'null'
          description: A list of phone numbers to which the message should be sent.
          items:
            $ref: '#/components/schemas/Spotio.Frontend.ViewModel.C3.DataObjectPhone'
        mediaUrls:
          type:
          - array
          - 'null'
          description: A list of URLs for media attachments.
          items:
            type: string
  securitySchemes:
    Bearer:
      type: apiKey
      description: 'Enter the Bearer Authorization string as following: `Bearer Generated-JWT-Token`'
      name: Authorization
      in: header