Release information
Advanced Identity Cloud tenant environments each provide the following information about their status in the release process:
-
The current release version for that environment. This is available in all tenant environments.
-
The date and time of the next scheduled regular channel release to that environment. This is available in tenant environments that share promoted configuration (development, UAT[1], staging, and production).
View release information using the admin console
The easiest way to view release information about your tenant environments is to use the admin console.
-
In the Advanced Identity Cloud admin console, open the TENANT menu (upper right), then go to Tenant Settings > Details.
-
View the current release version under Identity Cloud Version.
You can also view the release version in the page footnotes at the bottom of most admin console pages, excluding editors (for example, the journey or hosted pages editors).
-
View the next regular channel release date and time in the banner at the top of the page.
View release information using the API
You can use the API to view release information about your tenant environments. You might want to do this for these reasons:
-
To create monitoring alerts when release information changes.
-
To track the release information of your tenant environments in a single dashboard.
-
To track the 7-day release deferral period for the next regular channel release to your production environment.
Release API endpoint
Advanced Identity Cloud provides the Release API endpoint to let you track release information.
Authenticate to the release API endpoint
To authenticate to the release API endpoint, use an access token created with the following scope:
| Scope | Description |
|---|---|
|
Full access to the release API endpoint. |
View release information
To view the release information in any tenant environment:
-
Get an access token created with the
fr:idc:release:*scope. -
Get the release information from the
/environment/releaseendpoint:$ curl \ --request GET 'https://<tenant-env-fqdn>/environment/release' \(1) --header 'Authorization: Bearer <access-token>' (2)1 Replace <tenant-env-fqdn> with the FQDN of your tenant environment. 2 Replace <access-token> with the access token. -
The response format depends on the type of tenant environment:
-
For sandbox[2] environments:
Show response
{ "currentVersion": "15374.0", (1) }1 The current release version of the tenant environment. -
For environments that share promoted configuration (development, UAT[1], staging, and production):
Show response
{ "currentVersion": "15158.7", (1) "nextUpgrade": "2024-10-29T14:00:00Z" (2) }1 The current release version of the tenant environment. 2 The date and time of the next scheduled regular channel release to the tenant environment, taking into account your 7-day release deferral period.
-