New Event Concept

Create a new Event Concept: an organiser container that groups your events together.


Endpoint

Live

POST https://business.festivalcadeau.com/api/endpoint/v1/neweventconcept

Sandbox

POST https://business.festivalcadeautestsite.nl/api/endpoint/v1/neweventconcept

Authentication

Requires your apikey in the request body.

Request Parameters

Parameter Type Required Description
apikey string (60) Yes Your API key for authentication
representative string (150) Yes Name of the person organizing the events
register string (150) Yes Name of the event concept
eventprovider_id integer Yes ID of the event provider (see Get Providers)

Response

Success 200 OK

{
    "eventconcept_id": 3404,
    "register": "Paradiso",
    "representative": "Hendrik van Laan",
    "eventprovider_id": "4"
}

Example Request

POST /api/endpoint/v1/neweventconcept HTTP/1.1
Content-Type: application/json

{
    "apikey": "abcdef1234567890",
    "representative": "Hendrik van Laan",
    "register": "Paradiso",
    "eventprovider_id": 4
}