Skip to main content

Event APIs

Interact with your Events

Grant Lonie avatar
Written by Grant Lonie
Updated over 2 weeks ago

Events are where sessions and leads are captured. List upcoming events or extract additional information known events.

List Events

List the events within your workspace sorted by the start date.

Endpoint:

GET https://api.momentifyapp.com/v1/events

Parameters

Name

Type

Default

Description

after

string

β€”

ISO 8601 date/time string. Returns events created after this date/time.

hideProperties

comma-delimited string

β€”

Specify certain event properties not to return

limit

number

50

Number of events to return. (Max 50)

offset

number

0

Number of events to skip (for pagination).

Sample Request:

curl -X GET "https://api.momentifyapp.com/v1/events" \
-H "Authorization: [Your API Key]" \
-H"Content-Type:application/json"

Response

Returns a JSON object containing the event object.

Sample Response:

{
"totalCount": 6,
"data": [
{
"updatedBy": "user id",
"created": 1757430864322,
"leadCount": 1,
"managerId": "user id",
"title": "Sample event",
"moments": [
{
"id": 0,
"type": "explorer",
"title": "Blanchard Machinery",
"template": {
"id": "template id"
}
},
{
"id": 1,
"type": "public",
"title": "Self Registration",
"template": {
"id": "template id"
}
}
],
"createdBy": "user id",
"sessionCount": 2,
"location": {
"city": "Dallas",
"country": "USA",
"state": "TX",
"lat": 32.7766642,
"lng": -96.79698789999999,
"timezone": "America/Chicago"
},
"startTime": 1757289600000,
"endTime": 1757462400000,
"updated": 1757524696523,
"memberIds": [
"user id"
],
"registrationMode": "input",
"id": "event id"
},
...
]
}

Read Event

Endpoint:

GET https://api.momentifyapp.com/v1/events/:id

Sample Request:

curl -X GET "https://api.momentifyapp.com/v1/events/[event id]" \
-H "Authorization: [Your API Key]" \
-H"Content-Type:application/json"

Response

Returns a JSON object containing the event object.

Sample Response:

{
"appTitle": "Momentify Explorer",
"managerId": "user id",
"created": 1741293439924,
"createdBy": "user id",
"url": "url to event",
"title": "Event Title",
"startTime": 1749441600000,
"endTime": 1749614400000,
"registrationSkip": true,
"registrationInput": true,
"qrCode": null,
"registrationMode": "none",
"templateId": "puTNfoFCauOCWM3KYMJ3",
"hasImage": true,
"template": {
"registration": {
"title": {
"en": "Momentify Explorer"
}
},
},
"updatedBy": "user id",
"updated": 1748372837437,
"memberIds": [
"user id 1",
"user id 2"
],
"smartColumns": {},
"sessionCount": 51,
"moments": [
{
"id": 1,
"type": "explorer",
"template": {
"registration": {
"title": {
"en": "Momentify Explorer"
}
},
"id": "template id"
},
"title": "Moment Title"
},
{
"id": 2,
"type": "public",
"template": {
"registration": {
"title": {
"en": "Momentify Explorer"
}
},
"id": "template id"
},
"title": "Moment Title 2"
}
],
"location": {
"city": "Austin",
"country": "USA",
"state": "TX",
"lat": 30.267153,
"lng": -97.7430608,
"timezone": "America/Chicago"
},
"leadCount": 51,
"count": {
"leads": 51,
"sessions": 51
}
}
Did this answer your question?