Retrieve detailed information about a form packet including all forms and their completion status. Use the form sub-resource endpoints to retrieve answers.
Security
PartnerApiKey and PartnerOAuth
- Mock serverhttps://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/location/{locationId}/form-packet/{formPacketId}
- Productionhttps://api-prod.lobbie.com/lobbie/api/partner/v2/account/{accountId}/location/{locationId}/form-packet/{formPacketId}
curl -i -X GET \
'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/location/{locationId}/form-packet/12345' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'x-api-key: YOUR_API_KEY_HERE'Form packet found and returned successfully
Completion timestamp. Not monotonic: can transition back to null and re-set if forms are added to a completed packet, an EHR sync retracts completion, or staff manually clear it. Treat each form-packet.updated event as a state snapshot, not a terminal completion signal.
Example:"2025-01-18T14:30:00-05:00"
Whether the form packet is active. Inactive packets have been deactivated by the system (e.g. via appointment cancellation).
Example:true
Response
{ "completedAt": "2025-01-18T14:30:00-05:00", "createdAt": "2025-01-15T14:00:00Z", "dueDate": "2025-01-20T17:00:00-05:00", "formTemplateIds": [ 101, 102 ], "id": 12345, "isActive": true, "isArchived": false, "locationId": 111, "locationName": "Main Street Clinic", "patientId": 67890, "patientName": "John Doe", "updatedAt": "2025-01-15T14:00:00Z" }