Optus Delete Multiple Lists API

The Delete Multiple Lists API from Optus — 1 operation(s) for delete multiple lists.

Operations 1

POST /{application_name}/delete_multiple_lists #

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/optus-delete-multiple-lists-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

optus-delete-multiple-lists-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Campaign Manager Delete Multiple Lists API
  contact:
    name: The Optus SMS Suite API Support
    url: https://sms.optus.com.au
    email: optussd@modicagroup.com
  version: 1.0.1
servers:
- url: https://api.sms.optus.com.au/rest/campaign_manager/v1
security:
- BasicAuth: []
tags:
- name: Delete Multiple Lists
paths:
  /{application_name}/delete_multiple_lists:
    post:
      security:
      - BasicAuth: []
      description: Delete multiple lists
      operationId: deleteMultList
      parameters:
      - name: application_name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Some/all lists were deleted
          content:
            application/json:
              schema:
                type: object
                properties:
                  list_ids:
                    description: The IDs of lists that were deleted
                    type: array
                    items:
                      type: integer
                  message:
                    type: string
                    example: IDs of deleted lists
        default:
          description: 500 Internal Server Error
          content:
            application/json:
              schema:
                type: string
                example: 'error: Lists cannot be deleted'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteMultipleListsRequest'
        required: true
      tags:
      - Delete Multiple Lists
components:
  schemas:
    DeleteMultipleListsRequest:
      type: object
      required:
      - list_ids
      properties:
        list_ids:
          type: array
          maxLength: 100
          minLength: 1
          items:
            type: integer
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic