Retrieve detailed information about a specific notification.
Security
PartnerApiKey and PartnerOAuth
- Mock serverhttps://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/notification/{notificationId}
- Productionhttps://api-prod.lobbie.com/lobbie/api/partner/v2/account/{accountId}/notification/{notificationId}
curl -i -X GET \
'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/notification/12345' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'x-api-key: YOUR_API_KEY_HERE'Notification found and returned successfully
Email delivery status
Enum:"UNPROCESSED""PROCESSED_SENT""PROCESSED_UNSENT"
Example:"PROCESSED_SENT"
When the notification is scheduled to be sent
Example:"2025-01-15T09:00:00Z"
SMS delivery status
Enum:"UNPROCESSED""PROCESSED_SENT""PROCESSED_UNSENT"
Example:"PROCESSED_SENT"
Response
{ "appointmentId": 111, "createdAt": "2025-01-15T14:00:00Z", "emailProcessedAt": "2025-01-15T09:00:05Z", "emailStatus": "PROCESSED_SENT", "formGroupId": 222, "id": 12345, "notificationGroupId": 999, "patientId": 67890, "scheduledAt": "2025-01-15T09:00:00Z", "smsProcessedAt": "2025-01-15T09:00:05Z", "smsStatus": "PROCESSED_SENT", "type": "APPOINTMENT_CONFIRMATION" }