POST - createEvent
Create a new event. The endpoint allows you to create an event by providing all necessary event details.
Http method
URL endpoint
Request header
Request body
{
"externalEventId": "event123",
"name": "Event Name",
"eventSummary": "Some text here",
"eventBannerImage": "https://somelinktotheimage.jpg",
"nftLiveEventImage": "https://somelinktotheimage.jpg",
"nftCollectibleImage": "https://somelinktotheimage.jpg",
"organizerName": "John Doe",
"organizerEmail": "[email protected]",
"eventCategory": "category name",
"eventTags": ["tag1","tag2"],
"eventType": "Event type(Inperson/Online)",
"details": {
"online": {
"meetingUrl": "Meeting url",
"meetingId": "Meeting Id",
"passcode": "Passcode"
},
"offline": {
"location": "Location Name",
"address1": "Address1",
"address2": "Address2",
"city": "city",
"state": "State",
"country": "Country"
}
},
"ticketTypes":[
{
"section": "section name",
"tickeTypeName": "ticket type",
"availableSpaces": 100,
"seated": true,
"saleStartTime": "1613549200",
"saleEndTime": "1613559200",
"price": 100,
"secondaryMarketPriceCap": 200
}
],
"primaryShareHolders": ["[email protected]", "[email protected]"],
"primaryShares": [5000, 5000],
"secondaryShareHolders": ["[email protected]", "[email protected]"],
"secondaryShares": [3000, 7000],
"royalties": 10,
"eventTimezone": "Event Timezone",
"recurrenceFrequency": "Event recurrence frequency",
"numberOfDays": "Number of days",
"numberOfWeeks": "Number of weeks",
"weekDays": "Event week days",
"eventStartTime": "1613559200",
"eventEndTime": "1613559200",
"eventValidators": ["[email protected], [email protected]"]
}Parameter details
Parameter
Description
Response:
Last updated