Cvent website screenshot

Cvent

Cvent is a leading meetings, events, and hospitality technology provider with over 4,800 employees and 22,000+ customers worldwide. The Cvent platform spans Event Cloud (event management, registration, mobile event apps, virtual and hybrid events, Attendee Hub, surveys, Diagramming, and analytics) and Hospitality Cloud (Cvent Supplier Network, Passkey, Venue Sourcing, and Sales & Catering). Programmatic access is delivered through the unified Cvent Platform REST API (api-platform.cvent.com) using OAuth 2.0 client credentials, with legacy SOAP, BadgeKit, Jifflenow, and CSN APIs documented for historical integrations. The developer portal at developers.cvent.com hosts API references, guides, OpenAPI downloads, webhooks, SSO, custom widgets, white-label, and integration documentation.

9 APIs 0 Features
Attendee HubAttendee ManagementConferencesDiagrammingEvent ManagementEvent MarketingEventsExhibitorsHospitalityHospitality CloudHybrid EventsMeetingsOAuth 2.0PasskeyRegistrationREST APISOAP APISSOSupplier NetworkSurveysVenue ManagementVenue SourcingVirtual EventsWebhooksWhite Label

APIs

Cvent REST API

The unified Cvent Platform REST API providing programmatic access to events, contacts, registrations, attendees, sessions, speakers, exhibitors, surveys, webhooks, and Attendee ...

Cvent Webhooks API

Cvent Webhooks notify external applications when actions occur in Cvent and send relevant data to a specified URL, automatically pushing event, attendee, speaker, and meeting re...

Cvent Supplier Network (CSN) API

The Cvent Supplier Network (CSN) API provides integration with a database of 280,000+ hotels, suppliers, and destinations worldwide. Planners search and compare venues and manag...

Cvent Passkey RegLink API

Passkey RegLink APIs are RESTful JSON APIs (with legacy URL-based and SOAP options) connecting Cvent registration with Passkey hotel reservations. Send registrant info, fetch ev...

Cvent SOAP API (Legacy)

The Cvent SOAP API is the original legacy API for pushing and pulling data between Cvent and internal systems. Supports contact and event management, custom fields, address book...

Cvent Custom Widgets API

The Cvent Custom Widgets API allows developers to build custom interactive widgets for Cvent Event Registration pages. SDK for widget elements, configuration files, and navigati...

Cvent Single Sign-On (SSO) Integration

Cvent SSO enables identity provider integration via SAML and OpenID Connect for planner login, access portals, event registrant and Attendee Hub, Events+, and portal applications.

Cvent White Label API

The Cvent White Label API enables venues and suppliers to embed Cvent RFP functionality into their own websites with custom branding, theming, and analytics for embedded RFP forms.

Cvent Salesforce App

The Cvent Salesforce App integrates Cvent event data with Salesforce CRM, enabling users to view events from Salesforce, invite contacts and leads, and sync attendee data bidire...

Collections

Pricing Plans

Cvent Plans Pricing

3 plans

PLANS

Rate Limits

Cvent Rate Limits

5 limits

RATE LIMITS

FinOps

Cvent Finops

FINOPS

Resources

🔗
Website
Website
🌐
DeveloperPortal
DeveloperPortal
🔗
APIReference
APIReference
🔑
Authentication
Authentication
🔑
OAuthTokenEndpoint
OAuthTokenEndpoint
📝
Signup
Signup
🔗
Standards
Standards
📄
ChangeLog
ChangeLog
🟢
StatusPage
StatusPage
💬
Support
Support
💰
Pricing
Pricing
📜
TermsOfService
TermsOfService
📜
PrivacyPolicy
PrivacyPolicy
🔗
Security
Security
🎓
Training
Training
🔗
Community
Community
📰
Blog
Blog
👥
GitHub
GitHub
🔗
Twitter
Twitter
🔗
LinkedIn
LinkedIn

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Cvent REST API
  version: v2
request:
  auth:
    type: oauth2
    flow: client_credentials
    accessTokenUrl: https://api-platform.cvent.com/ea/oauth2/token
    credentials:
      clientId: '{{clientId}}'
      clientSecret: '{{clientSecret}}'
items:
- info:
    name: OAuth
    type: folder
  items:
  - info:
      name: Issue OAuth 2.0 access token
      type: http
    http:
      method: POST
      url: https://api-platform.cvent.com/ea/oauth2/token
      body:
        type: form-urlencoded
        data:
        - name: grant_type
          value: ''
        - name: client_id
          value: ''
      auth:
        type: basic
        username: '{{username}}'
        password: '{{password}}'
    docs: 'Exchange Basic-authenticated client credentials for a Bearer access

      token valid for 60 minutes. Use the returned token in the

      `Authorization: Bearer <token>` header on subsequent API calls.

      '
- info:
    name: Events
    type: folder
  items:
  - info:
      name: List events
      type: http
    http:
      method: GET
      url: https://api-platform.cvent.com/ea/events
      params:
      - name: limit
        value: ''
        type: query
      - name: token
        value: ''
        type: query
        description: Continuation token for paged results.
      - name: filter
        value: ''
        type: query
        description: RSQL-style filter expression.
    docs: List events
  - info:
      name: Create event
      type: http
    http:
      method: POST
      url: https://api-platform.cvent.com/ea/events
      body:
        type: json
        data: '{}'
    docs: Create event
  - info:
      name: Get event
      type: http
    http:
      method: GET
      url: https://api-platform.cvent.com/ea/events/:eventId
      params:
      - name: eventId
        value: ''
        type: path
    docs: Get event
  - info:
      name: Replace event
      type: http
    http:
      method: PUT
      url: https://api-platform.cvent.com/ea/events/:eventId
      params:
      - name: eventId
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Replace event
  - info:
      name: Delete event
      type: http
    http:
      method: DELETE
      url: https://api-platform.cvent.com/ea/events/:eventId
      params:
      - name: eventId
        value: ''
        type: path
    docs: Delete event
  - info:
      name: Copy event
      type: http
    http:
      method: POST
      url: https://api-platform.cvent.com/ea/events/:eventId/copy
      params:
      - name: eventId
        value: ''
        type: path
    docs: Copy event
- info:
    name: Attendees
    type: folder
  items:
  - info:
      name: List attendees for an event
      type: http
    http:
      method: GET
      url: https://api-platform.cvent.com/ea/events/:eventId/attendees
      params:
      - name: eventId
        value: ''
        type: path
      - name: limit
        value: ''
        type: query
      - name: token
        value: ''
        type: query
        description: Continuation token for paged results.
    docs: List attendees for an event
  - info:
      name: Add attendees (register contacts)
      type: http
    http:
      method: POST
      url: https://api-platform.cvent.com/ea/events/:eventId/attendees
      params:
      - name: eventId
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Add attendees (register contacts)
  - info:
      name: Get attendee
      type: http
    http:
      method: GET
      url: https://api-platform.cvent.com/ea/events/:eventId/attendees/:attendeeId
      params:
      - name: eventId
        value: ''
        type: path
      - name: attendeeId
        value: ''
        type: path
    docs: Get attendee
  - info:
      name: Update attendee (cancel, modify)
      type: http
    http:
      method: PUT
      url: https://api-platform.cvent.com/ea/events/:eventId/attendees/:attendeeId
      params:
      - name: eventId
        value: ''
        type: path
      - name: attendeeId
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Update attendee (cancel, modify)
- info:
    name: Sessions
    type: folder
  items:
  - info:
      name: List sessions
      type: http
    http:
      method: GET
      url: https://api-platform.cvent.com/ea/events/:eventId/sessions
      params:
      - name: eventId
        value: ''
        type: path
    docs: List sessions
- info:
    name: Exhibitors
    type: folder
  items:
  - info:
      name: List exhibitors
      type: http
    http:
      method: GET
      url: https://api-platform.cvent.com/ea/events/:eventId/exhibitors
      params:
      - name: eventId
        value: ''
        type: path
    docs: List exhibitors
- info:
    name: Contacts
    type: folder
  items:
  - info:
      name: List contacts
      type: http
    http:
      method: GET
      url: https://api-platform.cvent.com/ea/contacts
      params:
      - name: limit
        value: ''
        type: query
      - name: token
        value: ''
        type: query
        description: Continuation token for paged results.
    docs: List contacts
  - info:
      name: Create contact
      type: http
    http:
      method: POST
      url: https://api-platform.cvent.com/ea/contacts
      body:
        type: json
        data: '{}'
    docs: Create contact
  - info:
      name: Get contact
      type: http
    http:
      method: GET
      url: https://api-platform.cvent.com/ea/contacts/:contactId
      params:
      - name: contactId
        value: ''
        type: path
    docs: Get contact
  - info:
      name: Update contact
      type: http
    http:
      method: PUT
      url: https://api-platform.cvent.com/ea/contacts/:contactId
      params:
      - name: contactId
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Update contact
  - info:
      name: Delete contact
      type: http
    http:
      method: DELETE
      url: https://api-platform.cvent.com/ea/contacts/:contactId
      params:
      - name: contactId
        value: ''
        type: path
    docs: Delete contact
- info:
    name: Webhooks
    type: folder
  items:
  - info:
      name: List webhook subscriptions
      type: http
    http:
      method: GET
      url: https://api-platform.cvent.com/ea/webhooks
    docs: List webhook subscriptions
  - info:
      name: Create webhook subscription
      type: http
    http:
      method: POST
      url: https://api-platform.cvent.com/ea/webhooks
      body:
        type: json
        data: '{}'
    docs: Create webhook subscription
bundled: true