Dotdigital API Sms API

The ApiSms API from Dotdigital — 4 operation(s) for apisms.

Operations 7

POST /v2/sms-messages/send-to/{telephoneNumber} Sends a single SMS message. #
POST /v2/sms/campaigns Creates an SMS campaign. #
GET /v2/sms/campaigns Gets SMS Campaigns. #
PUT /v2/sms/campaigns/{id} Updates an SMS campaign. #
DELETE /v2/sms/campaigns/{id} Deletes an SMS campaign. #
GET /v2/sms/campaigns/{id} Gets SMS campaign by Id. #
POST /v2/sms/campaigns/copy Copies an SMS campaign. #

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/dotdigital-apisms-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

dotdigital-apisms-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: apiconnector.com API Sms API
  version: v2
servers:
- url: https://r1-api.dotdigital.com
tags:
- name: ApiSms
paths:
  /v2/sms-messages/send-to/{telephoneNumber}:
    post:
      tags:
      - ApiSms
      summary: Sends a single SMS message.
      operationId: ApiSms_SendSingleSmsMessage
      parameters:
      - name: telephoneNumber
        in: path
        required: true
        schema:
          type: string
        x-position: 1
      requestBody:
        x-name: sms
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiSms'
        required: true
        x-position: 2
      responses:
        '204':
          description: ''
  /v2/sms/campaigns:
    post:
      tags:
      - ApiSms
      summary: Creates an SMS campaign.
      operationId: ApiSms_CreateSmsCampaign
      requestBody:
        x-name: apiSmsCampaign
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiSmsCampaign'
        required: true
        x-position: 1
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiSmsCampaign'
    get:
      tags:
      - ApiSms
      summary: Gets SMS Campaigns.
      operationId: ApiSms_GetSmsCampaigns
      parameters:
      - name: select
        in: query
        schema:
          type: integer
          format: int32
          default: 1000
        x-position: 1
      - name: skip
        in: query
        schema:
          type: integer
          format: int32
          default: 0
        x-position: 2
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiSmsCampaign'
  /v2/sms/campaigns/{id}:
    put:
      tags:
      - ApiSms
      summary: Updates an SMS campaign.
      operationId: ApiSms_UpdateSmsCampaign
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int32
        x-position: 1
      requestBody:
        x-name: apiSmsCampaign
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiSmsCampaign'
        required: true
        x-position: 2
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiSmsCampaign'
    delete:
      tags:
      - ApiSms
      summary: Deletes an SMS campaign.
      operationId: ApiSms_DeleteSmsCampaign
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int32
        x-position: 1
      responses:
        '204':
          description: ''
    get:
      tags:
      - ApiSms
      summary: Gets SMS campaign by Id.
      operationId: ApiSms_GetSmsCampaign
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int32
        x-position: 1
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiSmsCampaign'
  /v2/sms/campaigns/copy:
    post:
      tags:
      - ApiSms
      summary: Copies an SMS campaign.
      operationId: ApiSms_CopySmsCampaign
      requestBody:
        x-name: apiCopyrequest
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiCopySmsCampaignRequest'
        required: true
        x-position: 1
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiSmsCampaign'
components:
  schemas:
    ApiCopySmsCampaignRequest:
      type: object
      additionalProperties: false
      required:
      - campaignId
      - copyName
      properties:
        campaignId:
          type: integer
          format: int32
        copyName:
          type: string
          maxLength: 256
          minLength: 1
    ApiSms:
      type: object
      additionalProperties: false
      required:
      - message
      properties:
        message:
          type: string
          minLength: 1
    ApiSmsCampaignStatuses:
      type: string
      description: ''
      x-enumNames:
      - Unsent
      - Sending
      - Sent
      - Cancelled
      - NotAvailableInThisVersion
      enum:
      - Unsent
      - Sending
      - Sent
      - Cancelled
      - NotAvailableInThisVersion
    ApiSmsCampaign:
      allOf:
      - $ref: '#/components/schemas/ApiSms'
      - type: object
        additionalProperties: false
        required:
        - name
        properties:
          id:
            type: integer
            format: int32
          name:
            type: string
            maxLength: 256
            minLength: 1
          sendingIdentityId:
            type: integer
            format: int32
          sendingIdentity:
            type:
            - string
            - 'null'
            maxLength: 15
          toggleShortLinks:
            type:
            - boolean
            - 'null'
          status:
            readOnly: true
            oneOf:
            - $ref: '#/components/schemas/ApiSmsCampaignStatuses'
x-generator: NSwag v14.4.0.0 (NJsonSchema v11.3.2.0 (Newtonsoft.Json v13.0.0.0))