Add Event
Adds a new event to the system based on the marketplace and event ID. Rate limited to 50 events per day per API key.
Authorizations
Body
eventIDintegerRequired
The event ID from the marketplace
marketplaceinteger · enumRequiredPossible values:
Marketplace ID (1=Viagogo, 2=Stubhub, 3=Gigsberg)
Responses
200
Event added successfully
application/json
400
Missing or invalid parameters
application/json
429
Rate limit exceeded
application/json
500
Internal server error
application/json
post
POST /event HTTP/1.1
Host: api.ticksights.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 34
{
"eventID": 123456,
"marketplace": 1
}
{
"message": "Event (123456) added successfully."
}
Last updated
Was this helpful?