Return a specific event, and the household members of logged in person
To identify all the the household members for the logged in use along with basic event details for use when checking a household into an event
Path parameters
-
The ID of the event
-
The date of the event to retrieve, YYYY-MM-DD format. Date is local time
GET /events/myfamily/{eventid}/{eventdate}
curl \
-X GET https://YOURSITE.infoodle.com/apiv2/events/myfamily/{eventid}/{eventdate} \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"members": [
{
"userId": 2157478,
"firstname": "John",
"middlename": "string",
"lastname": "Smith",
"nickName": "Johnny",
"gender": "Male",
"householdname": "infoodle Ltd",
"isOrganisation": "N",
"passExpiryDate": "2022-06-30",
"person_image": "234lkjf3l4kjwelkfmwf......",
"checkInStatus": [
{
"groupId": 500,
"status": 1
}
],
"checkin_groups": [
{
"id": 530
}
]
}
],
"groups": [
{
"id": 530,
"name": "Staff Team"
}
],
"event": {
"title": "Weekly Staff Meeting",
"date": "2022-06-06",
"checkinOk": 0
}
}