Retrieve a paginated list of patients for the account. Supports filtering by name/email/active status and cursor-based pagination.
Security
PartnerApiKey and PartnerOAuth
- Mock serverhttps://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/patient
- Productionhttps://api-prod.lobbie.com/lobbie/api/partner/v2/account/{accountId}/patient
curl -i -X GET \
'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/patient?firstName=John&lastName=Smith&email=example%40lobbie.com&active=true&cursor=string&limit=20' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
{ "nextCursor": "eyJ2Ijp7ImZpcnN0TmFtZSI6IkpvaG4ifSwiaWQiOjEyMzQ1fQ", "patients": [ { … } ] }