List a membership's check-ins
Authorization
ApiKeyAuth Send your API key as a bearer token: Authorization: Bearer bp_sk_live_.... Mint and revoke keys in your dashboard under Settings -> Developers.
In: header
Path Parameters
uuidQuery Parameters
1 <= value <= 10025Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/members/497f6eca-6276-4993-bfeb-53cbbbba6f08/visits"{ "data": [ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "contact_id": "f245e2a3-e141-4d41-912c-b1c1f5bd5598", "location_id": "46910cc3-ab41-4b80-b4a7-94dab9f1b795", "check_in_method": "string", "checked_in_at": "2019-08-24T14:15:22Z", "checked_out_at": "2019-08-24T14:15:22Z" } ]}Check a member in
Records a facility check-in for a member. Provide either an `identifier` (member code or fob UID, which is resolved for you) or an explicit `membership_id` + `contact_id`. Enforces the same rules as the dashboard: membership active, plan allows facility access, the location is covered, cross-location rules, and available credits. Send an `Idempotency-Key` so a retry or a double-scan does not log two visits.
Resolve a member and check eligibility
Given a credential (a member code or an RFID fob/card UID) and a location, returns the matching membership and whether the member is currently eligible to check in. Use this from a kiosk, turnstile, or a biometric device (map a face/fingerprint to the member's code, then call this) to decide whether to let someone in, without recording a visit.