Report Subscription - Retrieves subscriptions by report by ID

Retrieves subscriptions associated with a specific report identified by its ID.

get
Authorizations
Path parameters
reportIdstring · uuidRequired

Enter ID of the report for which subscriptions are requested.

Query parameters
versionstringOptional

The requested API version

Default: 1.0
Header parameters
embedfast-user-idstringOptional

Optional User Id

Responses
200
Success: Successfully retrieved subscriptions for the specified report.
get
GET /reports/{reportId}/subscriptions HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
[
  {
    "reportSubscriptionId": "123e4567-e89b-12d3-a456-426614174000",
    "subscriptionName": "text",
    "reportId": "123e4567-e89b-12d3-a456-426614174000",
    "bookmarkState": "text",
    "createdByUserId": "123e4567-e89b-12d3-a456-426614174000",
    "createdByUserEmail": "text",
    "schedule": "text",
    "subscribers": [
      "text"
    ],
    "subject": "text",
    "content": "text",
    "isActive": true,
    "reportPageName": "text",
    "startDateTime": "2025-06-27T10:04:10.257Z",
    "endDateTime": "2025-06-27T10:04:10.257Z",
    "timeZone": "text",
    "reportParameter": [
      {
        "name": "text",
        "value": "text"
      }
    ],
    "hasAttachment": true,
    "reportParameters": "text"
  }
]

Last updated