Returns the latest stable, previous stable, and custom RUM JavaScript versions configured on the tenant.
| GET | SaaS | https://{your-environment-id}.live.dynatrace.com/api/v1/rum/jsConfiguredVersions |
| Environment ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/v1/rum/jsConfiguredVersions |
To execute this request, you need an access token with RumJavaScriptTagManagement scope.
To learn how to obtain and use it, see Tokens and authentication.
The request doesn't provide any configurable parameters.
| Code | Type | Description |
|---|---|---|
| 200 | Configured | Success |
| 4XX | Error | Client side error. |
| 5XX | Error | Server side error. |
ConfiguredVersions objectConfigured LATEST_STABLE, PREVIOUS_STABLE and CUSTOM RUM JavaScript versions.
| Element | Type | Description |
|---|---|---|
| custom | integer | The custom configured version of the RUM JavaScript. |
| latestIE11Supported | integer | The latest IE11 supported version of the RUM JavaScript. |
| latestIESupported | integer | The latest IE7-10 supported version of the RUM JavaScript. |
| latestStable | integer | The latest stable version of the RUM JavaScript. |
| previousStable | integer | The previous stable version of the RUM JavaScript. |
{"latestStable": 10156181011154334,"previousStable": 10156181011154332,"latestIESupported": 10155181011154332,"custom": 10156181011154330}
In this example, the request inquires the versions of the RUM JavaScript configured on the tenant.
The API token is passed in the Authorization header.
curl -X GET \https://mySampleEnv.live.dynatrace.com/api/v1/rum/jsConfiguredVersions \-H 'Authorization: Api-Token dt0c01.abc123.abcdefjhij1234567890'
https://mySampleEnv.live.dynatrace.com/api/v1/rum/jsConfiguredVersions
{"latestStable": 10156181011154334,"previousStable": 10156181011154332,"latestIESupported": 10155181011154332,"custom": 10156181011154330}
200