Tadeus API Sessions API

The sessions API from Tadeus API — 2 operation(s) for sessions.

Operations 6

GET /sessions/ #
POST /sessions/ #
GET /sessions/{uuid}/ #
PUT /sessions/{uuid}/ #
PATCH /sessions/{uuid}/ #
DELETE /sessions/{uuid}/ #

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-sessions-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-sessions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Integration Sessions API
  description: API Integration endpoints documentation
  version: v1
servers:
- url: https://app.tadeus.net/api/integration/v1
security:
- api_key: []
- api_secret: []
tags:
- name: sessions
paths:
  /sessions/:
    parameters: []
    get:
      operationId: sessions_list
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Session'
      tags:
      - sessions
    post:
      operationId: sessions_create
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Session'
      tags:
      - sessions
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Session'
        required: true
  /sessions/{uuid}/:
    parameters:
    - name: uuid
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: sessions_read
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Session'
      tags:
      - sessions
    put:
      operationId: sessions_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Session'
      tags:
      - sessions
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Session'
        required: true
    patch:
      operationId: sessions_partial_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Session'
      tags:
      - sessions
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Session'
        required: true
    delete:
      operationId: sessions_delete
      description: ''
      responses:
        '204':
          description: ''
      tags:
      - sessions
components:
  schemas:
    Session:
      required:
      - campaign_uuid
      type: object
      properties:
        uuid:
          title: Uuid
          description: Unique session identifier
          type: string
          format: uuid
          readOnly: true
        campaign_uuid:
          title: Campaign uuid
          type: string
          format: uuid
        status:
          title: Status
          type: string
          enum:
          - not_started
          - in_progress
          - processing
          - completed
          - failed
          - timeout
        started_at:
          title: Started at
          type:
          - string
          - 'null'
          format: date-time
          readOnly: true
        last_activity_at:
          title: Last activity at
          type:
          - string
          - 'null'
          format: date-time
          readOnly: true
        attempts_allowed:
          title: Attempts allowed
          type: integer
          maximum: 32767
          minimum: 0
        attempts_count:
          title: Attempts count
          type: integer
          readOnly: true
        success_attempts_allowed:
          title: Success attempts allowed
          type: integer
          maximum: 32767
          minimum: 0
        success_attempts:
          title: Success attempts
          type: integer
          readOnly: true
        closed:
          title: Closed
          type: boolean
        email_capture_mode:
          title: Email capture mode
          description: How to handle email capture when no Participant is linked
          type: string
          enum:
          - none
          - before_optional
          - before_required
          - after
        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