Cvent Social Tables Rooms API

The Rooms API from Cvent Social Tables — 2 operation(s) for rooms.

Operations 3

GET /4.0/properties/{property_id}/rooms Returns all rooms for a given property ID
GET /4.0/rooms get all rooms that the current user has access to
GET /4.0/rooms/{room_id} get a room by ID

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-rooms-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-rooms-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Social Tables API Gateway Authentication Rooms API
  version: 4.0.0
  description: The Social Tables API
servers:
- url: https://api.socialtables.com/
tags:
- name: Rooms
paths:
  /4.0/properties/{property_id}/rooms:
    get:
      tags:
      - Rooms
      summary: Returns all rooms for a given property ID
      parameters:
      - $ref: '#/components/parameters/property_id-property-service'
      responses:
        '200':
          description: a body containing rooms for that respective property ID
  /4.0/rooms:
    get:
      tags:
      - Rooms
      summary: get all rooms that the current user has access to
      description: 'Gets a list of all rooms for which the requestor has

        access based on the their roles and their team''s roles. Identity

        is inferred from OAuth authorization header.

        '
      parameters:
      - $ref: '#/components/parameters/page_size-property-service'
      - $ref: '#/components/parameters/before-property-service'
      - $ref: '#/components/parameters/after-property-service'
      - $ref: '#/components/parameters/room_ids-property-service'
      responses:
        '200':
          description: returns a list of rooms
  /4.0/rooms/{room_id}:
    get:
      tags:
      - Rooms
      summary: get a room by ID
      description: get a room by ID
      parameters:
      - $ref: '#/components/parameters/room_id-property-service'
      - $ref: '#/components/parameters/archived-property-service'
      responses:
        '200':
          description: success
components:
  parameters:
    after-property-service:
      name: after
      in: query
      description: cursor for paging
      schema:
        type: string
    archived-property-service:
      name: archived
      in: query
      schema:
        type: boolean
    before-property-service:
      name: before
      in: query
      description: before cursor for backpaging
      schema:
        type: string
    page_size-property-service:
      name: page_size
      in: query
      description: page size
      schema:
        type: integer
        default: 50
    property_id-property-service:
      name: property_id
      in: path
      required: true
      schema:
        type: string
    room_id-property-service:
      name: room_id
      in: path
      required: true
      schema:
        type: string
    room_ids-property-service:
      name: room_ids
      in: query
      schema:
        type: array
        items:
          type: string
  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