Record a check in or check out of group/non group members

GET /groups/attendance/{groupid}/{eventid}/{date}

When people are checkin/checkout of an event record. The postbody must contain the details of the checkin/out

example: attendance: [{ "type" : "member", "userId" : 114177,"status": 1}]

object with a single parameter:

attendance: This is a json array [ { "type" : "member", "userId" : 12345, "status": 1 or 0 (1=check in, 0=check out) }, { "type": "visitor", "attendanceId": 1123, "firstName": "James", "lastName": "Malone", "notes": "A note up to 512 chars long", "status": 1, or 0 (1=check in, 0=check out) "passExpiryDate": "2022-06-01" (optional) } ]

Path parameters

  • groupid string Required

    The group id you want to list

  • eventid string Required

    The event id you want to list

  • date string Required

    The date of the event you are getting details for. Format YYYY-MM-DD

Responses

  • 200

    OK

  • 400

    OK

    Hide response attribute Show response attribute array[object]
GET /groups/attendance/{groupid}/{eventid}/{date}
curl \
 -X GET https://YOURSITE.infoodle.com/apiv2/groups/attendance/310/45/2022-06-14 \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (400)
[
  {
    "error": "Invalid parameters. attendance data is invalid"
  }
]