Register a new event in the TickeTing system. Once submitted for review and approved by an administrator, the host can begin to sell tickets to the event.
Security
SessionKey(Required scopes: customeradministrator)
Long form text detailing what the event is about, including performing acts, amenities and additional information important to potential attendees
Nature of the event. Determines what information is collected on ticket purchase.
Enum:"Standard""Registration"
- Mock serverhttps://docs.ticketingevents.com/_mock/openapi/hosts/{host}/events
- QA Serverhttps://qa.ticketingevents.com/v3/hosts/{host}/events
- Production Serverhttps://api.ticketingevents.com/v3/hosts/{host}/events
curl -i -X POST \
'https://docs.ticketingevents.com/_mock/openapi/hosts/{host}/events' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"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": [
"homelander",
"queen maeve",
"the deep",
"A-Train"
],
"banner": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAzoAAASRCAYAAAD/zekXAA...",
"thumbnail": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAB4AAAAQ4CAYAAADo08FDAAAAB..."
}'The new event was successfully registered.
Long form text detailing what the event is about, including performing acts, amenities and additional information important to potential attendees
Publication status of the event
Enum:"Draft""Pending""Approved""Rejected""Scheduled""Published"
Response
{ "self": "/events/16993717817996", "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": { "self": "/categories/16878141745207", "name": "Party", "subcategories": [ … ] }, "subcategory": { "self": "/categories/17720402945929", "name": "Boat Cruise", "subcategories": [] }, "start": "2024-06-07T20:00:00Z", "end": "2024-06-07T23:00:00Z", "status": "Pending", "venue": { "self": "/venues/16878146473429", "name": "Vought Tower", "region": { … }, "longitude": -73.99214, "latitude": 40.75518, "address": "7th Ave, Manhattan, New York", "map": "https://maps.googleapis.com/maps/api/staticmap?center=40.75518,-73.99214&zoom=15&size=600x300&maptype=roadmap&markers=color:red%7C40.75518,-73.99214&key=AIzaSyCyLy8bOLUTLbQLVQFwf1eVO2UIVO8_4kQ&signature=IowClV__Bha7DFVe7TIG-osgyDE=" }, "disclaimer": "", "tags": [ "homelander", "queen maeve", "the deep", "A-Train" ], "published": "2024-02-17T07:32:00Z", "popularity": 78, "banner": "http://localhost/media/16993717817996-banner.jpeg", "thumbnail": "http://localhost/media/16993717817996-thumbnail.jpeg" }