Cvent Social Tables Guest Groups API

The Guest Groups API from Cvent Social Tables — 7 operation(s) for guest groups.

Operations 8

POST /4.0/guestlists/{guestlist_id}/groups Create a group
GET /4.0/guestlists/{guestlist_id}/groups/{group_id} Retrieve a GROUP
DELETE /4.0/guestlists/{guestlist_id}/groups/{group_id} Delete a GROUP
POST /4.0/guestlists/{guestlist_id}/groups/{group_id}/guests/_bulk Bulk add/remove guests to/from group
POST /4.0/guestlists/{guestlist_id}/groups/{group_id}/guests/_bulk/create Bulk adds guests from group
POST /4.0/guestlists/{guestlist_id}/groups/{group_id}/guests/_bulk/delete Bulk deletes guests from group
DELETE /4.0/guestlists/{guestlist_id}/groups/{group_id}/name Clear Group Name
PUT /4.0/guestlists/{guestlist_id}/groups/{group_id}/name/{name} Set group name

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-groups-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-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Social Tables API Gateway Authentication Guest Groups API
  version: 4.0.0
  description: The Social Tables API
servers:
- url: https://api.socialtables.com/
tags:
- name: Guest Groups
paths:
  /4.0/guestlists/{guestlist_id}/groups:
    post:
      tags:
      - Guest Groups
      summary: Create a group
      parameters:
      - name: guestlist_id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: group created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/group-guest-list-service'
        '400':
          description: Error creating group
        '410':
          description: guestlist is deleted
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/groupBulk-guest-list-service'
        required: true
  /4.0/guestlists/{guestlist_id}/groups/{group_id}:
    get:
      tags:
      - Guest Groups
      summary: Retrieve a GROUP
      parameters:
      - name: guestlist_id
        required: true
        in: path
        schema:
          type: string
      - name: group_id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: returns group
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/group-guest-list-service'
        '410':
          description: guestlist is deleted
    delete:
      tags:
      - Guest Groups
      summary: Delete a GROUP
      parameters:
      - name: guestlist_id
        required: true
        in: path
        schema:
          type: string
      - name: group_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: successfully deleted
        '400':
          description: Error with no id
        '404':
          description: Error with invalid id
        '405':
          description: Error with no id
        '410':
          description: guestlist is deleted
  /4.0/guestlists/{guestlist_id}/groups/{group_id}/guests/_bulk:
    post:
      tags:
      - Guest Groups
      summary: Bulk add/remove guests to/from group
      parameters:
      - name: guestlist_id
        required: true
        in: path
        schema:
          type: string
      - name: group_id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: group created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/group-guest-list-service'
        '400':
          description: Error creating group
        '410':
          description: guestlist is deleted
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/groupBulk-guest-list-service'
        required: true
  /4.0/guestlists/{guestlist_id}/groups/{group_id}/guests/_bulk/create:
    post:
      tags:
      - Guest Groups
      summary: Bulk adds guests from group
      parameters:
      - name: guestlist_id
        required: true
        in: path
        schema:
          type: string
      - name: group_id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: guests added to group
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/group-guest-list-service'
        '400':
          description: Error adding guests
        '410':
          description: guestlist is deleted
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
        required: true
  /4.0/guestlists/{guestlist_id}/groups/{group_id}/guests/_bulk/delete:
    post:
      tags:
      - Guest Groups
      summary: Bulk deletes guests from group
      parameters:
      - name: guestlist_id
        required: true
        in: path
        schema:
          type: string
      - name: group_id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: guests removed from group
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/group-guest-list-service'
        '400':
          description: Error removing guests
        '410':
          description: guestlist is deleted
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
        required: true
  /4.0/guestlists/{guestlist_id}/groups/{group_id}/name:
    delete:
      tags:
      - Guest Groups
      summary: Clear Group Name
      parameters:
      - name: guestlist_id
        required: true
        in: path
        schema:
          type: string
      - name: group_id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: group created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/group-guest-list-service'
        '400':
          description: Error removing group name
        '410':
          description: guestlist is deleted
  /4.0/guestlists/{guestlist_id}/groups/{group_id}/name/{name}:
    put:
      tags:
      - Guest Groups
      summary: Set group name
      parameters:
      - name: guestlist_id
        required: true
        in: path
        schema:
          type: string
      - name: group_id
        required: true
        in: path
        schema:
          type: string
      - name: name
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: group name set
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/group-guest-list-service'
        '400':
          description: Error setting group name
        '410':
          description: guestlist is deleted
components:
  schemas:
    group-guest-list-service:
      type: object
      properties:
        id:
          type: string
        guestlist_id:
          type: string
        guest_count:
          type: integer
        is_named:
          type: boolean
        guests:
          type: array
          items:
            $ref: '#/components/schemas/guests-guest-list-service'
      required:
      - id
      example:
        id: 1db84340-2779-11e6-88c6-db7134cc99b6
        name: Group A
        guestlist_id: 1dad46c0-2779-11e6-88c6-db7134cc99b6
        guest_count: 2
        guests:
        - id: 1db18c80-2779-11e6-88c6-db7134cc99b6
          guestlist_id: 1dad46c0-2779-11e6-88c6-db7134cc99b6
          first_name: Test
          last_name: One
        - id: 1db18c81-2779-11e6-88c6-db7134cc99b6
          guestlist_id: 1dad46c0-2779-11e6-88c6-db7134cc99b6
          first_name: Test
          last_name: Two
    groupBulk-guest-list-service:
      type: object
      properties:
        action:
          type: string
          enum:
          - CREATE
          - DELETE
        guests:
          type: array
          items:
            $ref: '#/components/schemas/guests-guest-list-service'
      required:
      - guests
      - action
      example:
        action: CREATE | DELETE
        guests:
        - 99b4ae20-2779-11e6-b0b7-13c2616041ae
        - 99b4ae21-2779-11e6-b0b7-13c2616041ae
    meals-guest-list-service:
      type: object
      properties:
        title:
          type: string
          description: name of meal
      required:
      - title
    tags-guest-list-service:
      type: object
      properties:
        title:
          type: string
          description: title of tag
        color:
          type: string
          description: color of tag
      required:
      - title
    guests-guest-list-service:
      type: object
      properties:
        id:
          type: string
          description: id of guest
        first_name:
          type: string
          description: first name of guest
        last_name:
          type: string
          description: last name of guest
        email:
          type: string
          description: email address
        checked_in_status:
          type: object
          description: checkin data
          properties:
            checked_in:
              type: integer
            checked_in_at:
              type: string
              format: date-time
            checked_out_at:
              type: string
              format: date-time
        tags:
          type: array
          items:
            $ref: '#/components/schemas/tags-guest-list-service'
        meals:
          type: array
          items:
            $ref: '#/components/schemas/meals-guest-list-service'
      required:
      - id
      - first_name
      - last_name
  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