Cvent Social Tables SNC Event Integration API

The SNC Event Integration API from Cvent Social Tables — 1 operation(s) for snc event integration.

Operations 1

POST /4.0/v1/integrations/{sncType} Accepts data about external events and persists them

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-snc-event-integration-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-snc-event-integration-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Social Tables API Gateway Authentication SNC Event Integration API
  version: 4.0.0
  description: The Social Tables API
servers:
- url: https://api.socialtables.com/
tags:
- name: SNC Event Integration
paths:
  /4.0/v1/integrations/{sncType}:
    post:
      tags:
      - SNC Event Integration
      summary: Accepts data about external events and persists them
      description: 'This api creates a diagram in a specified room.

        Unlike most of our other apis, this uses externally provided property and room ids instead of our ids, and requires coordination with our professional services team to map the rooms.

        booking_id must be unique for each event and function_id must be unique for each diagram.

        If you are interested in using this api, please contact your account manager or Cvent sales.

        '
      parameters:
      - name: sncType
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Integration request successful.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/event_integrationsRequest-snc-integration-service'
        required: true
components:
  schemas:
    event_integrationsRequest-snc-integration-service:
      additionalProperties: true
      type: object
      properties:
        property_id:
          type: string
        property_name:
          type:
          - string
          - 'null'
        booking_id:
          type: string
        booking_name:
          type:
          - string
          - 'null'
        account_id:
          type:
          - string
          - 'null'
        account_name:
          type:
          - string
          - 'null'
        booking_arrival_date:
          type:
          - string
          - 'null'
          format: date-time
        booking_departure_date:
          type:
          - string
          - 'null'
          format: date-time
        booking_status:
          type:
          - string
          - 'null'
        event_functions:
          type: array
          items:
            type: object
            additionalProperties: true
            properties:
              function_id:
                type: string
              function_name:
                type:
                - string
                - 'null'
              room_id:
                type: string
              room_name:
                type:
                - string
                - 'null'
              room_abbreviation:
                type:
                - string
                - 'null'
              room_setup:
                type:
                - string
                - 'null'
              room_setup_abbreviation:
                type:
                - string
                - 'null'
              event_type:
                type:
                - string
                - 'null'
              start_date_time:
                type: string
                format: date-time
              end_date_time:
                type: string
                format: date-time
              number_of_attendees:
                type: integer
            required:
            - room_id
            - start_date_time
            - end_date_time
      required:
      - property_id
      - booking_id
      - booking_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