Initialize a new self-scheduling attempt. Validates that the setting is active and, if provided, that the identity proof matches the setting's verification requirements.
Security
PartnerApiKey and PartnerOAuth
- Mock serverhttps://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/self-scheduling/attempt
- Productionhttps://api-prod.lobbie.com/lobbie/api/partner/v2/account/{accountId}/self-scheduling/attempt
curl -i -X POST \
'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/self-scheduling/attempt' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"identityProofId": 456,
"selfSchedulingSettingId": 123
}'Attempt created successfully
Appointment ID if appointment has been created. Omitted if not yet created.
Example:202
Patient ID if patient has been set (AccountPatient ID). Omitted if not yet set.
Example:101
Response
{ "appointmentId": 202, "id": 789, "identityProofId": 456, "isVerified": true, "patientId": 101, "selfSchedulingSettingId": 123 }