Cvent Social Tables Diagram Template Presets API

The Diagram Template Presets API from Cvent Social Tables — 2 operation(s) for diagram template presets.

Operations 5

GET /4.0/template-presets get multiple template presets
POST /4.0/template-presets inserts a template preset
GET /4.0/template-presets/{id} get a template preset by id
DELETE /4.0/template-presets/{id} deletes a template preset
PATCH /4.0/template-presets/{id} updates a template preset

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-diagram-template-presets-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-diagram-template-presets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Social Tables API Gateway Authentication Diagram Template Presets API
  version: 4.0.0
  description: The Social Tables API
servers:
- url: https://api.socialtables.com/
tags:
- name: Diagram Template Presets
paths:
  /4.0/template-presets:
    get:
      tags:
      - Diagram Template Presets
      summary: get multiple template presets
      parameters:
      - name: user
        in: query
        required: false
        schema:
          type: string
      - name: team
        in: query
        required: false
        schema:
          type: string
      - name: setup
        in: query
        required: false
        schema:
          type: string
      - name: propertyId
        in: query
        required: false
        description: filters by property id, excludes presets associated with a property if 'null'
        schema:
          type: string
      - name: catalogItemId
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: returns an array of template-presets
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/template-presets__template-preset-diagram-service'
        '400':
          description: validation error must specify either user or team
        '401':
          description: authorization missing or invalid
    post:
      tags:
      - Diagram Template Presets
      summary: inserts a template preset
      parameters:
      - name: event_id
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: inserted template preset with id
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/template-presets__template-preset-diagram-service'
        '400':
          description: template preset not valid
        '401':
          description: authorization missing or invalid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/template-presets__template-preset-post-diagram-service'
        description: the body of the template preset
        required: true
  /4.0/template-presets/{id}:
    get:
      tags:
      - Diagram Template Presets
      summary: get a template preset by id
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: returns a template presets
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/template-presets__template-preset-diagram-service'
        '401':
          description: authorization missing or invalid
        '404':
          description: template preset not found
    delete:
      tags:
      - Diagram Template Presets
      summary: deletes a template preset
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: event_id
        in: query
        required: false
        schema:
          type: string
      responses:
        '204':
          description: OK
        '401':
          description: authorization missing or invalid
        '404':
          description: template preset not found
    patch:
      tags:
      - Diagram Template Presets
      summary: updates a template preset
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: event_id
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/template-presets__template-preset-diagram-service'
        '400':
          description: template preset update not valid
        '401':
          description: authorization missing or invalid
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                data:
                  $ref: '#/components/schemas/template-presets__template-preset-diagram-service'
        description: the body of the template preset update
        required: true
components:
  schemas:
    template-config__template-config-core-diagram-service:
      title: Template Config core fields
      type: object
      properties:
        setup:
          type: string
        chevronAngle:
          type: integer
        chairs:
          type: integer
        chairOrientation:
          type: string
        chairType:
          type: string
        column:
          type: object
          properties:
            spacing:
              type: number
        floorElementType:
          type: string
        chairSides:
          type: object
          additionalProperties: false
          properties:
            side_1_count:
              type: integer
            side_2_count:
              type: integer
            side_3_count:
              type: integer
            side_4_count:
              type: integer
        chair:
          type: object
          additionalProperties: false
          properties:
            size:
              $ref: '#/components/schemas/dimensions-diagram-service'
        rotation:
          type: number
        relativeRotation:
          type: number
        locations:
          type: object
          additionalProperties:
            type: string
        theaterCurve:
          type: integer
        theaterChairNumberOffset:
          type: number
        theaterChairNumberIsOddEven:
          $ref: '#/components/schemas/theaterChairNumberIsOddEven-diagram-service'
        theaterChairNumberIsReverse:
          type: boolean
        theaterChairNumbersOmitted:
          type: array
          items:
            type: integer
        sectionName:
          type: string
        sectionLabelling:
          enum:
          - alphabetical
          - numerical
          - none
          type: string
        sectionLabellingRowOffset:
          type: number
        sectionLabellingRowIsReverse:
          type: boolean
        sectionLabellingRowsOmitted:
          type: array
          items:
            type: integer
        catalogCategoryTypeItemId:
          type: integer
        chairCatalogCategoryTypeItemId:
          type: integer
        removedSeats:
          type: integer
        color:
          type: string
    template-config__aisle-diagram-service:
      title: Template Aisle
      type: object
      properties:
        width:
          type: number
        floorElementsBetween:
          type: number
    theaterChairNumberIsOddEven-diagram-service:
      enum:
      - odd
      - even
      - true
      - false
    dimensions-diagram-service:
      type: object
      additionalProperties: false
      properties:
        width:
          type: number
        length:
          type: number
        radius:
          type: number
    template-config__meta-diagram-service:
      title: Template Table
      type: object
      additionalProperties: false
      properties:
        rows:
          type: integer
        cols:
          type: integer
    template-presets__template-preset-post-diagram-service:
      title: Template Preset Post
      allOf:
      - $ref: '#/components/schemas/template-presets__template-preset-diagram-service'
    xyPair-diagram-service:
      type: object
      additionalProperties: false
      properties:
        x:
          type: number
        y:
          type: number
    template-config__table-diagram-service:
      title: Template Table
      type: object
      additionalProperties: false
      properties:
        size:
          $ref: '#/components/schemas/dimensions-diagram-service'
        spacing:
          $ref: '#/components/schemas/xyPair-diagram-service'
        rotation:
          type: number
    template-presets__template-preset-diagram-service:
      title: Template Preset
      type: object
      additionalProperties: false
      properties:
        id:
          type: string
        type:
          type: string
        owner_id:
          type: string
        name:
          type: string
        legacy_property_id:
          type: integer
        definition:
          type: object
          additionalProperties: false
          properties:
            template_config:
              $ref: '#/components/schemas/template-config__template-config-diagram-service'
      required:
      - definition
    template-config__aisles-diagram-service:
      title: Template Aisles
      type: object
      additionalProperties: false
      properties:
        vertical:
          $ref: '#/components/schemas/template-config__aisle-diagram-service'
        horizontal:
          $ref: '#/components/schemas/template-config__aisle-diagram-service'
    template-config__template-config-diagram-service:
      title: Template Config
      type: object
      allOf:
      - type: object
        properties:
          table:
            $ref: '#/components/schemas/template-config__table-diagram-service'
          aisles:
            $ref: '#/components/schemas/template-config__aisles-diagram-service'
          meta:
            $ref: '#/components/schemas/template-config__meta-diagram-service'
      - $ref: '#/components/schemas/template-config__template-config-core-diagram-service'
  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