Return a specific event, and the household members of logged in person

GET /events/myfamily/{eventid}/{eventdate}

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

  • eventid integer Required

    The ID of the event

  • eventdate string Required

    The date of the event to retrieve, YYYY-MM-DD format. Date is local time

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • groups array[object]

      List of groups that can be checked into this event, the invitees

      Hide groups attributes Show groups attributes
    • event object
      Hide event attributes Show event attributes
      • title string
      • date string

        Date of this event

      • checkinOk integer

        Whether this event is ready for check in now. It maybe a future or past event which cant be checked in to at this time.

        Values are 1 or 0.

    • members array[object]
      Hide members attributes Show members attributes
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
  }
}