curl 'https://www.eventzillaapi.net/api/v2/categories'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-X GET
curl 'https://www.eventzillaapi.net/api/v2/events'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-X GET
Event description
\r\n\r\n", "timezone_code": "EST" }, { "id": 2138988927, "title": "HopScotch", "description": "Enter description of your event", "currency": "$", "start_date": "2018-07-30T00:00:00", "start_time": "10:00", "end_date": "2018-07-30T00:00:00", "end_time": "23:00", "time_zone": "Eastern Standard Time", "tickets_sold": 16, "tickets_total": 100, "status": "Completed", "show_remaining": false, "twitter_hashtag": "", "utc_offset": "-05:00", "invite_code": "", "url": "http://events.eventzilla.net/e/HopScotch", "logo_url": "", "bgimage_url": "https://HopScotch.jpg", "venue": "2110, Cambridge, MA, United States", "dateid": 2138983295, "categories": "Classes,Networking", "language": "en", "description_html": "
Event description
\r\n\r\n", "timezone_code": "EST" } ] } ```
curl 'https://www.eventzillaapi.net/api/v2/events/2138988903'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-X GET
Event description
\r\n\r\n", "timezone_code": "EST" } ] } ```
GETReturns an tickets (ticket category) for the specified event
curl 'https://www.eventzillaapi.net/api/v2/events/2138988903/tickets'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-X GET
GETGet Individual transaction details for spcified event.
curl 'https://www.eventzillaapi.net/api/v2/events/2138988852/transactions'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-X GET
GETGet attendees details for specified event.
curl 'https://www.eventzillaapi.net/api/v2/events/2138988852/attendees'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-X GET
POSTEvent sale page Publish / Unpublish
curl 'https://www.eventzillaapi.net/api/v2/events/togglesales'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-H "content-type: application/json" \
-DATA '{"eventid":2138988852,"status":true}'
-X POST
POSTEvent Order Confirmation.
curl 'https://www.eventzillaapi.net/api/v2/events/order/confirm'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-H "content-type: application/json" \
-DATA '{
"checkout_id":21388601015,
"eventid":2138988852,
"comments": "organizer comments",
"sendemail":false
}'
-X POST
POSTEvent Order Cancellation.
curl 'https://www.eventzillaapi.net/api/v2/events/order/cancel'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-H "content-type: application/json" \
-DATA '
{
"checkout_id":21388601015,
"eventid":2138988852,
"comments":"cancelled_by_api"
}'
-X POST
GETOrganizer and sub-organizer response details
curl 'https://www.eventzillaapi.net/api/v2/users/'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-X GET
curl 'https://www.eventzillaapi.net/api/v2/users/2130004479'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-X GET
GETGet Individual transaction details for the specified events or by using the order reference number.
curl 'https://www.eventzillaapi.net/api/v2/transactions/2138869378'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-X GET
GET Get Individual attendees details for specified attendee information.
curl 'https://www.eventzillaapi.net/api/v2/events/attendees/5874321'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-X GET
curl 'https://www.eventzillaapi.net/api/v2/attendees/checkin'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-DATA '{"barcode":"E098986516156112","eventcheckin":"true"}'
-X POST
curl 'https://www.eventzillaapi.net/api/v2/checkout/prepare/654321/863423'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-X GET
curl 'https://www.eventzillaapi.net/api/v2/checkout/create'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-H "content-type: application/json" \
-X POST
-DATA '{
"eventid":654321,
"eventdateid":863423,
"ticket_types":[
{
"ticket_type_id":5689,
"quantity":5
}
],
"discount_code":"EVENTZILLA20"
}'
curl 'https://www.eventzillaapi.net/api/v2/checkout/fillorder'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-H "content-type: application/json" \
-X POST \
-DATA '{
"eventid":654321,
"eventdateid":863423,
"checkout_id":456322,
"buyerdetails": [
{
"buyer_firstname": "Dane",
"buyer_lastname": "Joe",
"buyer_email":"danejoe@xyz.com"
}
],
"tickets":[
{
"ticket_price_id": 1362622,
"first_name":"Max",
"last_name":"well",
"email":"john@xyz.com",
"answers":[
{
"question_id":1245,
"answer_text":"yes"
}
]
}
],
"payment_id":2138979165
}'
curl 'https://www.eventzillaapi.net/api/v2/checkout/confirm'\
-H "x-api-key: 5da984f26e412e71dbcccc89a7fa8cebe" \
-H "content-type: application/json"\
-X POST \
-DATA '{
"eventid":654321,
"eventdateid":863423,
"checkout_id":456322,
"payment_status":"success",
"comments": "organizer comments",
"sendemail":false
}'