Create event
This request is used to create a new event inside your organisation.
POST
https://api.eventgoose.com/v1/events
Authentication
Authenticate yourself using your organisation api token
Parameters
name
string
required
|
The name of the event. |
||||||||||||
description
longtext
optional
|
The description for the event. |
||||||||||||
is_online
boolean
required
|
Determine if your event has a physical location or not. If your event does have a physical location, the |
||||||||||||
venue
object
required
|
The venue for the event. Note
This field is required if the
|
||||||||||||
type
string
required
|
Determine the type of the event. Must be one of the following values: |
||||||||||||
dates
array
required
|
When and at what time will the event take place. Note
This field is required unless the
|
||||||||||||
max_capacity
integer
optional
|
Set a daily max capacity for the event.
Note
This field is required if the |
||||||||||||
header_image
file
optional
|
An image that will be displayed inside the shop.
Desired dimensions are |
||||||||||||
header_video
string
optional
|
A video will be displayed inside the shop. For now only YouTube links are supported. |
||||||||||||
extra_info
object
optional
|
An additional way to provide the shop with information about the event.
|
||||||||||||
service_fee
number
optional
|
Set up a service fee for the event. |
||||||||||||
legal
object
optional
|
This object contains al the legal documents and information for your event.
|
||||||||||||
mail_moments
array
optional
|
Setup one or multiple reminder mails for the event.
|
Response
200
application/json
HTTP/1.1 200 OK
Content-Type: application/json
{
"id": "jL3DYVM4ApEBJn4w",
"name": "Golden Plains",
"is_continuous": false,
"dates": [
{
"id": "5dP8kGOmLlEwgmlr",
"starts_at": "2020-12-18T17:00:00.000000Z",
"ends_at": "2020-12-18T22:30:00.000000Z"
},
{
"id": "oLenyp2qbDMRAQVY",
"starts_at": "2020-12-19T17:00:00.000000Z",
"ends_at": "2020-12-19T22:30:00.000000Z"
}
],
"venue": {
"name": "Eventgoose: Online Tickets Verkopen",
"street": "F.B. Deurvorststraat",
"house_number": "43",
"addition": null,
"zipcode": "7071 BG",
"city": "Ulft",
"state": null,
"country": "Netherlands"
},
"shops": [
"a5KgQw2vqOPlAZJ9",
"3Q4aZe21jMrlkY6x"
],
"tickets": [
{
"id": "3Q4aZe21N0MrlkY6",
"name": "Regular",
"price": "50.00",
"service_fee": 1,
"min_order_amount": 0,
"max_order_amount": 10,
"sold_out": true
},
{
"id": "0nqJjGEj3WOedYPQ",
"name": "VIP",
"price": "75.00",
"service_fee": 1,
"min_order_amount": 0,
"max_order_amount": 10,
"sold_out": true
}
]
}