Parameters
JSON body
Request body
application/jsoneventIdstringRequiredExternal event code identifier.
Runs the same passcode-generation pipeline that the cron uses (connectPasscodeWithCalendarEvent). Returns the resulting lifecycle status: ready (primary code created), fallback_backup (gateway still offline, the lock's backup code is now linked), or failed (primary failed and no usable backup). Idempotent — safe to retry from the UI as a "fix it" button.
JSON body
eventIdstringRequiredExternal event code identifier.
1 status code documented
statusstringRequiredFinal lock_access_status after this attempt: one of ready, fallback_backup, failed, manual_override, pending.
failureReasonstringOptionalUnderlying error message when status=failed.
passcodeIdnumberOptionalInternal id of the linked passcode (when present).
{
"status": "example_status",
"failureReason": "example_failureReason",
"passcodeId": 0
}POST /bff/calendar/event-retry-access
curl -X POST "https://api.bizkithub.com/bff/calendar/event-retry-access" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"eventId": "example_eventId"
}'All BizKitHub public API endpoints require authentication via API key.