Report Subscription - Retrieves subscriptions by report by ID
Authorizations
Path parameters
reportIdstring · uuidRequired
Enter ID of the report for which subscriptions are requested.
Query parameters
versionstringOptionalDefault:
The requested API version
1.0
Header parameters
embedfast-user-idstringOptional
Optional User Id
Responses
200
Success: Successfully retrieved subscriptions for the specified report.
400
Bad Request: The request could not be processed due to invalid syntax or missing/incorrect parameters.
401
Unauthorized: Invalid credentials or missing/invalid authentication token.
404
Not Found: The specified report could not be found.
500
Internal Server Error: An unexpected error occurred or a server timeout.
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