---
title: "Update an admission"
method: PUT
path: "/events/{eventId}/admissions/{id}"
tags: ["Admissions"]
---

# Update an admission

`PUT /events/{eventId}/admissions/{id}`

## Path parameters

- `eventId` string, required — Identifier of the event to which this admission type is linked
- `id` string, required — A unique identifier for this admission

## Request body

- object
  - `name` string — The display name of the admission type shown to customers
  - `subtitle` string — Short supporting text shown below the admission name
  - `description` string — Detailed information shown when customers expand 'More info'
  - `capacity` number
  - `limit` number
  - `order` number — Determines the position in which this admission type appears when listed. Lower values appear first
  - `entryStartsAt` string — Wall clock time from which tickets of this type are valid for entry (no timezone)
  - `entryEndsAt` string — Wall clock time until which tickets of this type are valid for entry (no timezone)
  - `saleStartsAt` string — Wall clock time when ticket sales for this admission type begin (no timezone)
  - `saleEndsAt` string — Wall clock time when ticket sales for this admission type end (no timezone)
  - `saleEndsBehavior` 'SALE_ENDED' | 'SOLD_OUT' | 'DOOR'
  - `price` object
    - `base` integer, required — Base cost of a ticket for this admission type before fees, in cents
    - `booking` integer, required — Additional booking fee applied to the ticket price, in cents
    - `currency` 'AED' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BZD' | 'CAD' | 'CHF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'ISK' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MNT' | 'MOP' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SEK' | 'SGD' | 'SHP' | 'SLE' | 'SRD' | 'SVC' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XOF' | 'XPF' | 'ZAR' | 'ZMW' | 'ZWL', required — Three-letter ISO 4217 currency code for the ticket price
    - `override` object, nullable — Admission-level pricing override used to calculate derived fee amounts.
      - `booking` number, required — Booking fee percentage used to calculate the booking fee.
  - `visibility` 'ALWAYS' | 'HIDDEN' | 'AFTER_ADMISSION'
  - `visibleAfterAdmissionId` string, nullable — Unique admission identifier
  - `sectionId` string, nullable — Unique section identifier

## Response `200`

OK

- object
  - `admission` Admission, required — Admission represents a specific type or category of ticket available for an event
    - `id` string, required — A unique identifier for this admission
    - `name` string, required — The display name of the admission type shown to customers
    - `subtitle` string — Short supporting text shown below the admission name
    - `description` string — Detailed information shown when customers expand 'More info'
    - `capacity` number — Maximum number of tickets that can be sold for this admission type. A value of -1 indicates unlimited
    - `limit` number — Maximum number of tickets of this admission type that can be purchased in a single order. A value of -1 indicates unlimited
    - `available` number, required — Current number of tickets available for purchase, calculated as capacity minus sold minus reserved. A value of -1 indicates unlimited
    - `sold` number, required — Total number of tickets of this admission type that have been purchased
    - `reserved` number, required — Number of tickets held for customers during checkout and not available to others
    - `order` number, required — Determines the position in which this admission type appears when listed. Lower values appear first
    - `createdAt` string, date-time, required — Timestamp in ISO 8601 format when this admission type was created
    - `updatedAt` string, date-time, required — Timestamp in ISO 8601 format when this admission type was last updated
    - `entryStartsAt` string, required — Wall clock time from which tickets of this type are valid for entry (no timezone)
    - `entryEndsAt` string, required — Wall clock time until which tickets of this type are valid for entry (no timezone)
    - `saleStartsAt` string, required — Wall clock time when ticket sales for this admission type begin (no timezone)
    - `saleEndsAt` string, required — Wall clock time when ticket sales for this admission type end (no timezone)
    - `saleEndsBehavior` 'SALE_ENDED' | 'SOLD_OUT' | 'DOOR' — Label to display for this admission after ticket sales have ended
    - `price` object, required — Pricing details for this admission type, including base cost and fees in cents, and currency
      - `base` integer, required — Base cost of a ticket for this admission type before fees, in cents
      - `booking` integer, required — Additional booking fee applied to the ticket price, in cents
      - `currency` 'AED' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BZD' | 'CAD' | 'CHF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'ISK' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MNT' | 'MOP' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SEK' | 'SGD' | 'SHP' | 'SLE' | 'SRD' | 'SVC' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XOF' | 'XPF' | 'ZAR' | 'ZMW' | 'ZWL', required — Three-letter ISO 4217 currency code for the ticket price
      - `override` object — Optional pricing override used to calculate derived fee amounts.
        - `booking` number, required — Booking fee percentage used to calculate the booking fee.
    - `visibility` 'ALWAYS' | 'HIDDEN' | 'AFTER_ADMISSION' — Controls whether this admission type is shown publicly, revealed by a scoped coupon, or unlocked after another admission.
    - `visibleAfterAdmissionId` string, nullable — Unique admission identifier
    - `sectionId` string, nullable — Unique section identifier
    - `teamId` string, required — Team that owns this admission. Denormalized for efficient queries.
    - `promoterId` string, required — Identifier of the promoter responsible for this admission type
    - `eventId` string, required — Identifier of the event to which this admission type is linked
    - `eventSlug` string, required — URL-friendly slug for the event associated with this admission type

## Other responses

- `400` — 400
- `401` — 401
- `403` — 403
- `404` — 404
- `409` — 409
- `412` — 412
- `422` — 422
- `429` — 429
- `500` — 500
- `501` — 501
- `503` — 503

---

[API](https://skmtc.net/session/apis/session-services-api.md) · [All operations](https://skmtc.net/session/apis/session-services-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/session/session-services-api/versions/a1bb6f6c8a2e/schema)
