Skip to content

Publish event changes

Request

Publish the current revision to an event's listing. Once a revision is published, an event becomes publically visible. If this is not the first published revision, the event's listing is overriden with the revised changes.

Security
SessionKey(Required scopes: customeradministrator)
Path
hostintegerrequired

Unique identifier of the requested host

eventintegerrequired

Unique identifier of the requested event

Bodyapplication/json
publish_atstring, (date-time)required

Date and time at which changes should be published. Changes will be published immediately if the datetime is in the past.

curl -i -X POST \
  'https://docs.ticketingevents.com/_mock/openapi/hosts/{host}/events/{event}/publications' \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY_HERE' \
  -d '{
    "publish_at": "2026-05-21T14:30:00Z"
  }'

Responses

The current event revision was successfully published.

Bodyapplication/json
selfstring

URI of the publication resource

changesobject

The changes that were published.

publish_atstring, (date-time)

Date at which the changes were (or will be) published.

Response
{ "self": "/publications/17286027149221", "changes": { "title": "Dawn of the Seven Premier", "description": "World Premier of the long anticipated movie event of the\nyear: Dawn of the Seven\n", "type": "Standard", "public": true, "category": "/categories/16878141745207", "subcategory": "Premier", "start": "2024-06-07T20:00:00Z", "end": "2024-06-07T23:00:00Z", "venue": "/venues/16878146473429", "disclaimer": "Attend at your own risk", "tags": [], "banner": "http://localhost/media/16993717817996-banner.jpeg", "thumbnail": "http://localhost/media/16993717817996-thumbnail.jpeg" }, "publish_at": "2026-05-21T14:30:00Z" }