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
GET
/events/myfamily/{eventid}/{eventdate}
curl \
--request GET 'https://YOURSITE.infoodle.com/apiv2/events/myfamily/{eventid}/{eventdate}' \
--header "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
}
}