Retrieve a single purchase order for the location, including line items and subscriptions.
Security
PartnerApiKey and PartnerOAuth
- Mock serverhttps://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/location/{locationId}/order/{orderId}
- Productionhttps://api-prod.lobbie.com/lobbie/api/partner/v2/account/{accountId}/location/{locationId}/order/{orderId}
curl -i -X GET \
'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/location/{locationId}/order/1234' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'x-api-key: YOUR_API_KEY_HERE'Order retrieved successfully
Response
{ "appointmentId": 700, "createdAt": "2025-01-15T14:00:00Z", "id": 1234, "lineItems": [ { … } ], "locationId": 200, "patientId": 300, "paymentCustomerId": 400, "status": "PENDING", "updatedAt": "2025-01-15T14:00:00Z" }