Retrieve location information by location ID. The location must belong to the account associated with the OAuth token.
Security
PartnerApiKey and PartnerOAuth
- Mock serverhttps://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/location/{locationId}
- Productionhttps://api-prod.lobbie.com/lobbie/api/partner/v2/account/{accountId}/location/{locationId}
curl -i -X GET \
'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/location/12345' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'x-api-key: YOUR_API_KEY_HERE'Location found and returned successfully
Response
{ "active": true, "address": { "address1": "123 Main Street", "address2": "Suite 100", "city": "Baltimore", "postalCode": "21202", "state": "MD" }, "createdAt": "2025-01-15T14:00:00Z", "id": 12345, "name": "Main Street Clinic", "phoneNumber": "5551234567", "storeId": "STORE123", "timeZone": "America/New_York" }