Skip to content

Get notification group by ID

Request

Retrieve detailed information about a specific notification group.

Security
PartnerApiKey and PartnerOAuth
Path
groupIdinteger, (int64)required

Notification group ID

Example:12345
accountIdinteger, (int64)required

Account identifier

curl -i -X GET \
  'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/notification-group/12345' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Notification group found and returned successfully

Bodyapplication/json
appointmentIdinteger, (int64)

Related appointment ID if applicable

Example:111
createdAtstring, (date-time)

Creation timestamp (UTC)

Example:"2025-01-15T14:00:00Z"
formGroupIdinteger, (int64)

Related form group ID if applicable

Example:222
idinteger, (int64)

Unique notification group identifier

Example:12345
lastEmailSentAtstring, (date-time)

When the last email was sent from this group

Example:"2025-01-15T09:00:00Z"
lastSmsSentAtstring, (date-time)

When the last SMS was sent from this group

Example:"2025-01-15T09:00:00Z"
notificationCountinteger, (int32)

Number of notifications in this group

Example:5
paymentRequestIdinteger, (int64)

Related payment request ID if applicable

Example:333
Response
{ "appointmentId": 111, "createdAt": "2025-01-15T14:00:00Z", "formGroupId": 222, "id": 12345, "lastEmailSentAt": "2025-01-15T09:00:00Z", "lastSmsSentAt": "2025-01-15T09:00:00Z", "notificationCount": 5, "paymentRequestId": 333 }