Syniverse 10DLC v1 Number Pools API

Enhanced 10DLC Number Pool to Campaign Association Management

Operations 2

POST /engage/tendlc-services/v1/campaigns/{campaignId}/pools/{numberPoolId}/types/{numberPoolType} Association of Campaign with the Number Pool #
DELETE /engage/tendlc-services/v1/campaigns/{campaignId}/pools/{numberPoolId} Removal of the Association of the Number pool from the Campaign #

Documentation

📖
Documentation
https://sdcdocumentation.syniverse.com/index.php/omni-channel/user-guides/sms-mms-user-guide
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/omni-channel/api-reference/explore-api-reference
📖
Documentation
https://sdcdocumentation.syniverse.com/index.php/multi-factor-authentication/getting-started/multi-factor-authentication-overview
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/multi-factor-authentication/api-reference/explore-api-reference
📖
Documentation
https://sdcdocumentation.syniverse.com/index.php/phone-number-verification/getting-started/phone-number-verification-overview
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/phone-number-verification/api-reference/explore-pnv-api-reference
📖
Documentation
https://sdcdocumentation.syniverse.com/index.php/right-party-verification/getting-started/right-party-verification-overview
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/right-party-verification/api-reference/explore-rpv-api-reference
📖
Documentation
https://sdcdocumentation.syniverse.com/index.php/account-takeover-detection/getting-started/account-takeover-detection-overview
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/account-takeover-detection/api-reference/explore-ato-api-reference
📖
Documentation
https://sdcdocumentation.syniverse.com/index.php/messaging-trust/getting-started/messaging-trust-overview
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/messaging-trust/api-reference/messaging-trust-api
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/messaging-trust/api-reference/resolve-api
📖
Documentation
https://sdcdocumentation.syniverse.com/index.php/10-dlc/getting-started/10-dlc-overview
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/10-dlc/api-reference/api-specification-v23
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/10-dlc/api-version-1-deprecated/explore-api-reference
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/developer-community-gateway-services/api-reference/explore-whitelist-api-reference
📖
APIReference
https://sdcdocumentation.syniverse.com/index.php/developer-community-gateway-services/api-reference/explore-token-management-api-reference

Specifications

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/syniverse-10dlc-v1-number-pools-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

syniverse-10dlc-v1-number-pools-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: This Service enables the Enterprise Customer to Add/Delete 10DLC numbers as well as Number Pools to Campaigns. The backend systems of this api will perform automatic MNO (Mobile Carrier) provisionning as required.
  version: '1.2'
  title: Syniverse 10DLC Provissioning 10DLC v1 Number Pools API
servers:
- url: https://api.syniverse.com
tags:
- name: 10DLC v1 Number Pools
  description: Enhanced 10DLC Number Pool to Campaign Association Management
paths:
  /engage/tendlc-services/v1/campaigns/{campaignId}/pools/{numberPoolId}/types/{numberPoolType}:
    post:
      security:
      - Bearer: []
      tags:
      - 10DLC v1 Number Pools
      summary: Association of Campaign  with the Number Pool
      description: Syniverse is required to update some MNO A2P platforms with the new Number Pool for a given campaign, enabling   customers to better manage campaigns with large groups of numbers. Number pools require carrier approvals and this API currently covers  2 types SubId and CampaignId.
      operationId: campaignWithNumberPoolAssociationUsingPOST
      parameters:
      - name: campaignId
        in: path
        description: campaignId
        required: true
        schema:
          type: string
      - name: numberPoolId
        in: path
        description: 'Number Pool Id that represents the Number Pool. Depending on the number pool type, it will be <br/> USE: <br/>  -  **{CampaignID}-{NNID}** for CampaignId Nmber Pool Type (exmple: CYYYYYY-999000) <br /> -  **{SubID}-{NNID}** for SubId Nmber Pool Type. (example CUST_SYN1-999000)'
        required: true
        schema:
          type: string
      - name: numberPoolType
        in: path
        description: Type of Number Pool based on SubId or based on Campaign Id; Indicative
        required: true
        schema:
          type: string
          enum:
          - subId
          - campaignId
      - name: int-appId
        in: header
        description: int-appId for syniverse internal use only.
        required: false
        schema:
          type: string
      - name: int-companyId
        in: header
        description: int-companyId for syniverse internal use only.
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Request recieved
          content:
            application/json:
              schema:
                type: string
        '401':
          description: You are not authorized to view the resource
        '404':
          description: The resource you were trying to reach is not found
      deprecated: false
  /engage/tendlc-services/v1/campaigns/{campaignId}/pools/{numberPoolId}:
    delete:
      security:
      - Bearer: []
      tags:
      - 10DLC v1 Number Pools
      summary: Removal of the Association of the Number pool from the Campaign
      operationId: campaignWithNumberPoolRemovalUsingDELETE
      parameters:
      - name: campaignId
        in: path
        description: campaignId
        required: true
        schema:
          type: string
      - name: numberPoolId
        in: path
        description: 'Number Pool Id that represents the Number Pool. Depending on the number pool type, it will be <br/> USE: <br/>  -  **{CampaignID}-{NNID}** for CampaignId Nmber Pool Type (exmple: CYYYYYY-999000) <br /> -  **{SubID}-{NNID}** for SubId Nmber Pool Type. (example CUST_SYN1-999000)'
        required: true
        schema:
          type: string
      - name: int-appId
        in: header
        description: int-appId for syniverse internal use only.
        required: false
        schema:
          type: string
      - name: int-companyId
        in: header
        description: int-companyId for syniverse internal use only.
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Request recieved
          content:
            application/json:
              schema:
                type: string
        '401':
          description: You are not authorized to view the resource
        '404':
          description: The resource you were trying to reach is not found
      deprecated: false
components:
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header
      description: Use Bearer {Syniverse SDC Application Token} for example "Bearer aaaaa-aabb-bbaa-bbbbbb"