GET
/
events
/
{eventId}
/
reminders
curl --request GET \
  --url https://api.smokeball.com/events/{eventId}/reminders \
  --header 'Authorization: <api-key>' \
  --header 'x-api-key: <api-key>'
[
  {
    "offset": 10,
    "offsetTypeId": 1,
    "isAllDayReminder": false,
    "userIds": [
      "<string>"
    ]
  }
]

Authorizations

x-api-key
string
header
required
Authorization
string
header
required

Path Parameters

eventId
string
required

Response

200
application/json

When request is successful. Returns the collection of reminders.

The response is of type object[].