Cvent Hospitality Cloud website screenshot

Cvent Hospitality Cloud

Cvent Hospitality Cloud is the hotel and venue product line of the Cvent Platform. It includes the Cvent Supplier Network (the marketplace connecting event planners with hotels and venues for RFPs and bookings), Passkey (hotel room block and housing management), Venue Sourcing (venue search and discovery), and Sales & Catering (booking management, catering, and contracts). Programmatic access is delivered primarily through the Passkey RegLink REST APIs (with legacy SOAP and URL-based options) and the unified Cvent Platform REST API. Authentication uses OAuth 2.0 client credentials with the token endpoint at api-platform.cvent.com/ea/oauth2/token.

2 APIs 0 Features
CateringGroup BookingsHospitalityHospitality CloudHotelsHousingOAuth 2.0PasskeyReservationsRFPRoom BlocksSalesSourcingSupplier NetworkVenues

APIs

Cvent Passkey RegLink API

Passkey RegLink APIs are RESTful JSON APIs (with legacy URL-based and SOAP options) that connect Cvent registration with Passkey hotel reservations. Primary functions include se...

Cvent Platform REST API (Hospitality)

The unified Cvent Platform REST API also covers hospitality use cases including event-driven integrations, contact and attendee data exchange, and webhook-based notifications th...

Collections

Pricing Plans

Rate Limits

FinOps

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
Website
Website
🔗
SupplierNetwork
SupplierNetwork
🔗
Passkey
Passkey
🌐
DeveloperPortal
DeveloperPortal
💬
Support
Support
🟢
StatusPage
StatusPage
📜
TermsOfService
TermsOfService
📜
PrivacyPolicy
PrivacyPolicy
🔗
LlmsText
LlmsText

Sources

apis.yml Raw ↑
opencollection: 1.0.0
info:
  name: Cvent Passkey RegLink REST API
  version: v1
request:
  auth:
    type: oauth2
    flow: client_credentials
    accessTokenUrl: https://api-platform.cvent.com/reglink/v1/authentication/token
    credentials:
      clientId: '{{clientId}}'
      clientSecret: '{{clientSecret}}'
items:
- info:
    name: Authentication
    type: folder
  items:
  - info:
      name: Issue a Passkey access token
      type: http
    http:
      method: POST
      url: https://api-platform.cvent.com/reglink/v1/authentication/token
      body:
        type: form-urlencoded
        data:
        - name: grant_type
          value: ''
      auth:
        type: basic
        username: '{{username}}'
        password: '{{password}}'
    docs: 'Exchange client credentials (API key/secret issued from the Cvent

      Passkey portal) for an access token that authorises subsequent

      RegLink requests.

      '
- info:
    name: Events
    type: folder
  items:
  - info:
      name: List Passkey events
      type: http
    http:
      method: GET
      url: https://api-platform.cvent.com/reglink/v1/events
      params:
      - name: limit
        value: ''
        type: query
      - name: offset
        value: ''
        type: query
    docs: List Passkey events
  - info:
      name: Get Passkey event detail
      type: http
    http:
      method: GET
      url: https://api-platform.cvent.com/reglink/v1/events/:eventId
      params:
      - name: eventId
        value: ''
        type: path
    docs: Get Passkey event detail
- info:
    name: Hotels
    type: folder
  items:
  - info:
      name: List hotels participating in an event
      type: http
    http:
      method: GET
      url: https://api-platform.cvent.com/reglink/v1/events/:eventId/hotels
      params:
      - name: eventId
        value: ''
        type: path
    docs: List hotels participating in an event
- info:
    name: RoomTypes
    type: folder
  items:
  - info:
      name: List room types for a hotel
      type: http
    http:
      method: GET
      url: https://api-platform.cvent.com/reglink/v1/hotels/:hotelId/roomTypes
      params:
      - name: hotelId
        value: ''
        type: path
    docs: List room types for a hotel
- info:
    name: Connections
    type: folder
  items:
  - info:
      name: Create a RegLink connection between Cvent Registration and Passkey
      type: http
    http:
      method: POST
      url: https://api-platform.cvent.com/reglink/v1/connections
      body:
        type: json
        data: '{}'
    docs: Create a RegLink connection between Cvent Registration and Passkey
- info:
    name: ReservationRequests
    type: folder
  items:
  - info:
      name: Create a reservation request
      type: http
    http:
      method: POST
      url: https://api-platform.cvent.com/reglink/v1/reservationRequests
      body:
        type: json
        data: '{}'
    docs: Create a reservation request
  - info:
      name: Retrieve a reservation request
      type: http
    http:
      method: GET
      url: https://api-platform.cvent.com/reglink/v1/reservationRequests/:reservationRequestId
      params:
      - name: reservationRequestId
        value: ''
        type: path
    docs: Retrieve a reservation request
  - info:
      name: Modify a reservation request
      type: http
    http:
      method: PUT
      url: https://api-platform.cvent.com/reglink/v1/reservationRequests/:reservationRequestId
      params:
      - name: reservationRequestId
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Modify a reservation request
  - info:
      name: Cancel a reservation request
      type: http
    http:
      method: DELETE
      url: https://api-platform.cvent.com/reglink/v1/reservationRequests/:reservationRequestId
      params:
      - name: reservationRequestId
        value: ''
        type: path
    docs: Cancel a reservation request
bundled: true