Pre-Release May 2025
Highlights
The May release introduces updates to the Admin Data, Risk Data, and Risk View APIs.
Moody's publishes preliminary information to inform stakeholders ahead of the targeted Intelligent Risk Platform update. Note that these described features are not guaranteed for the next update or any subsequent updates and may be changed without notice. The definitive list of features will be provided in the Changelogs at the time of the official release.
Archives
Search Archives
The List Archives by Server Instance operation returns a list of the archived databases on the specified managed SQL Server instance.
This operation now supports pagination of the returned data.
Get Archive
The Get Archive operation returns detailed information about the specified archive.
An archive is a copy of a database that is stored in Data Vault.
This operation now returns Data Vault details.
{
"archiveId": 5555,
"serverName": "sql-instance-1",
"name": "string",
"databaseType": "EDM",
"sizeInMb": 1833,
"createDate": "2025-04-10T20:45:28.775Z",
"expiryDate": "2025-09-10T20:45:28.775Z",
"createdBy": "[email protected]",
"downloadUris": [
"string"
]
}
Databases
List Databases
The List Databases operation (/databridge/v1/sql-instances/{instanceName}/databases
) returns information about databases on the specified managed server instance including information about its size, status, and owner.
Access to information about databases (EDMs, RDMs, and custom databases) hosted on Data Bridge is managed by means of tenant security and role-based permissions. Tenant security enables organizations to segregate data and limit access based on business need. If enabled, tenant security limits access to managed databases based on group membership. Secured servers and databases can only be accessed by their owners or by groups explicitly granted access to those resources.
This operation now supports an optional adminaccess
query parameter, which enables Data Bridge Admin role to view a complete list of databases regardless of ownership or tenant security access controls.
curl --request GET \
--url https://api-euw1.rms.com/databridge/v1/sql-instances/89/Databases?adminaccess=true \
--header 'accept: application/json'
This parameter is optional. If unspecified, a value of false
is assumed. A value of true
must be specified to view information about all databases on the server. The data returned depends on two factors: 1) tenant security and 2) role of the client application.
Admin Access Parameter | Tenant Security | DB Admin | Consumer | Contributor |
---|---|---|---|---|
false / Undefined | OFF | All databases | All databases | All databases |
true | OFF | All databases | 403 Forbidden | 403 Forbidden |
false / Undefined | ON | Accessible databases | Accessible databases | Accessible databases |
true | ON | All databases | 403 Forbidden | 403 Forbidden |
Tenant security is an optional Data Bridge feature that must be enabled by a Data Admin. If tenant security is not enabled, client applications can generally view all databases regardless of role. To learn more, see Tenant Security
Data Bridge supports three roles: Data Bridge Admin, Consumer, and Contributor. To learn more, see Access Controls.
- Client applications assigned the Data Bridge Admin role that pass a value of
true
in theadminaccess
query parameter can view all databases on the specified server. If the parameter isfalse
or undefined, the API returns information only about databases that are accessible to that client application. - Client applications assigned the Consumer or Contributor role cannot view all databases. If a Consumer or Contributor client passes a value of
true
in theadminaccess
query parameter, the API returns a403 Forbidden
response.