Get event information
1 | GET /events/{eventId}
|
Response
HTTP/1.1 200 OK
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | { "id": 232, "name": "Event Name", "date": "2014-10-21 08:34", "location": { "name": "Oslo Spektrum", "address": "streetveien 1", "zip": "0665", "city": "OSLO", "country": "NORGE" }, "description": "my description", "price": 12.23, "contactPerson": { "name": "Mr Contact", "email": "jd@event.com", "phone": "13131313" }, "taxRate": 25, "registrationDeadline": "2014-10-21 08:34", "hostName": "Adam", "discountCodes": { "label": "Rabattkode" }, "customFields": [], "_stats": { "totalSpaces": 30, "remainingSpaces": 15 }, "_links": { "self": { "uri": "/events/232" }, "signup": { "uri": "/events/232/signup" } } } |
The _stats
object is only there if the showSignupStats
option on event is set to true
The discountCodes
object is only there if there is at least one discount code for this event.
Read more about the customFields
property here
Get originator logo for event
1 | GET /events/{eventId}/logo
|
Response
HTTP/1.1 200 OK