Retrieve detailed information about a form template including all form elements/fields. Use this to understand the structure of a form for integration purposes.
Security
PartnerApiKey and PartnerOAuth
- Mock serverhttps://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/location/{locationId}/form/template/{formTemplateId}
- Productionhttps://api-prod.lobbie.com/lobbie/api/partner/v2/account/{accountId}/location/{locationId}/form/template/{formTemplateId}
curl -i -X GET \
'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/location/{locationId}/form/template/12345?includeElements=true' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'x-api-key: YOUR_API_KEY_HERE'Form template found and returned successfully
Public link for directly linkable templates
Example:"https://forms.lobbie.com/t/abc123"
Response
{ "appointmentTypeIds": [ 0 ], "createdAt": "2025-01-15T14:00:00Z", "elementCount": 15, "elements": [ { … } ], "id": 12345, "isActive": true, "isDirectlyLinkable": true, "isFillablePdf": false, "isStaffOnly": false, "name": "Patient Intake Form", "publicLink": "https://forms.lobbie.com/t/abc123", "updatedAt": "2025-01-15T14:00:00Z" }