Most festivals already have their own ticketing or event solution. We have an API which lets you integrate your existing way of doing things.

If you are using wordpress or formstack or one of a number of tools, you simply need to add the appropriate hook to your system.

Here’s a ZAPIER example working with woocommerce and its subscription support (If you are using eventbrite, simply change the zapier trigger to eventbrite), :

Here’s a curl example which should help in implementing in one of number of tools and languages:

#!/bin/bash
url=’https://api.streamincinema.com
key=’FESTIVAL-PRIVATE-KEY’
#All input is json
#All responses are json + response code, 2XX success, otherwise failure
#Create new user

#usernames must be valid email addresses, ie password etc are sent to the email address, invalid addresses will simply get lost
curl \
–header “Content-Type: application/json” \
–header “x-api-key: $key” \
–request POST \
–data ‘{“username”:”brian.quandt@gmail.com“}’ \
$url/user/create

#Update users email address
curl \
–header “Content-Type: application/json” \
–header “x-api-key: $key” \
–request POST \
–data ‘{“username”:”brian.quandt@gmail.com“}’ \
$url/user/reset

Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed