Cvent Social Tables Guest Tags API

The Guest Tags API from Cvent Social Tables — 3 operation(s) for guest tags.

Operations 6

POST /4.0/guestlists/{guestlist_id}/guests/tags assign/delete multiple guests to a tag
GET /4.0/guestlists/{guestlist_id}/tags get the tags status on a guestlist
POST /4.0/guestlists/{guestlist_id}/tags create a tag on a guestlist
GET /4.0/guestlists/{guestlist_id}/tags/{tag_title_or_id} get a tag on a guestlist
PUT /4.0/guestlists/{guestlist_id}/tags/{tag_title_or_id} edit a tag on a guestlist
DELETE /4.0/guestlists/{guestlist_id}/tags/{tag_title_or_id} delete a tag on a 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-tags-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-tags-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Social Tables API Gateway Authentication Guest Tags API
  version: 4.0.0
  description: The Social Tables API
servers:
- url: https://api.socialtables.com/
tags:
- name: Guest Tags
paths:
  /4.0/guestlists/{guestlist_id}/guests/tags:
    post:
      tags:
      - Guest Tags
      summary: assign/delete multiple guests to a tag
      parameters:
      - name: guestlist_id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: tag for guestlist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/tags-guest-list-service'
        '400':
          description: Error adding or removing tags
        '410':
          description: guestlist is deleted
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - action
              - guests
              - tags
              properties:
                tags:
                  type: array
                  items:
                    type: string
                action:
                  type: string
                guests:
                  type: array
                  items:
                    $ref: '#/components/schemas/guests-guest-list-service'
        description: body object
        required: true
  /4.0/guestlists/{guestlist_id}/tags:
    get:
      tags:
      - Guest Tags
      summary: get the tags status on a guestlist
      parameters:
      - name: guestlist_id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: tags state for guestlist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/tags-guest-list-service'
        '400':
          description: Error getting tags state
        '410':
          description: guestlist is deleted
    post:
      tags:
      - Guest Tags
      summary: create a tag on a guestlist
      parameters:
      - name: guestlist_id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: tag for guestlist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/tags-guest-list-service'
        '400':
          description: Error creating tag
        '410':
          description: guestlist is deleted
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - tag
              properties:
                tag:
                  type: object
        description: body object
        required: true
  /4.0/guestlists/{guestlist_id}/tags/{tag_title_or_id}:
    get:
      tags:
      - Guest Tags
      summary: get a tag on a guestlist
      parameters:
      - name: guestlist_id
        required: true
        in: path
        schema:
          type: string
      - name: tag_title_or_id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: tag for guestlist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/tags-guest-list-service'
        '400':
          description: Error getting tag
        '410':
          description: guestlist is deleted
    put:
      tags:
      - Guest Tags
      summary: edit a tag on a guestlist
      parameters:
      - name: guestlist_id
        required: true
        in: path
        schema:
          type: string
      - name: tag_title_or_id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: tag for guestlist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/tags-guest-list-service'
        '400':
          description: Error editing tag
        '410':
          description: guestlist is deleted
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - tags
              properties:
                tags:
                  type: object
        description: body object
        required: true
    delete:
      tags:
      - Guest Tags
      summary: delete a tag on a guestlist
      parameters:
      - name: guestlist_id
        required: true
        in: path
        schema:
          type: string
      - name: tag_title_or_id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: tag for guestlist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/tags-guest-list-service'
        '400':
          description: Error deleting tag
        '410':
          description: guestlist is deleted
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - tags
              properties:
                tags:
                  type: object
        description: body object
        required: true
components:
  schemas:
    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