Returns a Json object of all of the Check Ins for a given event.

Request Information

Route

/api/attendance/id/{eventId}/key/{eventKey}/apikey/{apiKey}

Parameters


Name
Type
Description

eventId
GET
The ID of the event you wish to gather attendance information.

eventKey
GET
The Key of the event you wish to gather attendance information.

apiKey
GET
An API Key owned by the creator of the event you wish to gather attendance information.


Response Information

With Incorrect eventKey or eventId:

Json Object: {"error":"Invalid eventKey or eventId"}

With Incorrect apiKey:

Json Object: {"error":"Invalid API Key"}

Response Body Format

Json Object:
	[
		{
			"firstName":"John",
			"lastName":"Doe",
			"email":"JohnDoe@iastate.edu",
			"proctor":"JohnDoe",
			"checkInDate":"yyyy-mm-dd",
			"checkInTime":"hh:mm",
			"checkOutDate":"yyyy-mm-dd",
			"checkOutTime":"hh:mm",
			"method":"Manual Entry"
		}
	]

Return Item Options

"checkOutDate" and "checkOutTime"
	"checkOutDate":"yyyy-mm-dd",
	"checkOutTime":"hh:mm"

or

	"checkOutDate":"",
	"checkOutTime":""

"method"
	"method":"Manual Entry"

or

	"method":"Card Scan"

or

	"method":"Prox. Card"

or

	"method":"Manual Non-ISU Entry"

or

	"method":"Swipr"