Cvent Social Tables Guest Lists API

The Guest Lists API from Cvent Social Tables — 6 operation(s) for guest lists.

Operations 10

GET /4.0/guestlists Retrieve all guestlists by session or event id
POST /4.0/guestlists Create a guestlist
GET /4.0/guestlists/{guestlist_id} Retrieve all guestlists
PUT /4.0/guestlists/{guestlist_id} Update a guestlist
PATCH /4.0/guestlists/{guestlist_id} Update a guestlist
DELETE /4.0/guestlists/{guestlist_id} Delete a guestlist
POST /4.0/guestlists/{guestlist_id}/_clone Clone a guestlist
GET /4.0/guestlists/{guestlist_id}/column_mapping Get a guestlist column mapping
DELETE /4.0/guestlists/{guestlist_id}/cvent/seating Delete a guestlist
POST /4.0/guestlists/{guestlist_id}/restore Restore a deleted guestlist

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/cvent-social-tables-guest-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 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

cvent-social-tables-guest-lists-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Social Tables API Gateway Authentication Guest Lists API
  version: 4.0.0
  description: The Social Tables API
servers:
- url: https://api.socialtables.com/
tags:
- name: Guest Lists
paths:
  /4.0/guestlists:
    get:
      tags:
      - Guest Lists
      summary: Retrieve all guestlists by session or event id
      parameters:
      - name: event_id
        required: false
        in: query
        schema:
          type: string
      - name: session_id
        required: false
        in: query
        schema:
          type: string
      responses:
        '200':
          description: guestlists
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/guestlists-guest-list-service'
    post:
      tags:
      - Guest Lists
      summary: Create a guestlist
      responses:
        '200':
          description: guestlists response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/guestlists-guest-list-service'
        '400':
          description: Error creating guestlist
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                event_id:
                  type: string
                  description: deprecated, use diagram_id
                diagram_id:
                  type: string
        required: true
  /4.0/guestlists/{guestlist_id}:
    get:
      tags:
      - Guest Lists
      summary: Retrieve all guestlists
      parameters:
      - name: guestlist_id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: guestlists
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/guestlists-guest-list-service'
        '410':
          description: requested guestlist is deleted
    put:
      tags:
      - Guest Lists
      summary: Update a guestlist
      parameters:
      - name: guestlist_id
        description: guestlist ID
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: success, guestlist updated
        '410':
          description: requested guestlist is deleted
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/guestlists-guest-list-service'
    patch:
      tags:
      - Guest Lists
      summary: Update a guestlist
      parameters:
      - name: guestlist_id
        description: guestlist ID
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: success, guestlist updated
        '410':
          description: requested guestlist is deleted
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/guestlists-guest-list-service'
    delete:
      tags:
      - Guest Lists
      summary: Delete a guestlist
      parameters:
      - name: guestlist_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: successfully deleted
        '404':
          description: Error with invalid id or no id
  /4.0/guestlists/{guestlist_id}/_clone:
    post:
      tags:
      - Guest Lists
      summary: Clone a guestlist
      parameters:
      - name: guestlist_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successfully cloned
        '400':
          description: Error with no id
        '404':
          description: Error with invalid id
        '405':
          description: Error with no id
        '410':
          description: requested guestlist is deleted
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/guestlists-guest-list-service'
        required: true
  /4.0/guestlists/{guestlist_id}/column_mapping:
    get:
      tags:
      - Guest Lists
      summary: Get a guestlist column mapping
      parameters:
      - name: guestlist_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successfully fetched column mapping
        '404':
          description: column mapping for given guestlist_id doesn't exist
  /4.0/guestlists/{guestlist_id}/cvent/seating:
    delete:
      tags:
      - Guest Lists
      summary: Delete a guestlist
      parameters:
      - name: guestlist_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: successfully deleted
        '404':
          description: Error with invalid id or no id
  /4.0/guestlists/{guestlist_id}/restore:
    post:
      tags:
      - Guest Lists
      summary: Restore a deleted guestlist
      parameters:
      - name: guestlist_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: sucessfully restored a deleted guestlist
        '400':
          description: Error restoring deleted guestlist
        '404':
          description: Error restoring guestlist with invalid id
components:
  schemas:
    guestlists-guest-list-service:
      type: object
      properties:
        id:
          type: string
          description: id of guestlists
        session_id:
          type: string
          description: session_id of guestlists
        event_id:
          type: string
          description: event_id
        name:
          type: string
          description: name
        deleted:
          type: integer
          description: name
      required:
      - id
      - name
      - event_id
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          scopes:
            authenticated: any authentication whatsoever
            create:oauth_client: oauth client create
            userdata: All of the things.
          authorizationUrl: https://auth.socialtables.com/oauth/authorize
          tokenUrl: https://auth.socialtables.com/oauth/token
      description: OAuth
    user_token:
      type: apiKey
      name: user_token
      in: header
      description: Social Tables User Token
    partner_token:
      type: apiKey
      name: partner_token
      in: header
      description: Social Tables Partner Token