# 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) } ] ## Servers - API Auto Mocking: https://YOURSITE.infoodle.com/apiv2 (API Auto Mocking) ## Authentication methods - O auth2 ## Parameters ### Path parameters - **groupid** (string) The group id you want to list - **eventid** (string) The event id you want to list - **date** (string) The date of the event you are getting details for. Format YYYY-MM-DD ## Responses ### 200 OK ### 400 OK #### Body: application/json (array[object]) - **error** (string) [Powered by Bump.sh](https://bump.sh)