v11

latestOpenAPI 3.1.12026-08-03174162.0 MB
Admissions

Update an admission

put/events/{eventId}/admissions/{id}

Path parameters

eventIdstring required

Identifier of the event to which this admission type is linked

Example:evt_01jps5cgsenjrazw6wswmyspa3
idstring required

A unique identifier for this admission

Example:adm_01jps5cgsee0xvapbk92e8eb4g

Request body

namestring

The display name of the admission type shown to customers

subtitlestring

Short supporting text shown below the admission name

descriptionstring

Detailed information shown when customers expand 'More info'

capacitynumber
limitnumber
ordernumber

Determines the position in which this admission type appears when listed. Lower values appear first

entryStartsAtstring

Wall clock time from which tickets of this type are valid for entry (no timezone)

entryEndsAtstring

Wall clock time until which tickets of this type are valid for entry (no timezone)

saleStartsAtstring

Wall clock time when ticket sales for this admission type begin (no timezone)

saleEndsAtstring

Wall clock time when ticket sales for this admission type end (no timezone)

saleEndsBehavior'SALE_ENDED' | 'SOLD_OUT' | 'DOOR'
visibility'ALWAYS' | 'HIDDEN' | 'AFTER_ADMISSION'
visibleAfterAdmissionIdstring nullable

Unique admission identifier

sectionIdstring nullable

Unique section identifier

Example request

{
  "name": "Final Release",
  "subtitle": "Entry before 10pm",
  "description": "Early bird pricing with priority entry. Must present valid ID at gate.",
  "entryStartsAt": "2026-08-04T06:13:52",
  "entryEndsAt": "2026-08-05T06:13:52",
  "saleStartsAt": "2026-08-03T06:13:52",
  "saleEndsAt": "2026-08-05T06:13:52",
  "price": {
    "base": 1000,
    "booking": 200,
    "currency": "AUD",
    "override": {
      "booking": 7.5
    }
  }
}

Response

OK

Example response

{
  "admission": {
    "id": "adm_01jps5cgsee0xvapbk92e8eb4g",
    "createdAt": "2026-08-03T06:13:52.214Z",
    "updatedAt": "2026-08-03T06:13:52.214Z",
    "sectionId": "sct_01jps5cgse0g3qj16kpq8t221r",
    "teamId": "tem_01jqpjksnsen9vprw95et60t2m",
    "promoterId": "pmt_01jqpjksnsen9vprw95et60t2m",
    "eventId": "evt_01jps5cgsenjrazw6wswmyspa3",
    "eventSlug": "test-event",
    "name": "Final Release",
    "subtitle": "Entry before 10pm",
    "description": "Early bird pricing with priority entry. Must present valid ID at gate.",
    "capacity": 100000,
    "limit": -1,
    "available": 70000,
    "sold": 20000,
    "reserved": 10000,
    "order": 0,
    "entryStartsAt": "2026-08-04T06:13:52",
    "entryEndsAt": "2026-08-05T06:13:52",
    "saleStartsAt": "2026-08-03T06:13:52",
    "saleEndsAt": "2026-08-05T06:13:52",
    "saleEndsBehavior": "SALE_ENDED",
    "price": {
      "base": 1000,
      "booking": 200,
      "currency": "AUD"
    },
    "visibility": "ALWAYS",
    "tenantId": "tnt_01jqpj2t2kfvmstt6f6tzkbaf2",
    "deleted": false,
    "orderPadded": "0000000000"
  }
}