Download OpenAPI specification:Download
By using the API key, API requests can be done by simply having the key in the Authorization header.
Note: To be efficient, many endpoints should be used with the correct query parameters. For inspiration, follow samples of how our application (app.evenito.com) does API calls or request for a more personalized documentation from evenito.
All get many endpoints are paginated to return maximum 300 entities in a single call.
Authorization: Bearer {token / API key}
evenito-space-id: {spaceId}
Api keys are meant to improve the ease of API access and the maintenance and rotation of API access keys. API tokens do not expire, therefore the rotation can be determined by the users themselves.
The bearer token from your user can be retrieved by taking a look into the network tab when logged in as a space_administrator in the space that you want to create an api key for.

This token has a very limited lifetime so if it runs out by the time you have prepared the API call to create your API then grab a new one from the browser. As the next step do a POST call to the API keys endpoint with this token in order to add a permanent API key.
Request (Reference):
curl 'https://api.app.evenito.com/spaces/{space_id}/events?page=1&limit=10&s={"$and":[{"parent_id":{"$isnull":true}},{"status":{"$ne":"archived"}}]}' \
-H 'authorization: Bearer ey...' \
-H 'evenito-space-id: {space_id}' \
Note that without {"parent_id":{"$isnull":true}} also schedules from within events are returned.
Response:
{
"error": false,
"data": [
{events listed here},
],
"count": 4,
"total": 4,
"page": 1,
"pageCount": 1
}
After getting all events, the contacts need fetching per event.
Request (Reference):
curl 'https://api.app.evenito.com/events/{event_id}/contacts?page=1&limit=300' \
-H 'accept-version: 2' \
-H 'authorization: Bearer ey...' \
-H 'evenito-space-id: {space_id}' \
This fetches all changes over the entire space since the timestamp, up to 24h into the past maximum. Please call this endpoint on an interval not more frequent than once every few minutes, at least daily.
This sample request gets all contact creations and changes, ensuring the latest information. As it's a log of changes one contact may appear in it multiple times - therefore be careful about creating duplicates. Request (Reference):
curl 'https://api.app.evenito.com/spaces/{space_id}/change-log?fields=ts,entity,action,previous_value,current_value&s={"$and":[{"ts":{"$gt":"2025-02-13T13:00:00.000Z"}},{"entity":{"$in":["contacts"]}},{"action":{"$in":["UPDATE","INSERT"]}}]}'\
-H 'Authorization: Bearer ey...' \
-H 'evenito-space-id: {space_id}'
Response:
{
"error":false,
"data":[
list of changes here, with the data that was requested with the fields parameter
],
"count":14,
"total":null,
"page":1,
"pageCount":null
}
It is always recommended to use templates or other events for creating new events. To do this, check for the ID of the event you need (Templates and Events references) and use that for creating a new one using the following payload.
Request:
curl -L 'https://api.app.evenito.com/spaces/{space-id}/events/{template or event-id}/copy' \
-H 'authorization: Bearer ey...' \
-H 'content-type: application/json' \
-H 'evenito-space-id: 74a95ce2-4ef1-4794-a606-9973828dd860' \
-d '{
"name": "Apero Tournament mit Golf - Juni",
"overrides": {
"team_ids": [
"a5c78e02-c7a3-4f3d-9359-9ce3ff73ec36"
]
},
"replacers": {
"start_timestamp": {
"value": "2026-06-01T09:30:00.000Z",
"type": "date"
}
},
"template": false
}'
Request (Reference):
curl 'https://api.app.evenito.com/events/{eventId}/contacts/bulk' \
-H 'accept: application/json, text/plain, */*' \
-H 'accept-version: 2' \
-H 'authorization: Bearer ey...' \
-H 'content-type: application/json' \
-H 'evenito-space-id: {space_id}' \
--data-raw '{"bulk":
[
{"language":"de","data":{"firstName":"test1","lastName":"test1","email":"test1@test.com"}},
{"language":"en","data":{"firstName":"test2","lastName":"test2","email":"test2@test.com"}}
]
}'
The response will include all uploaded contacts.
Retrieve a list of existing API keys
| content-type required | string Example: application/json |
| evenito-space-id required | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 |
{- "data": [
- {
- "id": "2f7933fc-3462-4834-ae7f-218989a65912",
- "name": "master_key"
}
]
}Save the key from the response in a secure place, as this is the first and the last time that the key itself is shown.
| content-type required | string Example: application/json |
| evenito-space-id required | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 |
| name | string |
{- "name": "master_key"
}{- "id": "2f7933fc-3462-4834-ae7f-218989a65912",
- "name": "master_key",
- "key": "eak-..."
}Get all contacts (attendees/people) from the event. You can filter the results with the query parameters, see the examples below. The 'total' number in the response will be the total based on the filters, independent of the pagination.
| page | string Example: page=1 page |
| limit | string Example: limit=10 limit |
| sort | string Example: sort=id,ASC sort |
| s | string Examples:
s |
| accept-version | string Example: 2 accept-version |
| evenito-space-id | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 evenito-space-id |
| priority | string Example: u=1, i priority |
{- "count": 10,
- "data": [
- {
- "action_status": null,
- "created_at": "2025-12-23T10:59:13.293Z",
- "data": {
- "address": "Beckstrasse 86\n3492 Bernex",
- "city": "Solothurn",
- "company": "Eugster, Burri and Wettstein",
- "email": "Hlne_Leunberger@evenito.com",
- "firstName": "Hélène",
- "lastName": "Leunberger",
- "zip": "5209"
}, - "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "group_ids": [
- "f1d067a6-c0a2-46d4-b255-b91dbe1bce9b"
], - "group_names_text": "student",
- "host": null,
- "host_hierarchy_list": null,
- "host_id": null,
- "id": "01b595fb-6457-413d-b692-8fb4c3e5a9ae",
- "inviter": null,
- "invoice": null,
- "language": "de",
- "last_action_update": null,
- "message_job_statuses": null,
- "refreshed_at": "2025-12-23T10:59:13.293Z",
- "relationshipMap": { },
- "showed_up": null,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "status": "selected",
- "status_changed_at": "2025-12-23T10:59:13.293Z",
- "ticket_type_ids": null,
- "ticket_type_names_text": null,
- "tickets": null,
- "token": "RxzeJkWahPGt",
- "updated_at": "2025-12-23T10:59:13.293Z",
- "user_id": "8faa39a1-797f-40be-a250-4b14dd637a52",
- "voucher_ids": null
}, - {
- "action_status": null,
- "created_at": "2025-12-23T10:59:13.293Z",
- "data": {
- "address": "Brunstrasse 69\n1396 Plan-les-Ouates",
- "city": "Basel",
- "company": "Scherrer and Sons",
- "email": "Kushtrim_Hess@evenito.com",
- "firstName": "Kushtrim",
- "lastName": "Hess",
- "zip": "2494"
}, - "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "group_ids": [
- "0b7b28a0-0e8b-4b7b-a8c0-25f7d9077e03"
], - "group_names_text": "standard",
- "host": null,
- "host_hierarchy_list": null,
- "host_id": null,
- "id": "0207edfb-348c-4460-a193-61aa43397750",
- "inviter": null,
- "invoice": null,
- "language": "de",
- "last_action_update": null,
- "message_job_statuses": null,
- "refreshed_at": "2025-12-23T10:59:13.293Z",
- "relationshipMap": { },
- "showed_up": null,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "status": "selected",
- "status_changed_at": "2025-12-23T10:59:13.293Z",
- "ticket_type_ids": null,
- "ticket_type_names_text": null,
- "tickets": null,
- "token": "RWJbXHtgKzG7",
- "updated_at": "2025-12-23T10:59:13.293Z",
- "user_id": "4741f6e2-f709-4b6e-a46e-232a651be2d8",
- "voucher_ids": null
}, - {
- "action_status": null,
- "created_at": "2025-12-23T10:59:13.293Z",
- "data": {
- "address": "Wettsteinstrasse 849\n4372 Risch",
- "city": "Birsfelden",
- "company": "Hofmann-Mäder",
- "email": "Bertha_Senn@evenito.com",
- "firstName": "Bertha",
- "lastName": "Senn",
- "zip": "3653"
}, - "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "group_ids": [
- "a0779643-615c-47d6-85c1-05ed82ff3dc9"
], - "group_names_text": "VIP",
- "host": null,
- "host_hierarchy_list": null,
- "host_id": null,
- "id": "030f8298-20ca-4bd0-ba35-053b6e0b120f",
- "inviter": null,
- "invoice": null,
- "language": "de",
- "last_action_update": null,
- "message_job_statuses": null,
- "refreshed_at": "2025-12-23T10:59:13.293Z",
- "relationshipMap": { },
- "showed_up": null,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "status": "selected",
- "status_changed_at": "2025-12-23T10:59:13.293Z",
- "ticket_type_ids": null,
- "ticket_type_names_text": null,
- "tickets": null,
- "token": "3MwzBfy7JHtW",
- "updated_at": "2025-12-23T10:59:13.293Z",
- "user_id": "19599547-f3e3-42d6-ba43-5a82c6897f6e",
- "voucher_ids": null
}, - {
- "action_status": null,
- "created_at": "2025-12-23T10:59:13.293Z",
- "data": {
- "address": "Bianchistrasse 50\n9324 Wil",
- "city": "Küssnacht",
- "company": "Ritter Ltd",
- "email": "Magali_Egli@evenito.com",
- "firstName": "Magali",
- "lastName": "Egli",
- "zip": "2760"
}, - "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "group_ids": [
- "dc2367bb-99cb-404a-be3c-3e3303dda8f9"
], - "group_names_text": "online",
- "host": null,
- "host_hierarchy_list": null,
- "host_id": null,
- "id": "054d901b-ce75-49b0-892c-7a49a02b97fb",
- "inviter": null,
- "invoice": null,
- "language": "de",
- "last_action_update": null,
- "message_job_statuses": null,
- "refreshed_at": "2025-12-23T10:59:13.293Z",
- "relationshipMap": { },
- "showed_up": null,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "status": "selected",
- "status_changed_at": "2025-12-23T10:59:13.293Z",
- "ticket_type_ids": null,
- "ticket_type_names_text": null,
- "tickets": null,
- "token": "WMbtNy2aw38K",
- "updated_at": "2025-12-23T10:59:13.293Z",
- "user_id": "b0ce639b-fe95-4123-ac81-13255e0efef5",
- "voucher_ids": null
}, - {
- "action_status": null,
- "created_at": "2025-12-23T10:59:13.293Z",
- "data": {
- "address": "Bucherstrasse 17\n2641 Locarno",
- "city": "Monthey",
- "company": "Burri Group",
- "email": "Amela_Steiner@evenito.com",
- "firstName": "Amela",
- "lastName": "Steiner",
- "zip": "7080"
}, - "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "group_ids": [
- "dc2367bb-99cb-404a-be3c-3e3303dda8f9"
], - "group_names_text": "online",
- "host": null,
- "host_hierarchy_list": null,
- "host_id": null,
- "id": "0a90c21c-d7d0-4630-a5c7-7e543b6e0436",
- "inviter": null,
- "invoice": null,
- "language": "de",
- "last_action_update": null,
- "message_job_statuses": null,
- "refreshed_at": "2025-12-23T10:59:13.293Z",
- "relationshipMap": { },
- "showed_up": null,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "status": "selected",
- "status_changed_at": "2025-12-23T10:59:13.293Z",
- "ticket_type_ids": null,
- "ticket_type_names_text": null,
- "tickets": null,
- "token": "cFeGGn98J7jw",
- "updated_at": "2025-12-23T10:59:13.293Z",
- "user_id": "ef9a90bc-95c5-4d5d-bfa9-187015213ade",
- "voucher_ids": null
}, - {
- "action_status": null,
- "created_at": "2025-12-23T10:59:13.293Z",
- "data": {
- "address": "Bosshardstrasse 41\n5427 Illnau-Effretikon",
- "city": "Aigle",
- "company": "Wirz-Mettler",
- "email": "Aurora_Studer@evenito.com",
- "firstName": "Aurora",
- "lastName": "Studer",
- "zip": "7629"
}, - "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "group_ids": [
- "dc2367bb-99cb-404a-be3c-3e3303dda8f9"
], - "group_names_text": "online",
- "host": null,
- "host_hierarchy_list": null,
- "host_id": null,
- "id": "0b3feee1-6f38-47d8-8091-215acf2dcc2f",
- "inviter": null,
- "invoice": null,
- "language": "de",
- "last_action_update": null,
- "message_job_statuses": null,
- "refreshed_at": "2025-12-23T10:59:13.293Z",
- "relationshipMap": { },
- "showed_up": null,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "status": "selected",
- "status_changed_at": "2025-12-23T10:59:13.293Z",
- "ticket_type_ids": null,
- "ticket_type_names_text": null,
- "tickets": null,
- "token": "nWtbTa3tetjb",
- "updated_at": "2025-12-23T10:59:13.293Z",
- "user_id": "8532b808-2eee-4d5d-8f42-71f7b892d731",
- "voucher_ids": null
}, - {
- "action_status": null,
- "created_at": "2025-12-23T10:59:13.293Z",
- "data": {
- "address": "Kägistrasse 5\n6270 Küssnacht",
- "city": "Renens",
- "company": "Hirt, Bucher and Felder",
- "email": "Norina_Ziegler@evenito.com",
- "firstName": "Norina",
- "lastName": "Ziegler",
- "zip": "6178"
}, - "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "group_ids": [
- "a0779643-615c-47d6-85c1-05ed82ff3dc9"
], - "group_names_text": "VIP",
- "host": null,
- "host_hierarchy_list": null,
- "host_id": null,
- "id": "0b5a2e28-8b8b-4ceb-86de-10d03977b22b",
- "inviter": null,
- "invoice": null,
- "language": "de",
- "last_action_update": null,
- "message_job_statuses": null,
- "refreshed_at": "2025-12-23T10:59:13.293Z",
- "relationshipMap": { },
- "showed_up": null,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "status": "selected",
- "status_changed_at": "2025-12-23T10:59:13.293Z",
- "ticket_type_ids": null,
- "ticket_type_names_text": null,
- "tickets": null,
- "token": "zdRhCkXkwFGL",
- "updated_at": "2025-12-23T10:59:13.293Z",
- "user_id": "8af8e8ad-1137-478f-a7ea-bc84643dc037",
- "voucher_ids": null
}, - {
- "action_status": null,
- "created_at": "2025-12-23T10:59:13.293Z",
- "data": {
- "address": "Hoffmannstrasse 5\n4027 Zug",
- "city": "Amriswil",
- "company": "Mayer-Bernasconi",
- "email": "Giovanna_Meyer@evenito.com",
- "firstName": "Giovanna",
- "lastName": "Meyer",
- "zip": "4746"
}, - "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "group_ids": [
- "a0779643-615c-47d6-85c1-05ed82ff3dc9"
], - "group_names_text": "VIP",
- "host": null,
- "host_hierarchy_list": null,
- "host_id": null,
- "id": "0dda8d5f-508a-4856-bbb9-314e5759a911",
- "inviter": null,
- "invoice": null,
- "language": "de",
- "last_action_update": null,
- "message_job_statuses": null,
- "refreshed_at": "2025-12-23T10:59:13.293Z",
- "relationshipMap": { },
- "showed_up": null,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "status": "selected",
- "status_changed_at": "2025-12-23T10:59:13.293Z",
- "ticket_type_ids": null,
- "ticket_type_names_text": null,
- "tickets": null,
- "token": "FYxyKbFYjmeW",
- "updated_at": "2025-12-23T10:59:13.293Z",
- "user_id": "09a1209a-982f-408f-8b60-d96272eb91ec",
- "voucher_ids": null
}, - {
- "action_status": null,
- "created_at": "2025-12-23T10:59:13.293Z",
- "data": {
- "address": "Ammannstrasse 57\n9995 Renens",
- "city": "Olten",
- "company": "Merz Ltd",
- "email": "Dominik_Schmid@evenito.com",
- "firstName": "Dominik",
- "lastName": "Schmid",
- "zip": "9509"
}, - "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "group_ids": [
- "0b7b28a0-0e8b-4b7b-a8c0-25f7d9077e03"
], - "group_names_text": "standard",
- "host": null,
- "host_hierarchy_list": null,
- "host_id": null,
- "id": "0f160e4f-3935-4a48-b3b8-ec85ea4a0d61",
- "inviter": null,
- "invoice": null,
- "language": "de",
- "last_action_update": null,
- "message_job_statuses": null,
- "refreshed_at": "2025-12-23T10:59:13.293Z",
- "relationshipMap": { },
- "showed_up": null,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "status": "selected",
- "status_changed_at": "2025-12-23T10:59:13.293Z",
- "ticket_type_ids": null,
- "ticket_type_names_text": null,
- "tickets": null,
- "token": "ycnHXjGCa4rx",
- "updated_at": "2025-12-23T10:59:13.293Z",
- "user_id": "88676f3c-0cd0-4de9-a214-ad140d64e79f",
- "voucher_ids": null
}, - {
- "action_status": null,
- "created_at": "2025-12-23T10:59:13.293Z",
- "data": {
- "address": "Leunbergerstrasse 70\n5089 Meilen",
- "city": "Baden",
- "company": "Zehnder Group",
- "email": "Ivan_Bucher@evenito.com",
- "firstName": "Ivan",
- "lastName": "Bucher",
- "zip": "4834"
}, - "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "group_ids": [
- "dc2367bb-99cb-404a-be3c-3e3303dda8f9"
], - "group_names_text": "online",
- "host": null,
- "host_hierarchy_list": null,
- "host_id": null,
- "id": "0f45f315-7eca-4b1b-be71-3938f456379a",
- "inviter": null,
- "invoice": null,
- "language": "de",
- "last_action_update": null,
- "message_job_statuses": null,
- "refreshed_at": "2025-12-23T10:59:13.293Z",
- "relationshipMap": { },
- "showed_up": null,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "status": "selected",
- "status_changed_at": "2025-12-23T10:59:13.293Z",
- "ticket_type_ids": null,
- "ticket_type_names_text": null,
- "tickets": null,
- "token": "K4YtxD4nWDKC",
- "updated_at": "2025-12-23T10:59:13.293Z",
- "user_id": "a864daef-b837-413d-bcf9-d43001953e8f",
- "voucher_ids": null
}
], - "error": false,
- "page": 1,
- "pageCount": 20,
- "total": 200
}Import multiple contacts at once. You can assign groups, set the initial status, and fill specific data fields immediately. You can safely ignore the values outside the contact data object, as they will default to something according to the event ('pending' status, event default language, fallback groups).
| eventId required | string Example: 315e0a0f-9ead-4c02-b916-2f2ded8b088b |
| content-type required | string Example: application/json |
| authorization required | string Example: Bearer ey... |
| evenito-space-id required | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 |
Array of objects |
{- "bulk": [
- {
- "language": "de",
- "status": "selected",
- "group_ids": [
- "d953bef5-446c-4211-b289-9c7184c2052a"
], - "data": {
- "firstName": "Rodrigo",
- "lastName": "Hess",
- "email": "Rodrigo_Hess@evenito.com",
- "company": "Hafner Inc",
- "city": "Chur",
- "address": "Hoferstrasse 262\n8871 Davos"
}
}, - {
- "language": "de",
- "status": "registered",
- "group_ids": [
- "1e2bebb9-511a-47c6-a16b-1cd449e18056"
], - "data": {
- "firstName": "Alison",
- "lastName": "Aebi",
- "email": "Alison_Aebi@evenito.com",
- "company": "Peter and Sons",
- "city": "Bernex",
- "address": "Weibelstrasse 90\n4788 Horgen"
}
}, - {
- "language": "de",
- "status": "declined",
- "group_ids": [
- "1e2bebb9-511a-47c6-a16b-1cd449e18056"
], - "data": {
- "firstName": "Beatriz",
- "lastName": "Hess",
- "email": "Beatriz_Hess@evenito.com",
- "company": "Schaller Ltd",
- "city": "Amriswil",
- "address": "Bachmannstrasse 11\n1030 Lausanne"
}
}
]
}{- "error": false,
- "result": [
- {
- "language": "de",
- "group_ids": [
- "d953bef5-446c-4211-b289-9c7184c2052a"
], - "data": {
- "firstName": "Rodrigo",
- "lastName": "Hess",
- "email": "Rodrigo_Hess@evenito.com",
- "company": "Hafner Inc",
- "city": "Chur",
- "address": "Hoferstrasse 262\n8871 Davos"
}, - "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "token": "4ct77iKYGPFz",
- "groups": [
- {
- "id": "d953bef5-446c-4211-b289-9c7184c2052a",
- "created_at": "2026-01-06T13:00:06.894Z",
- "updated_at": "2026-01-06T13:00:06.894Z",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "name": "standard",
- "group_contingent": null,
- "contact_contingent": null,
- "color": "#3cbfb2",
- "meta": null,
- "fallback": false,
- "rsvp_companion_limit": null,
- "registration_limit": null
}
], - "status_changed_at": "2026-01-06T13:03:45.776Z",
- "last_action_update": null,
- "user_id": null,
- "host_id": null,
- "id": "d4491f6f-3794-427e-8132-5238a857b851",
- "created_at": "2026-01-06T13:03:45.776Z",
- "updated_at": "2026-01-06T13:03:45.776Z",
- "status": "selected"
}, - {
- "language": "de",
- "group_ids": [
- "1e2bebb9-511a-47c6-a16b-1cd449e18056"
], - "data": {
- "firstName": "Alison",
- "lastName": "Aebi",
- "email": "Alison_Aebi@evenito.com",
- "company": "Peter and Sons",
- "city": "Bernex",
- "address": "Weibelstrasse 90\n4788 Horgen"
}, - "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "token": "8fW3PMwAcWJE",
- "groups": [
- {
- "id": "1e2bebb9-511a-47c6-a16b-1cd449e18056",
- "created_at": "2026-01-06T13:00:06.894Z",
- "updated_at": "2026-01-06T13:00:06.894Z",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "name": "student",
- "group_contingent": null,
- "contact_contingent": null,
- "color": "#5da2bb",
- "meta": null,
- "fallback": false,
- "rsvp_companion_limit": null,
- "registration_limit": null
}
], - "status_changed_at": "2026-01-06T13:03:45.776Z",
- "last_action_update": null,
- "user_id": null,
- "host_id": null,
- "id": "9e000e55-da6e-42fc-baa2-c854422a3586",
- "created_at": "2026-01-06T13:03:45.776Z",
- "updated_at": "2026-01-06T13:03:45.776Z",
- "status": "selected"
}, - {
- "language": "de",
- "group_ids": [
- "1e2bebb9-511a-47c6-a16b-1cd449e18056"
], - "data": {
- "firstName": "Beatriz",
- "lastName": "Hess",
- "email": "Beatriz_Hess@evenito.com",
- "company": "Schaller Ltd",
- "city": "Amriswil",
- "address": "Bachmannstrasse 11\n1030 Lausanne"
}, - "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "token": "y7GqrpC9bKE9",
- "groups": [
- {
- "id": "1e2bebb9-511a-47c6-a16b-1cd449e18056",
- "created_at": "2026-01-06T13:00:06.894Z",
- "updated_at": "2026-01-06T13:00:06.894Z",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "name": "student",
- "group_contingent": null,
- "contact_contingent": null,
- "color": "#5da2bb",
- "meta": null,
- "fallback": false,
- "rsvp_companion_limit": null,
- "registration_limit": null
}
], - "status_changed_at": "2026-01-06T13:03:45.776Z",
- "last_action_update": null,
- "user_id": null,
- "host_id": null,
- "id": "aa7fc916-63b4-4eba-bfa1-312bf6507eff",
- "created_at": "2026-01-06T13:03:45.776Z",
- "updated_at": "2026-01-06T13:03:45.776Z",
- "status": "selected"
}
]
}| page | string Example: page=1 page |
| limit | string Example: limit=300 limit |
| evenito-space-id | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 evenito-space-id |
| priority | string Example: u=1, i priority |
{- "count": 5,
- "data": [
- {
- "color": "#014751",
- "contact_contingent": null,
- "created_at": "2025-12-23T10:55:54.124Z",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "fallback": true,
- "group_contingent": null,
- "id": "26cc0bb5-d0ef-4d00-9725-6b0a3a5b59cd",
- "meta": null,
- "name": "Experten",
- "registration_limit": 100,
- "rsvp_companion_limit": 0,
- "updated_at": "2025-12-23T10:55:54.124Z"
}, - {
- "color": "#00d47f",
- "contact_contingent": null,
- "created_at": "2025-12-23T10:55:54.124Z",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "fallback": false,
- "group_contingent": null,
- "id": "a0779643-615c-47d6-85c1-05ed82ff3dc9",
- "meta": null,
- "name": "VIP",
- "registration_limit": 50,
- "rsvp_companion_limit": 0,
- "updated_at": "2025-12-23T10:55:54.124Z"
}, - {
- "color": "#e89e41",
- "contact_contingent": null,
- "created_at": "2025-12-23T10:59:11.794Z",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "fallback": false,
- "group_contingent": null,
- "id": "f1d067a6-c0a2-46d4-b255-b91dbe1bce9b",
- "meta": null,
- "name": "student",
- "registration_limit": null,
- "rsvp_companion_limit": null,
- "updated_at": "2025-12-23T10:59:11.794Z"
}, - {
- "color": "#ae61bd",
- "contact_contingent": null,
- "created_at": "2025-12-23T10:59:11.794Z",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "fallback": false,
- "group_contingent": null,
- "id": "0b7b28a0-0e8b-4b7b-a8c0-25f7d9077e03",
- "meta": null,
- "name": "standard",
- "registration_limit": null,
- "rsvp_companion_limit": null,
- "updated_at": "2025-12-23T10:59:11.794Z"
}, - {
- "color": "#4f50be",
- "contact_contingent": null,
- "created_at": "2025-12-23T10:59:11.794Z",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "fallback": false,
- "group_contingent": null,
- "id": "dc2367bb-99cb-404a-be3c-3e3303dda8f9",
- "meta": null,
- "name": "online",
- "registration_limit": null,
- "rsvp_companion_limit": null,
- "updated_at": "2025-12-23T10:59:11.794Z"
}
], - "error": false,
- "page": 1,
- "pageCount": 1,
- "total": 5
}Fetches all contact or event related changes since the timestamp (up to 24h ago). The primary mechanism for data synchronization integrations. Meant to be called in intervals of once every few minutes, at least daily. The query parameters for this can also sent in the body of a POST request.
| s | string Example: s={"$and": [{"ts": {"$gt": "2025-12-23T06:21:24.069z"}}, {"action": {"$in": ["INSERT", "UPDATE"]}}, {"entity": {"$in": ["contacts"]}}]} |
| s | string Example: s={"$and": [{"ts": {"$gt": "2025-12-23T06:21:24.069z"}}, {"action": {"$in": ["DELETE"]}}, {"entity": {"$in": ["events"]}}]} |
| s | string Example: s={"$and": [{"ts": {"$gt": "2026-01-13T08:41:24.069Z"}},{"$or": [{"$and": [{ "action": "INSERT" },{ "entity": "message_job_broadcast_message" }]},{"$and": [{ "action": "UPDATE" },{ "entity": "contacts" }]}]}]}&fields=entity,entity_id,event_id,action,change_id,contact_id,ts,current_value,previous_value |
| authorization required | string Example: Bearer ey... |
| evenito-space-id required | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 |
{- "error": false,
- "data": [
- {
- "change_id": "1e094b59-7926-4e2c-bd6a-ff53f1887ba0",
- "ts": "2025-12-23T15:22:16.354173000Z",
- "author": "{\"actor_id\":\"73e81fa0-6fc7-4055-bfaa-cf669a635340\",\"change_id\":\"1e094b59-7926-4e2c-bd6a-ff53f1887ba0\",\"impersonation_id\":null,\"ip_address\":\"77.109.152.199\",\"source\":\"API\"}",
- "service": "platform-api",
- "entity": "contacts",
- "entity_id": "0dda8d5f-508a-4856-bbb9-314e5759a911",
- "action": "UPDATE",
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "contact_id": "0dda8d5f-508a-4856-bbb9-314e5759a911",
- "previous_value": {
- "audit_author": {
- "actor_id": "73e81fa0-6fc7-4055-bfaa-cf669a635340",
- "change_id": "df6b050a-9143-4419-ad22-17cb540520dd",
- "impersonation_id": null,
- "ip_address": "212.51.155.242",
- "source": "API"
}, - "created_at": "2025-12-23T10:59:13.293768+00:00",
- "data": {
- "address": "Hoffmannstrasse 5\n4027 Zug",
- "city": "Amriswil",
- "company": "Mayer-Bernasconi",
- "email": "Giovanna_Meyer@evenito.com",
- "firstName": "Giovanna",
- "lastName": "Meyer",
- "zip": "4746"
}, - "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "host_id": null,
- "id": "0dda8d5f-508a-4856-bbb9-314e5759a911",
- "language": "de",
- "last_action_update": null,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "status": "selected",
- "status_changed_at": "2025-12-23T10:59:13.293768+00:00",
- "token": "FYxyKbFYjmeW",
- "updated_at": "2025-12-23T10:59:13.293768+00:00",
- "user_id": "09a1209a-982f-408f-8b60-d96272eb91ec"
}, - "current_value": {
- "audit_author": {
- "actor_id": "73e81fa0-6fc7-4055-bfaa-cf669a635340",
- "change_id": "1e094b59-7926-4e2c-bd6a-ff53f1887ba0",
- "impersonation_id": null,
- "ip_address": "77.109.152.199",
- "source": "API"
}, - "created_at": "2025-12-23T10:59:13.293768+00:00",
- "data": {
- "address": "Hoffmannstrasse 5\n4027 Zug",
- "city": "Amriswil",
- "company": "Mayer-Bernasconi",
- "email": "Giovanna_Meyer@evenito.com",
- "firstName": "Giovanna",
- "lastName": "Vespucci",
- "zip": "4746"
}, - "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "host_id": null,
- "id": "0dda8d5f-508a-4856-bbb9-314e5759a911",
- "language": "de",
- "last_action_update": null,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "status": "selected",
- "status_changed_at": "2025-12-23T10:59:13.293768+00:00",
- "token": "FYxyKbFYjmeW",
- "updated_at": "2025-12-23T15:22:16.033641+00:00",
- "user_id": "09a1209a-982f-408f-8b60-d96272eb91ec"
}
}, - {
- "change_id": "4623ff0d-a05a-43fa-aaf6-03aad1e1c88d",
- "ts": "2025-12-23T15:21:56.017110000Z",
- "author": "{\"actor_id\":\"73e81fa0-6fc7-4055-bfaa-cf669a635340\",\"change_id\":\"4623ff0d-a05a-43fa-aaf6-03aad1e1c88d\",\"impersonation_id\":null,\"ip_address\":\"77.109.152.199\",\"source\":\"API\"}",
- "service": "platform-api",
- "entity": "contacts",
- "entity_id": "0a90c21c-d7d0-4630-a5c7-7e543b6e0436",
- "action": "UPDATE",
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "contact_id": "0a90c21c-d7d0-4630-a5c7-7e543b6e0436",
- "previous_value": {
- "audit_author": {
- "actor_id": "73e81fa0-6fc7-4055-bfaa-cf669a635340",
- "change_id": "df6b050a-9143-4419-ad22-17cb540520dd",
- "impersonation_id": null,
- "ip_address": "212.51.155.242",
- "source": "API"
}, - "created_at": "2025-12-23T10:59:13.293768+00:00",
- "data": {
- "address": "Bucherstrasse 17\n2641 Locarno",
- "city": "Monthey",
- "company": "Burri Group",
- "email": "Amela_Steiner@evenito.com",
- "firstName": "Amela",
- "lastName": "Steiner",
- "zip": "7080"
}, - "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "host_id": null,
- "id": "0a90c21c-d7d0-4630-a5c7-7e543b6e0436",
- "language": "de",
- "last_action_update": null,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "status": "selected",
- "status_changed_at": "2025-12-23T10:59:13.293768+00:00",
- "token": "cFeGGn98J7jw",
- "updated_at": "2025-12-23T10:59:13.293768+00:00",
- "user_id": "ef9a90bc-95c5-4d5d-bfa9-187015213ade"
}, - "current_value": {
- "audit_author": {
- "actor_id": "73e81fa0-6fc7-4055-bfaa-cf669a635340",
- "change_id": "4623ff0d-a05a-43fa-aaf6-03aad1e1c88d",
- "impersonation_id": null,
- "ip_address": "77.109.152.199",
- "source": "API"
}, - "created_at": "2025-12-23T10:59:13.293768+00:00",
- "data": {
- "address": "Bucherstrasse 17\n2641 Locarno",
- "city": "Monthey",
- "company": "Burri Group",
- "email": "Amela_Steiner@evenito.com",
- "firstName": "Amela",
- "lastName": "Steiner",
- "zip": "7080"
}, - "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "host_id": null,
- "id": "0a90c21c-d7d0-4630-a5c7-7e543b6e0436",
- "language": "de",
- "last_action_update": null,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "status": "registered",
- "status_changed_at": "2025-12-23T15:21:55.729342+00:00",
- "token": "cFeGGn98J7jw",
- "updated_at": "2025-12-23T15:21:55.729342+00:00",
- "user_id": "ef9a90bc-95c5-4d5d-bfa9-187015213ade"
}
}
], - "count": 2,
- "total": null,
- "page": 1,
- "pageCount": null
}Fetch change logs using a POST request. This allows for complex, large JSON search queries that might otherwise exceed URL character limits.
| spaceId required | string <uuid> Example: 4fa25ae1-ad6f-47f1-87ff-2a37936c5b59 ID of the space |
| fields | string Example: fields=id,entity,entity_id,event_id,action,ts Comma-separated list of fields to return |
| authorization required | string Example: Bearer {apiKey} Bearer token |
| evenito-space-id required | string <uuid> Example: 4fa25ae1-ad6f-47f1-87ff-2a37936c5b59 ID of the space |
| Content-Type required | string Example: application/json |
object query object |
{- "search": {
- "$and": [
- {
- "ts": {
- "$gt": "2024-02-29T23:00:00.000Z"
}
}, - {
- "entity": {
- "$in": [
- "contacts"
]
}
}, - {
- "action": {
- "$in": [
- "UPDATE",
- "INSERT",
- "DELETE"
]
}
}, - {
- "event_id": {
- "$in": [
- "4fa25ae1-ad6f-47f1-87ff-2a37936c5b59",
- "4fa25ae1-ad6f-47f1-87ff-2a37936c5b60",
- "4fa25ae1-ad6f-47f1-87ff-2a37936c5b61"
]
}
}
]
}
}Fetch all events from your space. It's important to use the correct query parameters to avoid unwanted results, considering also that events with a parent_id are schedule items inside the event.
| page | string Example: page=1 page |
| limit | string Example: limit=10 limit |
| s | string Example: s={"$and":[{"status":{"$ne":"archived"}},{"calculated_end_timestamp":{"$gt":"now()"}},{"parent_id":{"$isnull":true}}]} s |
| sort | string Example: sort=start_timestamp,ASC sort |
| evenito-space-id | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 evenito-space-id |
| priority | string Example: u=1, i priority |
{- "error": false,
- "data": [
- {
- "placeHolderModelName": "event",
- "placeholderFields": [
- "name",
- "description",
- "startDateWithDay",
- "startTime",
- "addToCalendarICS",
- "addToCalendarICSShort",
- "addToCalendarGoogle",
- "register",
- "registerQr",
- "personalSite",
- "location"
], - "id": "bda7394b-159f-4f97-be99-b72956764822",
- "created_at": "2026-01-06T15:31:45.919Z",
- "updated_at": "2026-01-06T15:31:45.919Z",
- "root_id": null,
- "name": {
- "de": {
- "value": "Apero tournament mit golf"
}, - "en": {
- "value": "Apero tournament mit golf"
}, - "es": {
- "value": "Apero tournament mit golf"
}, - "fr": {
- "value": "Apero tournament mit golf"
}, - "it": {
- "value": "Apero tournament mit golf"
}, - "nl": {
- "value": "Apero tournament mit golf"
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Tauchen Sie ein in die spannende Welt der sich wandelnden Finanzbranche! Treffen Sie 200 Top-Experts und Visionäre, knüpfen Sie wertvolle Kontakte und gestalten Sie gemeinsam mit uns die Zukunft der Finanzdienstleistungen.</p>"
}, - "en": {
- "value": "<p>Dive in and explore the future of the financial industry with us. Join 200 leading experts and visionaries to forge new connections and drive innovation in the financial sector.</p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "start_timestamp": "2026-06-01T09:30:00.000Z",
- "end_timestamp": "P0Y0M1DT9H0M0S",
- "calculated_end_timestamp": "2026-06-02T18:30:00.000Z",
- "languages": [
- "en",
- "de"
], - "visibility": null,
- "default_language": "de",
- "timezone": "Europe/Zurich",
- "parent_id": null,
- "event_type": null,
- "registered_contact_hard_limit": 200,
- "attendee_portal_config": {
- "name": {
- "de": {
- "value": "Finanzinnovationen im Fokus"
}, - "en": {
- "value": "Focus on Innovating Finance"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "theme": {
- "colors": {
- "accent": "#E95252",
- "primary": "#16213D",
- "secondary": "#16213D"
}
}, - "features": {
- "qa_lobby": true,
- "speakers": true,
- "anonymized": false,
- "chat_lobby": true,
- "poll_lobby": true,
- "qa_sessions": true,
- "event_online": true,
- "chat_sessions": true,
- "poll_sessions": true,
- "qa_lobby_upvotes": true,
- "qa_lobby_publishing": true,
- "qa_sessions_upvotes": true,
- "qa_sessions_publishing": true,
- "allow_only_one_session_per_token": false
}, - "subTitle": {
- "de": {
- "value": ""
}, - "en": {
- "value": ""
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Tauchen Sie ein in die spannende Welt der sich wandelnden Finanzbranche! Treffen Sie 200 Top-Experts und Visionäre, knüpfen Sie wertvolle Kontakte und gestalten Sie gemeinsam mit uns die Zukunft der Finanzdienstleistungen.</p>"
}, - "en": {
- "value": "<p>Dive into the exciting world of the changing financial industry! Meet 200 top experts and visionaries, forge valuable connections, and work with us to shape the future of financial services.</p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "logoImageId": "c0932e83-ac79-4c18-8912-3807bef19276",
- "coverImageId": "962df205-347d-46b4-aee9-ad0f8ede9cda"
}, - "money_config": {
- "currency": "CHF"
}, - "evenito_ticketing_config": { },
- "status": "in-preparation",
- "ticket_sales_active": false,
- "contact_list_edit_starts_at": null,
- "contact_list_edit_ends_at": null,
- "tickets_per_order_limit": null,
- "companions_per_contact_limit": 2,
- "template": false,
- "host_booking_starts_at": null,
- "host_booking_ends_at": null,
- "host_contact_registration_starts_at": null,
- "host_contact_registration_ends_at": null,
- "max_host_hierarchy_depth": 2,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "team_ids": [
- "a5c78e02-c7a3-4f3d-9359-9ce3ff73ec36"
], - "cover_image_id": "962df205-347d-46b4-aee9-ad0f8ede9cda",
- "is_public": false,
- "host_register_contact_on_ticket_assignment": "optional",
- "cover_image": null,
- "eventFeatures": [
- {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "bda7394b-159f-4f97-be99-b72956764822",
- "feature": "scheduledReports",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "bda7394b-159f-4f97-be99-b72956764822",
- "feature": "bookingPage",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "bda7394b-159f-4f97-be99-b72956764822",
- "feature": "photos",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "bda7394b-159f-4f97-be99-b72956764822",
- "feature": "letterTemplates",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "bda7394b-159f-4f97-be99-b72956764822",
- "feature": "tickets",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "bda7394b-159f-4f97-be99-b72956764822",
- "feature": "locations",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "bda7394b-159f-4f97-be99-b72956764822",
- "feature": "check-in",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "bda7394b-159f-4f97-be99-b72956764822",
- "feature": "website",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "bda7394b-159f-4f97-be99-b72956764822",
- "feature": "stakeholders",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "bda7394b-159f-4f97-be99-b72956764822",
- "feature": "attendeePortal",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "bda7394b-159f-4f97-be99-b72956764822",
- "feature": "schedule",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "bda7394b-159f-4f97-be99-b72956764822",
- "feature": "registration",
- "enabled": true
}
], - "owners": [
- {
- "id": "73e81fa0-6fc7-4055-bfaa-cf669a635340",
- "created_at": "2020-04-22T13:15:57.696Z",
- "updated_at": "2025-08-07T07:09:53.977Z",
- "first_name": "Mario ",
- "last_name": "Saariste",
- "email": "mario.saariste@evenito.com",
- "salutation": "Mr",
- "language": "en",
- "is_super_admin": false,
- "last_login": "2022-08-29T12:24:50.891Z",
- "contact_id": null,
- "google_id": null,
- "facebook_id": null,
- "github_id": null
}
], - "group_ids": [ ],
- "schedule_speaker_profile_ids": [ ],
- "label_ids": [ ],
- "ownerIds": [
- "73e81fa0-6fc7-4055-bfaa-cf669a635340"
], - "features": {
- "scheduledReports": true,
- "bookingPage": true,
- "photos": true,
- "letterTemplates": true,
- "tickets": true,
- "locations": true,
- "check-in": true,
- "website": true,
- "stakeholders": true,
- "attendeePortal": true,
- "schedule": true,
- "registration": true
}
}, - {
- "placeHolderModelName": "event",
- "placeholderFields": [
- "name",
- "description",
- "startDateWithDay",
- "startTime",
- "addToCalendarICS",
- "addToCalendarICSShort",
- "addToCalendarGoogle",
- "register",
- "registerQr",
- "personalSite",
- "location"
], - "id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "created_at": "2025-12-23T10:55:51.836Z",
- "updated_at": "2025-12-23T10:55:51.836Z",
- "root_id": null,
- "name": {
- "de": {
- "value": "Finanzinnovationen im Fokus (Hospitality)"
}, - "en": {
- "value": "Finanzinnovationen im Fokus (Hospitality)"
}, - "es": {
- "value": "Finanzinnovationen im Fokus (Hospitality)"
}, - "fr": {
- "value": "Finanzinnovationen im Fokus (Hospitality)"
}, - "it": {
- "value": "Finanzinnovationen im Fokus (Hospitality)"
}, - "nl": {
- "value": "Finanzinnovationen im Fokus (Hospitality)"
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Tauchen Sie ein in die spannende Welt der sich wandelnden Finanzbranche! Treffen Sie 200 Top-Experts und Visionäre, knüpfen Sie wertvolle Kontakte und gestalten Sie gemeinsam mit uns die Zukunft der Finanzdienstleistungen.</p>"
}, - "en": {
- "value": "<p>Dive in and explore the future of the financial industry with us. Join 200 leading experts and visionaries to forge new connections and drive innovation in the financial sector.</p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "start_timestamp": "2026-09-03T07:00:00.000Z",
- "end_timestamp": "P0Y0M1DT9H0M0S",
- "calculated_end_timestamp": "2026-09-04T16:00:00.000Z",
- "languages": [
- "en",
- "de"
], - "visibility": null,
- "default_language": "de",
- "timezone": "Europe/Zurich",
- "parent_id": null,
- "event_type": null,
- "registered_contact_hard_limit": 200,
- "attendee_portal_config": {
- "name": {
- "de": {
- "value": "Finanzinnovationen im Fokus"
}, - "en": {
- "value": "Focus on Innovating Finance"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "theme": {
- "colors": {
- "accent": "#E95252",
- "primary": "#16213D",
- "secondary": "#16213D"
}
}, - "features": {
- "qa_lobby": true,
- "speakers": true,
- "anonymized": false,
- "chat_lobby": true,
- "poll_lobby": true,
- "qa_sessions": true,
- "event_online": true,
- "chat_sessions": true,
- "poll_sessions": true,
- "qa_lobby_upvotes": true,
- "qa_lobby_publishing": true,
- "qa_sessions_upvotes": true,
- "qa_sessions_publishing": true,
- "allow_only_one_session_per_token": false
}, - "subTitle": {
- "de": {
- "value": ""
}, - "en": {
- "value": ""
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Tauchen Sie ein in die spannende Welt der sich wandelnden Finanzbranche! Treffen Sie 200 Top-Experts und Visionäre, knüpfen Sie wertvolle Kontakte und gestalten Sie gemeinsam mit uns die Zukunft der Finanzdienstleistungen.</p>"
}, - "en": {
- "value": "<p>Dive into the exciting world of the changing financial industry! Meet 200 top experts and visionaries, forge valuable connections, and work with us to shape the future of financial services.</p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "logoImageId": "c0932e83-ac79-4c18-8912-3807bef19276",
- "coverImageId": "962df205-347d-46b4-aee9-ad0f8ede9cda"
}, - "money_config": {
- "currency": "CHF"
}, - "evenito_ticketing_config": { },
- "status": "in-preparation",
- "ticket_sales_active": false,
- "contact_list_edit_starts_at": null,
- "contact_list_edit_ends_at": null,
- "tickets_per_order_limit": null,
- "companions_per_contact_limit": 2,
- "template": false,
- "host_booking_starts_at": null,
- "host_booking_ends_at": null,
- "host_contact_registration_starts_at": null,
- "host_contact_registration_ends_at": null,
- "max_host_hierarchy_depth": 2,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "team_ids": [
- "a5c78e02-c7a3-4f3d-9359-9ce3ff73ec36"
], - "cover_image_id": "962df205-347d-46b4-aee9-ad0f8ede9cda",
- "is_public": false,
- "host_register_contact_on_ticket_assignment": "optional",
- "cover_image": null,
- "eventFeatures": [
- {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "schedule",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "check-in",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "scheduledReports",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "bookingPage",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "photos",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "letterTemplates",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "tickets",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "locations",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "website",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "stakeholders",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "attendeePortal",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "registration",
- "enabled": true
}
], - "owners": [
- {
- "id": "73e81fa0-6fc7-4055-bfaa-cf669a635340",
- "created_at": "2020-04-22T13:15:57.696Z",
- "updated_at": "2025-08-07T07:09:53.977Z",
- "first_name": "Mario ",
- "last_name": "Saariste",
- "email": "mario.saariste@evenito.com",
- "salutation": "Mr",
- "language": "en",
- "is_super_admin": false,
- "last_login": "2022-08-29T12:24:50.891Z",
- "contact_id": null,
- "google_id": null,
- "facebook_id": null,
- "github_id": null
}
], - "group_ids": [ ],
- "schedule_speaker_profile_ids": [ ],
- "label_ids": [ ],
- "ownerIds": [
- "73e81fa0-6fc7-4055-bfaa-cf669a635340"
], - "features": {
- "schedule": true,
- "check-in": true,
- "scheduledReports": true,
- "bookingPage": true,
- "photos": true,
- "letterTemplates": true,
- "tickets": true,
- "locations": true,
- "website": true,
- "stakeholders": true,
- "attendeePortal": true,
- "registration": true
}
}, - {
- "placeHolderModelName": "event",
- "placeholderFields": [
- "name",
- "description",
- "startDateWithDay",
- "startTime",
- "addToCalendarICS",
- "addToCalendarICSShort",
- "addToCalendarGoogle",
- "register",
- "registerQr",
- "personalSite",
- "location"
], - "id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "created_at": "2025-12-23T10:55:54.124Z",
- "updated_at": "2025-12-23T10:57:03.842Z",
- "root_id": null,
- "name": {
- "de": {
- "value": "Einblicke in Finanzinnovationen"
}, - "en": {
- "value": "Einblicke in Finanzinnovationen (Kompakt)"
}, - "es": {
- "value": "Einblicke in Finanzinnovationen (Kompakt)"
}, - "fr": {
- "value": "Einblicke in Finanzinnovationen (Kompakt)"
}, - "it": {
- "value": "Einblicke in Finanzinnovationen (Kompakt)"
}, - "nl": {
- "value": "Einblicke in Finanzinnovationen (Kompakt)"
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Tauchen Sie ein in die spannende Welt der sich wandelnden Finanzbranche! Treffen Sie 200 Top-Experts und Visionäre, knüpfen Sie wertvolle Kontakte und gestalten Sie gemeinsam mit uns die Zukunft der Finanzdienstleistungen.</p>"
}, - "en": {
- "value": "<p>Dive in and explore the future of the financial industry with us. Join 200 leading experts and visionaries to forge new connections and drive innovation in the financial sector.</p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "start_timestamp": "2026-09-03T11:30:00.000Z",
- "end_timestamp": "P0Y0M0DT6H30M0S",
- "calculated_end_timestamp": "2026-09-03T18:00:00.000Z",
- "languages": [
- "en",
- "de"
], - "visibility": null,
- "default_language": "de",
- "timezone": "Europe/Zurich",
- "parent_id": null,
- "event_type": null,
- "registered_contact_hard_limit": 100,
- "attendee_portal_config": {
- "name": {
- "de": {
- "value": "Finanzinnovationen im Fokus"
}, - "en": {
- "value": "Focus on Innovating Finance"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "theme": {
- "colors": {
- "accent": "#E95252",
- "primary": "#16213D",
- "secondary": "#16213D"
}
}, - "features": {
- "qa_lobby": true,
- "speakers": true,
- "anonymized": false,
- "chat_lobby": true,
- "poll_lobby": true,
- "qa_sessions": true,
- "event_online": true,
- "chat_sessions": true,
- "poll_sessions": true,
- "qa_lobby_upvotes": true,
- "qa_lobby_publishing": true,
- "qa_sessions_upvotes": true,
- "qa_sessions_publishing": true,
- "allow_only_one_session_per_token": false
}, - "subTitle": {
- "de": {
- "value": ""
}, - "en": {
- "value": ""
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Tauchen Sie ein in die spannende Welt der sich wandelnden Finanzbranche! Treffen Sie 200 Top-Experts und Visionäre, knüpfen Sie wertvolle Kontakte und gestalten Sie gemeinsam mit uns die Zukunft der Finanzdienstleistungen.</p>"
}, - "en": {
- "value": "<p>Dive into the exciting world of the changing financial industry! Meet 200 top experts and visionaries, forge valuable connections, and work with us to shape the future of financial services.</p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "logoImageId": "c0932e83-ac79-4c18-8912-3807bef19276",
- "coverImageId": "962df205-347d-46b4-aee9-ad0f8ede9cda"
}, - "money_config": {
- "currency": "CHF"
}, - "evenito_ticketing_config": { },
- "status": "in-preparation",
- "ticket_sales_active": false,
- "contact_list_edit_starts_at": null,
- "contact_list_edit_ends_at": null,
- "tickets_per_order_limit": null,
- "companions_per_contact_limit": 0,
- "template": false,
- "host_booking_starts_at": null,
- "host_booking_ends_at": null,
- "host_contact_registration_starts_at": null,
- "host_contact_registration_ends_at": null,
- "max_host_hierarchy_depth": 2,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "team_ids": [
- "a5c78e02-c7a3-4f3d-9359-9ce3ff73ec36"
], - "cover_image_id": "b204d4b1-7d11-453f-80c3-374c6fef1e5f",
- "is_public": false,
- "host_register_contact_on_ticket_assignment": "optional",
- "cover_image": null,
- "eventFeatures": [
- {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "feature": "scheduledReports",
- "enabled": false
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "feature": "locations",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "feature": "website",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "feature": "schedule",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "feature": "registration",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "feature": "tickets",
- "enabled": false
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "feature": "photos",
- "enabled": false
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "feature": "letterTemplates",
- "enabled": false
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "feature": "stakeholders",
- "enabled": false
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "feature": "bookingPage",
- "enabled": false
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "feature": "attendeePortal",
- "enabled": false
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "feature": "check-in",
- "enabled": true
}
], - "owners": [
- {
- "id": "73e81fa0-6fc7-4055-bfaa-cf669a635340",
- "created_at": "2020-04-22T13:15:57.696Z",
- "updated_at": "2025-08-07T07:09:53.977Z",
- "first_name": "Mario ",
- "last_name": "Saariste",
- "email": "mario.saariste@evenito.com",
- "salutation": "Mr",
- "language": "en",
- "is_super_admin": false,
- "last_login": "2022-08-29T12:24:50.891Z",
- "contact_id": null,
- "google_id": null,
- "facebook_id": null,
- "github_id": null
}
], - "group_ids": [ ],
- "schedule_speaker_profile_ids": [ ],
- "label_ids": [ ],
- "ownerIds": [
- "73e81fa0-6fc7-4055-bfaa-cf669a635340"
], - "features": {
- "scheduledReports": false,
- "locations": true,
- "website": true,
- "schedule": true,
- "registration": true,
- "tickets": false,
- "photos": false,
- "letterTemplates": false,
- "stakeholders": false,
- "bookingPage": false,
- "attendeePortal": false,
- "check-in": true
}
}, - {
- "placeHolderModelName": "event",
- "placeholderFields": [
- "name",
- "description",
- "startDateWithDay",
- "startTime",
- "addToCalendarICS",
- "addToCalendarICSShort",
- "addToCalendarGoogle",
- "register",
- "registerQr",
- "personalSite",
- "location"
], - "id": "20c97bd5-d509-40eb-a123-2796001446f4",
- "created_at": "2026-01-05T14:10:13.009Z",
- "updated_at": "2026-01-07T14:30:37.010Z",
- "root_id": null,
- "name": {
- "de": {
- "value": "Jetzt Gefrierschrank abtauen"
}, - "en": {
- "value": "Jetzt Gefrierschrank abtauen"
}, - "es": {
- "value": "Docs preview sits in here"
}, - "fr": {
- "value": "Docs preview sits in here"
}, - "it": {
- "value": "Docs preview sits in here"
}, - "nl": {
- "value": "Docs preview sits in here"
}, - "i18n": true
}, - "description": {
- "de": {
- "value": ""
}, - "en": {
- "value": ""
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "start_timestamp": "2027-01-02T07:00:00.000Z",
- "end_timestamp": "P0Y0M0DT10H0M0S",
- "calculated_end_timestamp": "2027-01-02T17:00:00.000Z",
- "languages": [
- "en",
- "de"
], - "visibility": null,
- "default_language": "en",
- "timezone": "Europe/Zurich",
- "parent_id": null,
- "event_type": null,
- "registered_contact_hard_limit": null,
- "attendee_portal_config": {
- "name": {
- "de": {
- "value": ""
}, - "en": {
- "value": ""
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "subTitle": {
- "de": {
- "value": ""
}, - "en": {
- "value": ""
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "description": {
- "de": {
- "value": ""
}, - "en": {
- "value": ""
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}
}, - "money_config": {
- "currency": "CHF"
}, - "evenito_ticketing_config": {
- "seller_id": null
}, - "status": "in-preparation",
- "ticket_sales_active": false,
- "contact_list_edit_starts_at": null,
- "contact_list_edit_ends_at": null,
- "tickets_per_order_limit": null,
- "companions_per_contact_limit": 0,
- "template": false,
- "host_booking_starts_at": null,
- "host_booking_ends_at": null,
- "host_contact_registration_starts_at": null,
- "host_contact_registration_ends_at": null,
- "max_host_hierarchy_depth": 1,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "team_ids": [
- "a5c78e02-c7a3-4f3d-9359-9ce3ff73ec36"
], - "cover_image_id": null,
- "is_public": false,
- "host_register_contact_on_ticket_assignment": "required",
- "cover_image": null,
- "eventFeatures": [
- {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "20c97bd5-d509-40eb-a123-2796001446f4",
- "feature": "website",
- "enabled": true
}
], - "owners": [
- {
- "id": "73e81fa0-6fc7-4055-bfaa-cf669a635340",
- "created_at": "2020-04-22T13:15:57.696Z",
- "updated_at": "2025-08-07T07:09:53.977Z",
- "first_name": "Mario ",
- "last_name": "Saariste",
- "email": "mario.saariste@evenito.com",
- "salutation": "Mr",
- "language": "en",
- "is_super_admin": false,
- "last_login": "2022-08-29T12:24:50.891Z",
- "contact_id": null,
- "google_id": null,
- "facebook_id": null,
- "github_id": null
}
], - "group_ids": [ ],
- "schedule_speaker_profile_ids": [ ],
- "label_ids": [ ],
- "ownerIds": [
- "73e81fa0-6fc7-4055-bfaa-cf669a635340"
], - "features": {
- "website": true
}
}
], - "count": 4,
- "total": 4,
- "page": 1,
- "pageCount": 1
}Creates a new blank event. Generally not recommended as it will lack all of the personalization and setup.
| spaceId required | string <uuid> Example: 74a95ce2-4ef1-4794-a606-9973828dd860 ID of the space |
| authorization required | string Example: Bearer ey... Bearer token |
| evenito-space-id required | string <uuid> Example: 74a95ce2-4ef1-4794-a606-9973828dd860 ID of the space |
| Content-Type required | string Example: application/json |
object I18n object for the event name | |
| languages | Array of strings |
| timezone | string |
| default_language | string |
| start_timestamp | string <date-time> |
| end_timestamp | string Duration string (e.g., PT10H) |
object | |
object | |
| companions_per_contact_limit | integer |
{- "languages": [
- "en"
], - "timezone": "Europe/Zurich",
- "name": {
- "i18n": true,
- "en": {
- "value": "New blank event"
}, - "fr": {
- "value": "New blank event"
}, - "de": {
- "value": "New blank event"
}, - "it": {
- "value": "New blank event"
}, - "es": {
- "value": "New blank event"
}, - "nl": {
- "value": "New blank event"
}
}, - "features": { },
- "default_language": "en",
- "attendee_portal_config": {
- "name": {
- "i18n": true,
- "en": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "de": {
- "value": ""
}, - "it": {
- "value": ""
}, - "es": {
- "value": ""
}, - "nl": {
- "value": ""
}
}, - "subTitle": {
- "i18n": true,
- "en": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "de": {
- "value": ""
}, - "it": {
- "value": ""
}, - "es": {
- "value": ""
}, - "nl": {
- "value": ""
}
}, - "description": {
- "i18n": true,
- "en": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "de": {
- "value": ""
}, - "it": {
- "value": ""
}, - "es": {
- "value": ""
}, - "nl": {
- "value": ""
}
}
}, - "description": {
- "i18n": true,
- "en": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "de": {
- "value": ""
}, - "it": {
- "value": ""
}, - "es": {
- "value": ""
}, - "nl": {
- "value": ""
}
}, - "max_host_hierarchy_depth": 1,
- "dates": {
- "contactList": { },
- "booking": { },
- "registration": { }
}, - "registered_contact_hard_limit": null,
- "tickets_per_order_limit": null,
- "companions_per_contact_limit": 0,
- "start_timestamp": "2026-01-06T07:00:00.000Z",
- "end_timestamp": "PT10H",
- "contact_list_edit_starts_at": null,
- "contact_list_edit_ends_at": null,
- "host_booking_starts_at": null,
- "host_booking_ends_at": null,
- "host_contact_registration_starts_at": null,
- "host_contact_registration_ends_at": null
}{- "error": false,
- "id": "d27120a5-af9b-4981-989e-280d8229c5ac",
- "created_at": "2026-01-06T15:42:28.618Z",
- "updated_at": "2026-01-06T15:42:28.618Z",
- "root_id": null,
- "name": {
- "de": {
- "value": "New blank event"
}, - "en": {
- "value": "New blank event"
}, - "es": {
- "value": "New blank event"
}, - "fr": {
- "value": "New blank event"
}, - "it": {
- "value": "New blank event"
}, - "nl": {
- "value": "New blank event"
}, - "i18n": true
}, - "description": {
- "de": {
- "value": ""
}, - "en": {
- "value": ""
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "start_timestamp": "2026-01-06T07:00:00.000Z",
- "end_timestamp": "P0Y0M0DT10H0M0S",
- "languages": [
- "en"
], - "visibility": null,
- "default_language": "en",
- "timezone": "Europe/Zurich",
- "parent_id": null,
- "event_type": null,
- "registered_contact_hard_limit": null,
- "attendee_portal_config": {
- "name": {
- "de": {
- "value": ""
}, - "en": {
- "value": ""
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "subTitle": {
- "de": {
- "value": ""
}, - "en": {
- "value": ""
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "description": {
- "de": {
- "value": ""
}, - "en": {
- "value": ""
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}
}, - "money_config": {
- "currency": "CHF"
}, - "evenito_ticketing_config": {
- "seller_id": null
}, - "status": "in-preparation",
- "ticket_sales_active": false,
- "contact_list_edit_starts_at": null,
- "contact_list_edit_ends_at": null,
- "tickets_per_order_limit": null,
- "companions_per_contact_limit": 0,
- "template": false,
- "host_booking_starts_at": null,
- "host_booking_ends_at": null,
- "host_contact_registration_starts_at": null,
- "host_contact_registration_ends_at": null,
- "max_host_hierarchy_depth": 1,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "team_ids": [
- "a5c78e02-c7a3-4f3d-9359-9ce3ff73ec36"
], - "cover_image_id": null,
- "is_public": false,
- "host_register_contact_on_ticket_assignment": "required",
- "teams": [ ],
- "space": {
- "online_only": false,
- "cid": "745965080",
- "id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "created_at": "2025-12-16T09:53:40.260Z",
- "updated_at": "2025-12-23T10:55:39.146Z",
- "name": "API requests sampling space",
- "description": "Here the API calls are recorded for the API docs",
- "active_idp_id": null,
- "logo_id": "d37462c7-1d15-402a-b000-b4969289f0e8",
- "whitelabel": {
- "theme": {
- "color": "#014751"
}
}, - "smtp_settings_id": null,
- "email_provider": "sendinblue",
- "streaming_provider": "mux",
- "streaming_provider_api_key": null,
- "max_host_contact_amount": null,
- "site_csp_override": null
}, - "labels": [ ],
- "eventFeatures": [ ],
- "owners": [
- {
- "id": "73e81fa0-6fc7-4055-bfaa-cf669a635340",
- "created_at": "2020-04-22T13:15:57.696Z",
- "updated_at": "2025-08-07T07:09:53.977Z",
- "first_name": "Mario ",
- "last_name": "Saariste",
- "email": "mario.saariste@evenito.com",
- "salutation": "Mr",
- "language": "en",
- "is_super_admin": false,
- "last_login": "2022-08-29T12:24:50.891Z",
- "contact_id": null,
- "google_id": null,
- "facebook_id": null,
- "github_id": null
}
], - "cover_image": null,
- "group_ids": [ ],
- "schedule_speaker_profile_ids": [ ],
- "label_ids": [ ],
- "ownerIds": [
- "73e81fa0-6fc7-4055-bfaa-cf669a635340"
]
}Triggers an asynchronous job to copy an event. You can override specific fields like teams and values like dates.
| spaceId required | string <uuid> Example: 74a95ce2-4ef1-4794-a606-9973828dd860 ID of the space containing the event |
| eventId required | string <uuid> Example: ee6b83ae-3c4f-45ba-a5c0-1583bc6a23e1 ID of the event to copy |
| authorization required | string Example: Bearer ey... Bearer token |
| content-type required | string Example: application/json |
| evenito-space-id required | string <uuid> Example: 74a95ce2-4ef1-4794-a606-9973828dd860 ID of the space |
| name | string The name of the new event |
| template | boolean Default: false Whether the new event should be a template |
object Directly overwrite specific fields on the new event | |
object Find and replace specific values (useful for shifting dates) |
{- "name": "Apero tournament mit golf",
- "overrides": {
- "team_ids": [
- "a5c78e02-c7a3-4f3d-9359-9ce3ff73ec36"
]
}, - "replacers": {
- "start_timestamp": {
- "value": "2026-06-01T09:30:00.000Z",
- "type": "date"
}
}, - "template": false
}{- "error": false,
- "message": "events | ['ee6b83ae-3c4f-45ba-a5c0-1583bc6a23e1'] copy started.",
- "table": "events",
- "initial_entity_ids": [
- "ee6b83ae-3c4f-45ba-a5c0-1583bc6a23e1"
], - "entity_references": {
- "space": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event": "ee6b83ae-3c4f-45ba-a5c0-1583bc6a23e1"
}, - "job_id": "268e5871-8dcf-46a9-9755-fcb6928bdee9"
}Fetches a list of events that are marked as templates. These can be used as a base to copy/create new events.
| spaceId required | string <uuid> Example: 74a95ce2-4ef1-4794-a606-9973828dd860 ID of the space |
| authorization required | string Example: Bearer ey... Bearer token |
| evenito-space-id required | string <uuid> Example: 74a95ce2-4ef1-4794-a606-9973828dd860 ID of the space |
{- "error": false,
- "data": [
- {
- "placeHolderModelName": "event",
- "placeholderFields": [
- "name",
- "description",
- "startDateWithDay",
- "startTime",
- "addToCalendarICS",
- "addToCalendarICSShort",
- "addToCalendarGoogle",
- "register",
- "registerQr",
- "personalSite",
- "location"
], - "id": "ee6b83ae-3c4f-45ba-a5c0-1583bc6a23e1",
- "created_at": "2026-01-06T15:26:08.194Z",
- "updated_at": "2026-01-06T15:26:08.194Z",
- "root_id": null,
- "name": {
- "de": {
- "value": "Default Template"
}, - "en": {
- "value": "Default Template"
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Tauchen Sie ein in die spannende Welt der sich wandelnden Finanzbranche!</p>"
}, - "en": {
- "value": "<p>Dive in and explore the future of the financial industry with us.</p>"
}, - "i18n": true
}, - "start_timestamp": "2026-09-03T07:00:00.000Z",
- "end_timestamp": "P0Y0M1DT9H0M0S",
- "calculated_end_timestamp": "2026-09-04T16:00:00.000Z",
- "languages": [
- "en",
- "de"
], - "visibility": null,
- "default_language": "de",
- "timezone": "Europe/Zurich",
- "parent_id": null,
- "event_type": null,
- "registered_contact_hard_limit": 200,
- "attendee_portal_config": {
- "name": {
- "de": {
- "value": "Finanzinnovationen im Fokus"
}, - "en": {
- "value": "Focus on Innovating Finance"
}, - "i18n": true
}, - "theme": {
- "colors": {
- "accent": "#E95252",
- "primary": "#16213D",
- "secondary": "#16213D"
}
}, - "features": {
- "qa_lobby": true,
- "speakers": true,
- "anonymized": false,
- "chat_lobby": true,
- "poll_lobby": true,
- "qa_sessions": true,
- "event_online": true,
- "chat_sessions": true,
- "poll_sessions": true,
- "qa_lobby_upvotes": true,
- "qa_lobby_publishing": true,
- "qa_sessions_upvotes": true,
- "qa_sessions_publishing": true,
- "allow_only_one_session_per_token": false
}
}, - "money_config": {
- "currency": "CHF"
}, - "status": "in-preparation",
- "template": true,
- "features": {
- "scheduledReports": true,
- "bookingPage": true,
- "photos": true,
- "letterTemplates": true,
- "tickets": true,
- "locations": true,
- "website": true,
- "stakeholders": true,
- "attendeePortal": true,
- "schedule": true,
- "registration": true,
- "check-in": true
}
}
], - "count": 1,
- "total": 1,
- "page": 1,
- "pageCount": 1
}Fetch all attendance related statistics from an event without any of the extra details.
| evenito-space-id | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 evenito-space-id |
| priority | string Example: u=1, i priority |
{- "error": false,
- "grouped_by_group_registered": null,
- "grouped_by_group_showed_up": null,
- "grouped_by_status": [
- {
- "count": 200,
- "status": "selected"
}
], - "total_checked_in": "0",
- "total_contacts": "200"
}| eventId required | string <uuid> |
| evenito-space-id | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 evenito-space-id |
{- "count": 3,
- "data": [
- {
- "id": "49028764-75a7-44ad-8f8f-330a6d5a44df",
- "category": "published_rsvp_contact_registration",
- "starts_at": "2025-05-31T22:00:00.000Z",
- "ends_at": "2026-08-24T22:00:00.000Z"
}
]
}| spaceId required | string <uuid> |
| eventId required | string <uuid> |
| evenito-space-id | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 evenito-space-id |
{- "error": false,
- "placeHolderModelName": "event",
- "placeholderFields": [
- "name",
- "description",
- "startDateWithDay",
- "startTime",
- "addToCalendarICS",
- "addToCalendarICSShort",
- "addToCalendarGoogle",
- "register",
- "registerQr",
- "personalSite",
- "location"
], - "id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "created_at": "2025-12-23T10:55:51.836Z",
- "updated_at": "2025-12-23T10:55:51.836Z",
- "root_id": null,
- "name": {
- "de": {
- "value": "Finanzinnovationen im Fokus (Hospitality)"
}, - "en": {
- "value": "Finanzinnovationen im Fokus (Hospitality)"
}, - "es": {
- "value": "Finanzinnovationen im Fokus (Hospitality)"
}, - "fr": {
- "value": "Finanzinnovationen im Fokus (Hospitality)"
}, - "it": {
- "value": "Finanzinnovationen im Fokus (Hospitality)"
}, - "nl": {
- "value": "Finanzinnovationen im Fokus (Hospitality)"
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Tauchen Sie ein in die spannende Welt der sich wandelnden Finanzbranche! Treffen Sie 200 Top-Experts und Visionäre, knüpfen Sie wertvolle Kontakte und gestalten Sie gemeinsam mit uns die Zukunft der Finanzdienstleistungen.</p>"
}, - "en": {
- "value": "<p>Dive in and explore the future of the financial industry with us. Join 200 leading experts and visionaries to forge new connections and drive innovation in the financial sector.</p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "start_timestamp": "2026-09-03T07:00:00.000Z",
- "end_timestamp": "P0Y0M1DT9H0M0S",
- "calculated_end_timestamp": "2026-09-04T16:00:00.000Z",
- "languages": [
- "en",
- "de"
], - "visibility": null,
- "default_language": "de",
- "timezone": "Europe/Zurich",
- "parent_id": null,
- "event_type": null,
- "registered_contact_hard_limit": 200,
- "attendee_portal_config": {
- "name": {
- "de": {
- "value": "Finanzinnovationen im Fokus"
}, - "en": {
- "value": "Focus on Innovating Finance"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "theme": {
- "colors": {
- "accent": "#E95252",
- "primary": "#16213D",
- "secondary": "#16213D"
}
}, - "features": {
- "qa_lobby": true,
- "speakers": true,
- "anonymized": false,
- "chat_lobby": true,
- "poll_lobby": true,
- "qa_sessions": true,
- "event_online": true,
- "chat_sessions": true,
- "poll_sessions": true,
- "qa_lobby_upvotes": true,
- "qa_lobby_publishing": true,
- "qa_sessions_upvotes": true,
- "qa_sessions_publishing": true,
- "allow_only_one_session_per_token": false
}, - "subTitle": {
- "de": {
- "value": ""
}, - "en": {
- "value": ""
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Tauchen Sie ein in die spannende Welt der sich wandelnden Finanzbranche! Treffen Sie 200 Top-Experts und Visionäre, knüpfen Sie wertvolle Kontakte und gestalten Sie gemeinsam mit uns die Zukunft der Finanzdienstleistungen.</p>"
}, - "en": {
- "value": "<p>Dive into the exciting world of the changing financial industry! Meet 200 top experts and visionaries, forge valuable connections, and work with us to shape the future of financial services.</p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "logoImageId": "c0932e83-ac79-4c18-8912-3807bef19276",
- "coverImageId": "962df205-347d-46b4-aee9-ad0f8ede9cda"
}, - "money_config": {
- "currency": "CHF"
}, - "evenito_ticketing_config": { },
- "status": "in-preparation",
- "ticket_sales_active": false,
- "contact_list_edit_starts_at": null,
- "contact_list_edit_ends_at": null,
- "tickets_per_order_limit": null,
- "companions_per_contact_limit": 2,
- "template": false,
- "host_booking_starts_at": null,
- "host_booking_ends_at": null,
- "host_contact_registration_starts_at": null,
- "host_contact_registration_ends_at": null,
- "max_host_hierarchy_depth": 2,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "team_ids": [
- "a5c78e02-c7a3-4f3d-9359-9ce3ff73ec36"
], - "cover_image_id": "962df205-347d-46b4-aee9-ad0f8ede9cda",
- "is_public": false,
- "host_register_contact_on_ticket_assignment": "optional",
- "eventFeatures": [
- {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "scheduledReports",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "bookingPage",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "photos",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "letterTemplates",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "tickets",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "locations",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "website",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "stakeholders",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "attendeePortal",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "schedule",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "registration",
- "enabled": true
}, - {
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "feature": "check-in",
- "enabled": true
}
], - "group_ids": [ ],
- "schedule_speaker_profile_ids": [ ],
- "label_ids": [ ],
- "ownerIds": [
- "73e81fa0-6fc7-4055-bfaa-cf669a635340"
], - "features": {
- "scheduledReports": true,
- "bookingPage": true,
- "photos": true,
- "letterTemplates": true,
- "tickets": true,
- "locations": true,
- "website": true,
- "stakeholders": true,
- "attendeePortal": true,
- "schedule": true,
- "registration": true,
- "check-in": true
}
}Fetch all teams associated with the current space, including their member IDs and assigned event IDs. Useful when needing to check what the team name is when seeing the team id on the event.
| authorization required | string Example: Bearer ey... Bearer token |
| evenito-space-id required | string <uuid> Example: 74a95ce2-4ef1-4794-a606-9973828dd860 ID of the space |
{- "data": [
- {
- "id": "a5c78e02-c7a3-4f3d-9359-9ce3ff73ec36",
- "spaceId": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "name": "Team API docs",
- "description": "",
- "color": "#000000",
- "userIds": [ ],
- "eventIds": [
- "1962355b-c259-4b81-9740-8d4d02dfe1f9",
- "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "bda7394b-159f-4f97-be99-b72956764822",
- "20c97bd5-d509-40eb-a123-2796001446f4",
- "d27120a5-af9b-4981-989e-280d8229c5ac",
- "ee6b83ae-3c4f-45ba-a5c0-1583bc6a23e1",
- "dc67cd05-dace-4fb2-8476-47af91b4ef86"
], - "default": true
}, - {
- "id": "fac5743c-b591-4111-911b-0ea5813eec08",
- "spaceId": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "name": "Team Zurich",
- "description": null,
- "color": "#0657db",
- "userIds": [ ],
- "eventIds": [ ],
- "default": false
}, - {
- "id": "a61f678f-0cca-4637-86fc-d4203b943274",
- "spaceId": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "name": "Team Glarus",
- "description": null,
- "color": "#e9980c",
- "userIds": [ ],
- "eventIds": [ ],
- "default": false
}
]
}Fetch a list of labels that can be assigned to events within the space.
| spaceId required | string <uuid> Example: 74a95ce2-4ef1-4794-a606-9973828dd860 ID of the space |
| authorization required | string Example: Bearer ey... Bearer token |
| evenito-space-id required | string <uuid> Example: 74a95ce2-4ef1-4794-a606-9973828dd860 ID of the space |
{- "error": false,
- "data": [
- {
- "id": "02eddfe2-7e01-4945-abde-4007d1ac93da",
- "created_at": "2026-01-15T13:03:05.599Z",
- "updated_at": "2026-01-15T13:03:05.599Z",
- "name": {
- "de": {
- "value": "Internal"
}, - "en": {
- "value": "Internal"
}, - "es": {
- "value": "Internal"
}, - "fr": {
- "value": "Internal"
}, - "it": {
- "value": "Internal"
}, - "nl": {
- "value": "Internal"
}, - "i18n": true
}, - "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "label_key": "AB4B60-93214B"
}, - {
- "id": "84555d8a-cd9d-42d9-b0cf-17c7e28f1efa",
- "created_at": "2026-01-15T13:03:05.633Z",
- "updated_at": "2026-01-15T13:03:05.633Z",
- "name": {
- "de": {
- "value": "Hospitality"
}, - "en": {
- "value": "Hospitality"
}, - "es": {
- "value": "Hospitality"
}, - "fr": {
- "value": "Hospitality"
}, - "it": {
- "value": "Hospitality"
}, - "nl": {
- "value": "Hospitality"
}, - "i18n": true
}, - "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "label_key": "C26784-F3B949"
}, - {
- "id": "2943c39e-b3c0-48a0-abfa-6641d24add72",
- "created_at": "2026-01-15T13:03:05.602Z",
- "updated_at": "2026-01-15T13:03:05.602Z",
- "name": {
- "de": {
- "value": "Concert"
}, - "en": {
- "value": "Concert"
}, - "es": {
- "value": "Concert"
}, - "fr": {
- "value": "Concert"
}, - "it": {
- "value": "Concert"
}, - "nl": {
- "value": "Concert"
}, - "i18n": true
}, - "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "label_key": "EE61E6-01BEC2"
}, - {
- "id": "eb3c2e0a-f0ef-4591-88a3-cf8461a05f56",
- "created_at": "2026-01-15T13:03:05.627Z",
- "updated_at": "2026-01-15T13:03:05.627Z",
- "name": {
- "de": {
- "value": "Golf tournament"
}, - "en": {
- "value": "Golf tournament"
}, - "es": {
- "value": "Golf tournament"
}, - "fr": {
- "value": "Golf tournament"
}, - "it": {
- "value": "Golf tournament"
}, - "nl": {
- "value": "Golf tournament"
}, - "i18n": true
}, - "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "label_key": "FD45BD-6A0E15"
}
], - "count": 4,
- "total": 4,
- "page": 1,
- "pageCount": 1
}Create a new label in the space.
| spaceId required | string <uuid> Example: 74a95ce2-4ef1-4794-a606-9973828dd860 ID of the space |
| authorization required | string Example: Bearer ey... Bearer token |
| evenito-space-id required | string <uuid> Example: 74a95ce2-4ef1-4794-a606-9973828dd860 ID of the space |
| _id | string |
| label_key | string |
| name | i18n object |
{- "_id": "8F355D-E19075",
- "label_key": "CA916D-191CE9",
- "name": {
- "i18n": true,
- "en": {
- "value": "New label"
}, - "fr": {
- "value": "New label"
}, - "de": {
- "value": "Neues Etikett"
}, - "it": {
- "value": "New label"
}, - "es": {
- "value": "New label"
}, - "nl": {
- "value": "New label"
}
}
}Data-shapes are the fields and questions that contacts.data objects and event forms consist of. Call this endpoint if you see a non-recognizable value in the contact such as 'questionBdad4E488B8F': 'option-D316E9-2DC25D-38092E'. Data-shape keys (values sent in API responses) can be PATCHed so you can more easily recognize them in contact responses. For this reason, we recommend setting up the data-shapes inside templates so that the template setup can be relied on in future API interactions.
| accept-version | string Example: 2 accept-version |
| evenito-space-id | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 evenito-space-id |
| priority | string Example: u=1, i priority |
{- "count": 17,
- "data": [
- {
- "category": "personal",
- "conditions": { },
- "created_at": "2025-12-23T10:55:54.124Z",
- "data_key": "email",
- "description": null,
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "form_ids": [
- "61c08d76-963a-40cf-b6f6-1645c0c80126"
], - "id": "ed4739ab-10cd-4bd8-918f-49cfb9999da1",
- "input_type": "text",
- "name": {
- "de": {
- "value": "E-Mail"
}, - "en": {
- "value": "E-mail"
}, - "es": {
- "value": "Correo electrónico"
}, - "fr": {
- "value": "Courrier électronique"
}, - "i18n": true,
- "it": {
- "value": "Posta elettronica"
}, - "nl": {
- "value": "E-mail"
}
}, - "options": null,
- "order_num": 4,
- "read_only": false,
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "stat_answered_by_contact_count": 0,
- "updated_at": "2025-12-23T10:55:54.124Z",
- "validation_rules": {
- "conditions": null,
- "jsonSchema": {
- "format": "email",
- "type": "string"
}, - "required": false
}
}
]
}Modify a data shape. This is commonly used to set a human-readable data_key or dataRepresentation for options, ensuring that API integrations receive recognizable keys instead of random IDs. To do so, copy the entire object out from the /data-shapes call, replace the necessary values are then send it back as payload to this endpoint.
| eventId required | string <uuid> |
| dataShapeId required | string <uuid> |
| authorization required | string Example: Bearer ey... |
| evenito-space-id required | string <uuid> Example: 74a95ce2-4ef1-4794-a606-9973828dd860 |
| data_key | string The key used in the JSON response for this question (e.g. 'firstName' or 'dietary_requirements'). |
| input_type | string Enum: "text" "select" "checkbox" "radio" |
| category | string |
| name | object I18n object for the question label |
Array of objects | |
| order_num | integer |
| conditions | object |
| validation_rules | object |
| read_only | boolean |
| form_ids | Array of strings <uuid> |
{- "stat_answered_by_contact_count": 0,
- "id": "16fba58d-ba26-4e8e-b9bb-9556990cd891",
- "created_at": "2025-12-23T10:55:54.124Z",
- "updated_at": "2025-12-23T10:55:54.124Z",
- "data_key": "recognizable_privacyPolicy_key",
- "input_type": "select",
- "category": "question",
- "name": {
- "de": {
- "value": "Datenschutzbestimmungen"
}, - "en": {
- "value": "Privacy Policy"
}, - "i18n": true
}, - "description": null,
- "options": [
- {
- "name": {
- "de": {
- "value": "Ich habe die Datenschutzbestimmungen gelesen und akzeptiert"
}, - "en": {
- "value": "I have read and accepted the Privacy Policy"
}, - "i18n": true
}, - "hardLimit": null,
- "isLimitVisible": true,
- "dataRepresentation": "recognizable_policy_agreement_answer_key"
}
], - "order_num": 19,
- "conditions": { },
- "validation_rules": {
- "required": false
}, - "read_only": false,
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "form_ids": [
- "61c08d76-963a-40cf-b6f6-1645c0c80126"
]
}{- "error": false,
- "stat_answered_by_contact_count": 0,
- "id": "16fba58d-ba26-4e8e-b9bb-9556990cd891",
- "created_at": "2025-12-23T10:55:54.124Z",
- "updated_at": "2026-01-15T13:29:16.163Z",
- "data_key": "recognizable_privacyPolicy_key",
- "input_type": "select",
- "category": "question",
- "name": {
- "de": {
- "value": "Datenschutzbestimmungen"
}, - "en": {
- "value": "Privacy Policy"
}, - "i18n": true
}, - "description": null,
- "options": [
- {
- "name": {
- "de": {
- "value": "Ich habe die Datenschutzbestimmungen gelesen und akzeptiert"
}, - "en": {
- "value": "I have read and accepted the Privacy Policy"
}, - "i18n": true
}, - "hardLimit": null,
- "isLimitVisible": true,
- "dataRepresentation": "recognizable_policy_agreement_answer_key"
}
], - "order_num": 19,
- "conditions": { },
- "validation_rules": {
- "required": false
}, - "read_only": false,
- "event_id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "form_ids": [
- "61c08d76-963a-40cf-b6f6-1645c0c80126"
]
}| eventId required | string <uuid> |
| evenito-space-id | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 evenito-space-id |
{- "error": false,
- "data": [
- {
- "id": "7f01a3ec-5996-4552-9f45-313ed77156ff",
- "number": "EVENITO-156-TESTING",
- "created_at": "2025-10-31T14:08:52.128924Z",
- "updated_at": "2025-10-31T14:11:41.560409Z",
- "event_id": "6d641e15-7814-4aa1-b245-10f4fa836f12",
- "provider": "evenito-internal",
- "name": "Max Mustermann",
- "email": "max.mustermann@evenito.com",
- "company": "evenito AG",
- "status": "refunded",
- "street": "Hafnerstrasse 24",
- "city": "Zürich",
- "country": "Schweiz",
- "postal": "8005",
- "currency": "CHF",
- "price": "0.00",
- "history": [
- {
- "date": "2025-10-31T14:08:52.144640Z",
- "type": "ticket.created"
}, - {
- "date": "2025-10-31T14:08:52.199882Z",
- "type": "ticket.validated"
}, - {
- "date": "2025-10-31T14:11:41.560352Z",
- "type": "invoice.refunded"
}
], - "contact_id": "f1eb287d-755c-44f7-8a8f-98344f27fea6",
- "invoice_pdf_ready": true,
- "language": null,
- "tickets": [
- {
- "id": "1188dfbc-11a9-41ef-bbfa-5f2b331dd0ff",
- "created_at": "2025-10-31T14:08:52.188094Z",
- "updated_at": "2025-10-31T14:08:52.188094Z",
- "event_id": "6d641e15-7814-4aa1-b245-10f4fa836f12",
- "space_id": "f2d4c6d6-0a5e-4145-911e-136fc208939e",
- "ext_id": null,
- "ticket_invoice_id": "7f01a3ec-5996-4552-9f45-313ed77156ff",
- "ext_invoice_id": null,
- "provider": "evenito-internal",
- "name": null,
- "barcode": null,
- "personalized": false,
- "contact_id": "f1eb287d-755c-44f7-8a8f-98344f27fea6",
- "ticket_type_id": "5e9b4584-a7e8-44d5-9b30-2368d754a0dd",
- "price": "0.00",
- "assigner_id": null,
- "contingency_id": null,
- "is_cancelled": true
}
], - "refund_pdf_ready": true
}
], - "count": 1,
- "total": 1,
- "page": 1,
- "pageCount": 1
}Ticket types are the core contingent of the tickets, having the name, price and limits. Tickets assigned to contacts will refer to a ticket type.
| eventId required | string <uuid> |
| evenito-space-id | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 evenito-space-id |
{- "error": false,
- "data": [
- {
- "used": 0,
- "total": 50,
- "bookable": 50,
- "reallocated": null,
- "id": "f346f231-775b-4a1b-9d4d-5ed1eda37a28",
- "created_at": "2025-08-01T09:38:19.610940Z",
- "updated_at": "2025-10-23T12:25:42.569116Z",
- "name": {
- "de": {
- "value": "Early Bird-Ticket"
}, - "en": {
- "value": "Early bird Ticket"
}, - "es": {
- "value": "Beispiel Ticket 1"
}, - "fr": {
- "value": "Beispiel Ticket 1"
}, - "it": {
- "value": "Beispiel Ticket 1"
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Vergünstiger Eintritt für alle, die sich ihr Ticket frühzeitig sichern. Schnell sein lohnt sich!</p>"
}, - "en": {
- "value": "<p>Discounted entry for everyone who secures their ticket early. It pays to be quick!</p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "i18n": true
}, - "order_num": 1,
- "price": "50.00",
- "amount": 50,
- "tax": {
- "type": "percentage",
- "amount": "8.10"
}, - "event_id": "6d641e15-7814-4aa1-b245-10f4fa836f12",
- "space_id": "f2d4c6d6-0a5e-4145-911e-136fc208939e",
- "max_booking_limit": null,
- "color": "#d04242",
- "group_ids": [ ],
- "visibility_group_ids": [ ],
- "error": false,
- "hidden_on_websites": false
}, - {
- "used": 0,
- "total": 100,
- "bookable": 100,
- "reallocated": null,
- "id": "cde91b4b-4766-4b86-84ba-15a1bbe84f76",
- "created_at": "2025-08-01T09:38:19.610940Z",
- "updated_at": "2025-08-01T09:38:19.610940Z",
- "name": {
- "de": {
- "value": "Besipiel Ticket 2"
}, - "en": {
- "value": "Besipiel Ticket 2"
}, - "es": {
- "value": "Besipiel Ticket 2"
}, - "fr": {
- "value": "Besipiel Ticket 2"
}, - "it": {
- "value": "Besipiel Ticket 2"
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Wenn du alle Tickets angelegt hast, klicke auf \"Veröffentlichen\" und aktiviere den entsprechenden Toggle auf der \"Website\" unter dem Baustein \"Anmeldung\".</p>"
}, - "en": {
- "value": "<p>After you have created all tickets, click on \"publish\" and activate the toggle on the \"website\" under the module \"registration\".</p>"
}, - "es": {
- "value": "<p>Wenn du alle Tickets angelegt hast, klicke auf \"veröffentlichen\" und aktiviere den entsprechenden Toggle auf der \"Website\" unter dem Baustein \"Anmeldung\".</p>"
}, - "fr": {
- "value": "<p>Wenn du alle Tickets angelegt hast, klicke auf \"veröffentlichen\" und aktiviere den entsprechenden Toggle auf der \"Website\" unter dem Baustein \"Anmeldung\".</p>"
}, - "it": {
- "value": "<p>Wenn du alle Tickets angelegt hast, klicke auf \"veröffentlichen\" und aktiviere den entsprechenden Toggle auf der \"Website\" unter dem Baustein \"Anmeldung\".</p>"
}, - "i18n": true
}, - "order_num": 2,
- "price": "150.00",
- "amount": 100,
- "tax": {
- "type": "percentage",
- "amount": "7.7"
}, - "event_id": "6d641e15-7814-4aa1-b245-10f4fa836f12",
- "space_id": "f2d4c6d6-0a5e-4145-911e-136fc208939e",
- "max_booking_limit": null,
- "color": "#d04242",
- "group_ids": [ ],
- "visibility_group_ids": [ ],
- "error": false,
- "hidden_on_websites": false
}, - {
- "used": 0,
- "total": 100,
- "bookable": 100,
- "reallocated": null,
- "id": "945430f5-903e-4e13-b51b-72e51a3dadce",
- "created_at": "2025-08-01T09:38:19.610940Z",
- "updated_at": "2025-08-01T09:38:19.610940Z",
- "name": {
- "de": {
- "value": "Beispiel Ticket 3"
}, - "en": {
- "value": "Beispiel Ticket 3"
}, - "es": {
- "value": "Beispiel Ticket 3"
}, - "fr": {
- "value": "Beispiel Ticket 3"
}, - "it": {
- "value": "Beispiel Ticket 3"
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Sobald der \"Veröffentlichen\" Button aktiviert wurde, kann das Datum in den Grundeinstellungen nicht mehr verändert werden.</p><p><br></p>"
}, - "en": {
- "value": "<p>As soon as the \"Publish\" button has been activated, the date can no longer be changed in the basic settings.</p>"
}, - "es": {
- "value": "<p>Sobald der \"Veröffentlichen\" Button aktiviert wurde, kann das Datum in den Grundeinstellungen nicht mehr verändert werden.</p><p><br></p>"
}, - "fr": {
- "value": "<p>Sobald der \"Veröffentlichen\" Button aktiviert wurde, kann das Datum in den Grundeinstellungen nicht mehr verändert werden.</p><p><br></p>"
}, - "it": {
- "value": "<p>Sobald der \"Veröffentlichen\" Button aktiviert wurde, kann das Datum in den Grundeinstellungen nicht mehr verändert werden.</p><p><br></p>"
}, - "i18n": true
}, - "order_num": 3,
- "price": "200.00",
- "amount": 100,
- "tax": {
- "type": "percentage",
- "amount": "7.7"
}, - "event_id": "6d641e15-7814-4aa1-b245-10f4fa836f12",
- "space_id": "f2d4c6d6-0a5e-4145-911e-136fc208939e",
- "max_booking_limit": null,
- "color": "#009688",
- "group_ids": [ ],
- "visibility_group_ids": [ ],
- "error": false,
- "hidden_on_websites": false
}, - {
- "used": 0,
- "total": 10,
- "bookable": 10,
- "reallocated": null,
- "id": "5e9b4584-a7e8-44d5-9b30-2368d754a0dd",
- "created_at": "2025-10-31T14:02:43.453548Z",
- "updated_at": "2025-10-31T14:02:43.453548Z",
- "name": {
- "de": {
- "value": "One Day Ticket"
}, - "en": {
- "value": "One Day Ticket"
}, - "es": {
- "value": "One Day Ticket"
}, - "fr": {
- "value": "One Day Ticket"
}, - "it": {
- "value": "One Day Ticket"
}, - "nl": {
- "value": "One Day Ticket"
}, - "i18n": true
}, - "description": {
- "de": {
- "value": ""
}, - "en": {
- "value": ""
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "order_num": 4,
- "price": "0.00",
- "amount": 10,
- "tax": {
- "type": "percentage",
- "amount": "0.00"
}, - "event_id": "6d641e15-7814-4aa1-b245-10f4fa836f12",
- "space_id": "f2d4c6d6-0a5e-4145-911e-136fc208939e",
- "max_booking_limit": null,
- "color": "#df56ab",
- "group_ids": [ ],
- "visibility_group_ids": [ ],
- "error": false,
- "hidden_on_websites": false
}
], - "count": 4,
- "total": 4,
- "page": 1,
- "pageCount": 1
}| spaceId required | string <uuid> |
| evenito-space-id | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 evenito-space-id |
{- "error": false,
- "data": [
- {
- "id": "c67d5236-986b-42ff-bf05-93bd681a68ec",
- "created_at": "2021-04-19T14:54:16.506Z",
- "updated_at": "2021-04-19T14:54:52.053Z",
- "first_name": "Max",
- "last_name": "Mustermann",
- "email": "max.mustermann@evenito.com",
- "salutation": "",
- "language": "de",
- "is_super_admin": false,
- "last_login": "1970-02-01T00:00:00.000Z",
- "contact_id": null,
- "google_id": null,
- "facebook_id": null,
- "github_id": null,
- "role_ids": [ ],
- "role_keys": [
- "space_administrator"
], - "sessionClaims": [ ]
}
], - "count": 1,
- "total": 1,
- "page": 1,
- "pageCount": 1
}Get all locations from an event. You can use the 'default' parameter in the response object to decide on the relevance of the location for you.
| eventId required | string <uuid> |
| evenito-space-id | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 evenito-space-id |
{- "error": false,
- "data": [
- {
- "id": "96369fa4-9cda-42a2-af61-8061800ba80d",
- "created_at": "2025-12-23T10:55:51.836Z",
- "updated_at": "2025-12-23T10:55:51.836Z",
- "name": {
- "de": {
- "value": "Konferenzzentrum"
}, - "en": {
- "value": "Conference Centre"
}, - "es": {
- "value": "Europaallee"
}, - "fr": {
- "value": "Europaallee"
}, - "it": {
- "value": "Europaallee"
}, - "nl": {
- "value": "Europaallee"
}, - "i18n": true
}, - "address": {
- "de": {
- "value": "Europaallee 2026"
}, - "en": {
- "value": "Europaallee 2026, Zurich"
}, - "es": {
- "value": "Europaallee, Zürich"
}, - "fr": {
- "value": "Europaallee, Zürich"
}, - "it": {
- "value": "Europaallee, Zürich"
}, - "nl": {
- "value": "Europaallee, Zürich"
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Die Europaallee ist optimal an den öffentlichen Verkehr angebunden, direkt neben dem Hauptbahnhof Zürich (Zürich HB). Sie erreichen uns in nur wenigen Gehminuten vom Bahnhof aus. </p><p><a target=\"_blank\" href=\"https://www.sbb.ch/de\">Zum SBB Fahrplan</a></p>"
}, - "en": {
- "value": "<p>The Europaallee has excellent connections to public transport, located right next to Zurich Main Station (Zürich HB). You can reach us in just a few minutes on foot from the station.</p><p><a target=\"_blank\" href=\"https://www.sbb.ch/de\">To the SBB Timetable</a></p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "city": {
- "de": {
- "value": "Zürich"
}, - "en": {
- "value": "Zurich"
}, - "es": {
- "value": "Zürich"
}, - "fr": {
- "value": "Zürich"
}, - "it": {
- "value": "Zürich"
}, - "nl": {
- "value": "Zürich"
}, - "i18n": true
}, - "zip": {
- "de": {
- "value": "8004"
}, - "en": {
- "value": "8004"
}, - "es": {
- "value": "8004"
}, - "fr": {
- "value": "8004"
}, - "it": {
- "value": "8004"
}, - "nl": {
- "value": "8004"
}, - "i18n": true
}, - "country": {
- "de": {
- "value": "Switzerland"
}, - "en": {
- "value": "Switzerland"
}, - "es": {
- "value": "Switzerland"
}, - "fr": {
- "value": "Switzerland"
}, - "it": {
- "value": "Switzerland"
}, - "nl": {
- "value": "Switzerland"
}, - "i18n": true
}, - "email": {
- "de": {
- "value": ""
}, - "en": {
- "value": ""
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "website": {
- "de": {
- "value": ""
}, - "en": {
- "value": ""
}, - "i18n": true
}, - "lat": 47.3776637,
- "lng": 8.534512399999999,
- "default": true,
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b"
}
], - "count": 1,
- "total": 1,
- "page": 1,
- "pageCount": 1
}Get all sites from the event. Use the 'domain' and 'is_default' parameters in the response to decide on the relevance of the site for you.
| fields | string Example: fields=id,name,domain,status,is_default,template fields |
| evenito-space-id | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 evenito-space-id |
| priority | string Example: u=1, i priority |
{- "count": 1,
- "data": [
- {
- "asset_ids": [ ],
- "assets": [ ],
- "domain": "kwkxcwxb.test-evenito.com",
- "event": {
- "attendee_portal_config": {
- "coverImageId": "962df205-347d-46b4-aee9-ad0f8ede9cda",
- "description": {
- "de": {
- "value": "<p>Tauchen Sie ein in die spannende Welt der sich wandelnden Finanzbranche! Treffen Sie 200 Top-Experts und Visionäre, knüpfen Sie wertvolle Kontakte und gestalten Sie gemeinsam mit uns die Zukunft der Finanzdienstleistungen.</p>"
}, - "en": {
- "value": "<p>Dive into the exciting world of the changing financial industry! Meet 200 top experts and visionaries, forge valuable connections, and work with us to shape the future of financial services.</p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "i18n": true,
- "it": {
- "value": ""
}, - "nl": {
- "value": ""
}
}, - "features": {
- "allow_only_one_session_per_token": false,
- "anonymized": false,
- "chat_lobby": true,
- "chat_sessions": true,
- "event_online": true,
- "poll_lobby": true,
- "poll_sessions": true,
- "qa_lobby": true,
- "qa_lobby_publishing": true,
- "qa_lobby_upvotes": true,
- "qa_sessions": true,
- "qa_sessions_publishing": true,
- "qa_sessions_upvotes": true,
- "speakers": true
}, - "logoImageId": "c0932e83-ac79-4c18-8912-3807bef19276",
- "name": {
- "de": {
- "value": "Finanzinnovationen im Fokus"
}, - "en": {
- "value": "Focus on Innovating Finance"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "i18n": true,
- "it": {
- "value": ""
}, - "nl": {
- "value": ""
}
}, - "subTitle": {
- "de": {
- "value": ""
}, - "en": {
- "value": ""
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "i18n": true,
- "it": {
- "value": ""
}, - "nl": {
- "value": ""
}
}, - "theme": {
- "colors": {
- "accent": "#E95252",
- "primary": "#16213D",
- "secondary": "#16213D"
}
}
}, - "companions_per_contact_limit": 0,
- "contact_list_edit_ends_at": null,
- "contact_list_edit_starts_at": null,
- "cover_image_id": "b204d4b1-7d11-453f-80c3-374c6fef1e5f",
- "created_at": "2025-12-23T10:55:54.124Z",
- "default_language": "de",
- "description": {
- "de": {
- "value": "<p>Tauchen Sie ein in die spannende Welt der sich wandelnden Finanzbranche! Treffen Sie 200 Top-Experts und Visionäre, knüpfen Sie wertvolle Kontakte und gestalten Sie gemeinsam mit uns die Zukunft der Finanzdienstleistungen.</p>"
}, - "en": {
- "value": "<p>Dive in and explore the future of the financial industry with us. Join 200 leading experts and visionaries to forge new connections and drive innovation in the financial sector.</p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "i18n": true,
- "it": {
- "value": ""
}, - "nl": {
- "value": ""
}
}, - "end_interval": {
- "hours": 6,
- "minutes": 30
}, - "end_timestamp": null,
- "evenito_ticketing_config": { },
- "event_type": null,
- "group_ids": [ ],
- "host_booking_ends_at": null,
- "host_booking_starts_at": null,
- "host_contact_registration_ends_at": null,
- "host_contact_registration_starts_at": null,
- "host_register_contact_on_ticket_assignment": "optional",
- "id": "afc8ab28-7ac6-4a7b-ab63-e3b34b7ca84d",
- "is_public": false,
- "label_ids": [ ],
- "languages": [
- "en",
- "de"
], - "max_host_hierarchy_depth": 2,
- "money_config": {
- "currency": "CHF"
}, - "name": {
- "de": {
- "value": "Einblicke in Finanzinnovationen"
}, - "en": {
- "value": "Einblicke in Finanzinnovationen (Kompakt)"
}, - "es": {
- "value": "Einblicke in Finanzinnovationen (Kompakt)"
}, - "fr": {
- "value": "Einblicke in Finanzinnovationen (Kompakt)"
}, - "i18n": true,
- "it": {
- "value": "Einblicke in Finanzinnovationen (Kompakt)"
}, - "nl": {
- "value": "Einblicke in Finanzinnovationen (Kompakt)"
}
}, - "ownerIds": [
- "73e81fa0-6fc7-4055-bfaa-cf669a635340"
], - "parent_id": null,
- "registered_contact_hard_limit": 100,
- "root_id": null,
- "schedule_speaker_profile_ids": [ ],
- "space_id": "74a95ce2-4ef1-4794-a606-9973828dd860",
- "start_interval": null,
- "start_timestamp": "2026-09-03T11:30:00.000Z",
- "status": "in-preparation",
- "team_ids": [
- "a5c78e02-c7a3-4f3d-9359-9ce3ff73ec36"
], - "template": false,
- "ticket_sales_active": false,
- "tickets_per_order_limit": null,
- "timezone": "Europe/Zurich",
- "updated_at": "2025-12-23T10:57:03.842Z",
- "visibility": null
}, - "form_ids": [ ],
- "id": "b7508315-c148-4c95-91eb-040e2b46d951",
- "is_default": true,
- "name": "Finanzinnovationen im Fokus",
- "status": "unpublished",
- "template": false
}
], - "error": false,
- "page": 1,
- "pageCount": 1,
- "total": 1
}| eventId required | string <uuid> |
| siteId required | string <uuid> |
| evenito-space-id | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 evenito-space-id |
{- "id": "13cf338f-17bc-400c-8a0a-4db1c025e57a",
- "name": "Innovating Finance",
- "domain": "xvxsgfot.test-evenito.com",
- "is_default": true,
- "widgets": [
- {
- "id": "3EBA37-322182",
- "widget": "Navigation"
}
]
}| eventId required | string <uuid> |
| evenito-space-id | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 evenito-space-id |
{- "error": false,
- "data": [
- {
- "id": "e1dcd9b6-de9c-4e77-9820-262c4ce1d798",
- "created_at": "2025-12-23T10:55:51.836Z",
- "updated_at": "2025-12-23T10:55:51.836Z",
- "first_name": "Dr. Anna",
- "last_name": "Meier",
- "title": {
- "de": {
- "value": "CEO, Schweizer Digitalbank"
}, - "en": {
- "value": "CEO, of a Swiss Digital Bank"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Als CEO einer führenden Schweizer Digitalbank seit 2022 treibt Dr. Anna Meier die digitale Transformation voran und schafft zukunftsfähige, kundenorientierte Finanzlösungen.</p>"
}, - "en": {
- "value": "<p>Since 2022, Dr. Anna Meier has led a top Swiss digital bank, driving its digital transformation and creating innovative, customer-focused financial solutions.</p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "social_links": [
- {
- "id": "social-button--linkedin",
- "_id": "5FFB4A-F2E67F",
- "type": "linkedin",
- "account": ""
}
], - "image_id": "09abdb69-9f2e-4a77-9787-d54cd532be50",
- "cover_image_id": null,
- "order_num": 1,
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "image": null,
- "cover_image": null,
- "schedule_ids": [
- "e615e80e-2a35-4702-97ea-ea21e6223c64",
- "f8d439c0-9a75-4133-b96b-a80ebebb716b"
]
}, - {
- "id": "0d85b3cf-a888-4de0-9f83-f91d48bfcb95",
- "created_at": "2025-12-23T10:55:51.836Z",
- "updated_at": "2025-12-23T10:55:51.836Z",
- "first_name": "Prof. Dr. Thomas",
- "last_name": "Schmidt",
- "title": {
- "de": {
- "value": "Experte für KI im Finanzbereich"
}, - "en": {
- "value": "AI Expert, Financial Sector"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Als Universitätsexperte für KI und Machine Learning forscht Prof. Dr. Thomas Schmidt zu deren Anwendungen im Finanzsektor und berät regelmässig.</p>"
}, - "en": {
- "value": "<p>Prof. Dr. Thomas Schmidt, a university expert in AI and Machine Learning, researches and regularly consults on the applications of AI and Machine Learning in finance.</p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "social_links": [
- {
- "id": "social-button--linkedin",
- "_id": "4D3754-BFFD8B",
- "type": "linkedin",
- "account": ""
}
], - "image_id": "65cebb9d-765d-4414-a33d-39242bc045ce",
- "cover_image_id": null,
- "order_num": 2,
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "image": null,
- "cover_image": null,
- "schedule_ids": [
- "af41ce51-332b-4f16-a84e-8c85c44151f6"
]
}, - {
- "id": "4d95bbb9-7ab9-48e8-b3a6-f6eeff68c087",
- "created_at": "2025-12-23T10:55:51.836Z",
- "updated_at": "2025-12-23T10:55:51.836Z",
- "first_name": "Maria",
- "last_name": "Keller",
- "title": {
- "de": {
- "value": "Leiterin Sustainable Finance"
}, - "en": {
- "value": "Head of Sustainable Finance"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Als Leiterin Sustainable Finance engagiert sich Maria Keller für eine nachhaltigere Wirtschaft, indem sie ESG-Kriterien in Anlagestrategien integriert und Unternehmen zu grünen Finanzierungen berät.</p>"
}, - "en": {
- "value": "<p>Maria Keller integrates ESG criteria into investment strategies and advises companies on green financing, with the goal of building a more sustainable economy.</p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "social_links": [
- {
- "id": "social-button--linkedin",
- "_id": "988D08-3E5CDF",
- "type": "linkedin",
- "account": ""
}
], - "image_id": "6190e541-05d6-4118-8d0e-7f0bb55debc0",
- "cover_image_id": null,
- "order_num": 3,
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "image": null,
- "cover_image": null,
- "schedule_ids": [
- "fd2fa00c-bcfd-4ae6-8d70-af93a3ad73da"
]
}, - {
- "id": "8a582f8c-5cfa-4254-b5b1-a397218aa889",
- "created_at": "2025-12-23T10:55:51.836Z",
- "updated_at": "2025-12-23T10:55:51.836Z",
- "first_name": "Christine",
- "last_name": "Fischer",
- "title": {
- "de": {
- "value": "Vertreterin einer Regulierungsbehörde"
}, - "en": {
- "value": "Representative of a Regulatory Authority"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Als Vertreterin einer führenden Finanzaufsichtsbehörde entwickelt Christine Fischer Regulierungsrahmen, die Finanzsystemstabilität und FinTech-Innovation fördern.</p>"
}, - "en": {
- "value": "<p>As a representative of a leading financial supervisory authority, Christine Fischer develops regulatory frameworks that promote financial system stability and FinTech innovation.</p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "social_links": [
- {
- "id": "social-button--linkedin",
- "_id": "E40C20-4F261A",
- "type": "linkedin",
- "account": ""
}
], - "image_id": "52a06309-5de2-4eb9-bd64-21d065b6305f",
- "cover_image_id": null,
- "order_num": 4,
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "image": null,
- "cover_image": null,
- "schedule_ids": [
- "80c6829c-f9d5-4741-91c6-105b42cf24b1",
- "ac951750-5595-4dfb-adec-45174af66b8c",
- "bca7075b-9b9d-4021-b399-6a19bec374e7"
]
}, - {
- "id": "3b618b74-a9e0-4aa9-b238-fd953055b28b",
- "created_at": "2025-12-23T10:55:51.836Z",
- "updated_at": "2025-12-23T10:55:51.836Z",
- "first_name": "David",
- "last_name": "Müller",
- "title": {
- "de": {
- "value": "Gründer eines FinTech-Startups"
}, - "en": {
- "value": "Founder of a FinTech Startup"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Als Gründer eines der erfolgreichsten Schweizer Payment-FinTech-Startups nutzt David Müller seine Expertise, um innovative Ansätze im traditionellen Finanzsektor voranzutreiben.</p>"
}, - "en": {
- "value": "<p>As the founder of one of the most successful Swiss payment FinTech startups, David Müller uses his expertise to advance innovative approaches in the traditional financial sector.</p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "social_links": [
- {
- "id": "social-button--linkedin",
- "_id": "F57C3E-EDA2ED",
- "type": "linkedin",
- "account": ""
}
], - "image_id": "78ee6715-e121-4aa6-b745-de953112065b",
- "cover_image_id": null,
- "order_num": 5,
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "image": null,
- "cover_image": null,
- "schedule_ids": [
- "044d7164-69f8-4c69-842a-dcdf04aae724",
- "bca7075b-9b9d-4021-b399-6a19bec374e7"
]
}, - {
- "id": "16aee896-0ea3-49bd-aa9e-66af1ea6191f",
- "created_at": "2025-12-23T10:55:51.836Z",
- "updated_at": "2025-12-23T10:55:51.836Z",
- "first_name": "Lena",
- "last_name": "Graf",
- "title": {
- "de": {
- "value": "Head of Legal & Compliance"
}, - "en": {
- "value": "Head of Legal & Compliance"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "description": {
- "de": {
- "value": "<p>Als Head of Legal & Compliance einer Schweizer Grossbank ist Lena Graf zuständig für die Einhaltung regulatorischer Anforderungen und die Minimierung rechtlicher Risiken.</p>"
}, - "en": {
- "value": "<p>As the Head of Legal & Compliance for a major Swiss bank, Lena Graf is responsible for ensuring compliance with regulatory requirements and minimizing legal risks.</p>"
}, - "es": {
- "value": ""
}, - "fr": {
- "value": ""
}, - "it": {
- "value": ""
}, - "nl": {
- "value": ""
}, - "i18n": true
}, - "social_links": [ ],
- "image_id": "0f05432b-5a7d-4dfc-93d1-64b3d0e02408",
- "cover_image_id": null,
- "order_num": 6,
- "event_id": "315e0a0f-9ead-4c02-b916-2f2ded8b088b",
- "image": null,
- "cover_image": null,
- "schedule_ids": [
- "84e2bd07-f5f2-462a-909e-71a19c38baef",
- "bca7075b-9b9d-4021-b399-6a19bec374e7"
]
}
], - "count": 6,
- "total": 6,
- "page": 1,
- "pageCount": 1
}Get booth types (e.g. Sponsors, Partners, Booths etc).
| eventId required | string <uuid> |
| evenito-space-id | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 evenito-space-id |
{- "count": 3,
- "data": [
- {
- "id": "db102f79-3007-43fd-8b43-808a960a795b",
- "name": {
- "en": {
- "value": "Info Booth"
}
}, - "icon": "e-stakeholder-products"
}
]
}Get all booths belonging to a specific booth type.
| stakeholderTypeId required | string <uuid> |
| evenito-space-id | string Example: 74a95ce2-4ef1-4794-a606-9973828dd860 evenito-space-id |
{- "count": 3,
- "data": [
- {
- "id": "1274c2a1-d742-486c-8f0c-49be87011f85",
- "name": {
- "en": {
- "value": "Sustainable Finance & ESG"
}
}
}
]
}