Tadeus API Campaigns API

The campaigns API from Tadeus API — 5 operation(s) for campaigns.

Operations 9

GET /campaigns/ #
POST /campaigns/ #
GET /campaigns/{uuid}/ #
PUT /campaigns/{uuid}/ #
PATCH /campaigns/{uuid}/ #
DELETE /campaigns/{uuid}/ #
POST /campaigns/{uuid}/bulk-invite/ #
POST /campaigns/{uuid}/generate-insights/ #
POST /campaigns/{uuid}/invite/ #

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/tadeus-api-campaigns-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

tadeus-api-campaigns-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Integration Campaigns API
  description: API Integration endpoints documentation
  version: v1
servers:
- url: https://app.tadeus.net/api/integration/v1
security:
- api_key: []
- api_secret: []
tags:
- name: campaigns
paths:
  /campaigns/:
    parameters: []
    get:
      operationId: campaigns_list
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Campaign'
      tags:
      - campaigns
    post:
      operationId: campaigns_create
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Campaign'
      tags:
      - campaigns
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Campaign'
        required: true
  /campaigns/{uuid}/:
    parameters:
    - name: uuid
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: campaigns_read
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Campaign'
      tags:
      - campaigns
    put:
      operationId: campaigns_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Campaign'
      tags:
      - campaigns
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Campaign'
        required: true
    patch:
      operationId: campaigns_partial_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Campaign'
      tags:
      - campaigns
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Campaign'
        required: true
    delete:
      operationId: campaigns_delete
      description: ''
      responses:
        '204':
          description: ''
      tags:
      - campaigns
  /campaigns/{uuid}/bulk-invite/:
    parameters:
    - name: uuid
      in: path
      required: true
      schema:
        type: string
    post:
      operationId: campaigns_bulk_invite
      description: 'Invite several participants at once.

        POST /api/integration/v1/campaigns/{uuid}/bulk-invite/'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Campaign'
      tags:
      - campaigns
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Campaign'
        required: true
  /campaigns/{uuid}/generate-insights/:
    parameters:
    - name: uuid
      in: path
      required: true
      schema:
        type: string
    post:
      operationId: campaigns_generate_insights
      description: 'Trigger insights generation for this campaign.

        POST /api/integration/v1/campaigns/{uuid}/generate-insights/'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Campaign'
      tags:
      - campaigns
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Campaign'
        required: true
  /campaigns/{uuid}/invite/:
    parameters:
    - name: uuid
      in: path
      required: true
      schema:
        type: string
    post:
      operationId: campaigns_invite
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Campaign'
      tags:
      - campaigns
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Campaign'
        required: true
components:
  schemas:
    Campaign:
      required:
      - name
      - template_uuid
      type: object
      properties:
        uuid:
          title: Uuid
          description: Unique campaign identifier
          type: string
          format: uuid
          readOnly: true
        name:
          title: Name
          description: Campaign name
          type: string
          maxLength: 255
          minLength: 1
        template_uuid:
          title: Template uuid
          type: string
          format: uuid
        start_at:
          title: Start at
          description: Campaign start time
          type:
          - string
          - 'null'
          format: date-time
        end_at:
          title: End at
          description: Campaign end time
          type:
          - string
          - 'null'
          format: date-time
        settings:
          title: Settings
          description: Campaign-specific settings overrides
          type: object
        active:
          title: Active
          type: boolean
        type:
          title: Type
          description: Campaign type (e.g. Survey, Tutoring)
          type: string
          enum:
          - survey
          - tutoring
        access_type:
          title: Access type
          description: 'Access control: Open (public link) or Invite Only'
          type: string
          enum:
          - open
          - invite_only
        max_sessions:
          title: Max sessions
          description: Maximum number of sessions allowed (protection cap)
          type:
          - integer
          - 'null'
          maximum: 2147483647
          minimum: -2147483648
        created_at:
          title: Created at
          type: string
          format: date-time
          readOnly: true
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: X-API-KEY-ID
    api_secret:
      type: apiKey
      in: header
      name: X-API-SECRET