Record a check in or check out of group/non group members
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
-
The group id you want to list
-
The event id you want to list
-
The date of the event you are getting details for. Format YYYY-MM-DD
curl \
-X GET https://YOURSITE.infoodle.com/apiv2/groups/attendance/310/45/2022-06-14 \
-H "Authorization: Bearer $ACCESS_TOKEN"
[
{
"error": "Invalid parameters. attendance data is invalid"
}
]