Booking Pro API
API ReferenceMembers

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.

POST
/members/check-in

Authorization

ApiKeyAuth
AuthorizationBearer <token>

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

Header Parameters

Idempotency-Key?string

A unique key you generate per logical create. Retrying with the same key returns the original result instead of creating a duplicate.

Lengthlength <= 255

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/members/check-in" \  -H "Content-Type: application/json" \  -d '{    "location_id": "46910cc3-ab41-4b80-b4a7-94dab9f1b795"  }'
{  "checked_in": true,  "visit_id": "4fa595bd-6c49-4a9e-9507-63e9ca0eb0fc",  "remaining_credits": 0}