Subscribes the specified users to the specified report. All existing subscriptions remain intact.
The request consumes and produces an application/json
payload.
POST | SaaS | https://{your-environment-id}.live.dynatrace.com/api/config/v1/reports/{id}/subscribe |
Environment ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/config/v1/reports/{id}/subscribe |
To execute this request, you need an access token with WriteConfig
scope.
To learn how to obtain and use it, see Tokens and authentication.
The ID of the report to subscribe to.
The JSON body of the request. Contains a list of new subscribers.
ReportSubscriptions
objectConfiguration of a report subscription.
A list of the recipients.
You can specify email addresses or Dynatrace user IDs here.
The schedule of the subscription.
MONTH
WEEK
This is a model of the request body, showing the possible elements. It has to be adjusted for usage in an actual request.
{"recipients": ["demo@email.com","demo2@email.com"],"schedule": "WEEK"}
Success. The new subscriptions have been created. The response body contains the report ID.
EntityShortRepresentation
objectThe short representation of a Dynatrace entity.
A short description of the Dynatrace entity.
The ID of the Dynatrace entity.
The name of the Dynatrace entity.
{"description": "Dynatrace entity for the REST API example","id": "6a98d7bc-abb9-44f8-ae6a-73e68e71812a","name": "Dynatrace entity"}
In this example, the request updates the report from the POST request example. It adds the weekly subscriptions for the Dynatrace user ryan.white.
The API token is passed in the Authorization header.
curl -X POST \https://mySampleEnv.live.dynatrace.com/api/config/v1/reports/f78f78f5-00bd-4cc1-9e8b-ecfd1e379a73/subscribe \-H 'Accept: application/json' \-H 'Authorization: Api-Token dt0c01.abc123.abcdefjhij1234567890' \-H 'Content-Type: application/json' \-d '{"schedule": "WEEK","recipients": ["ryan.white"]}'
https://mySampleEnv.live.dynatrace.com/api/config/v1/reports/f78f78f5-00bd-4cc1-9e8b-ecfd1e379a73/subscribe
{"schedule": "WEEK","recipients": ["ryan.white"]}
{"id": "f78f78f5-00bd-4cc1-9e8b-ecfd1e379a73"}
201