2025.10.e
Highlights
The 2025.10.e release introduces the Autoselect API and updates to Admin Data API and Risk Data API.
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.
Accumulation API
Create Accumulation Job
The Create Accumulation Job operation initiates a job to create an accumulation analysis based on the specified business hierarchy, account, account variation, portfolio, or portfolio variation.
The request body now accepts the tagIds
parameters, an array of tag IDs that identify the keywords applied to this accumulation.
This operation now accepts a tags
array in the settings
object:
"settings": {
..
"tagIds": [ int32 ],
....
}
Admin Data API
Get Databases by Snapshot
The Get Database by Snapshot operation returns the specified database within a snapshot.
This operation now accepts a snapshotId
path parameter. (The operation formerly accepted an awsSnaphotId
parameter.)
The response object has been updated to return the exposureSetId
and exposureSetName
. The response object no longer returns the expiresAt
property.
{
"snapshotId": 2435,
"databaseSnapshotId": 40968891,
"databaseName": "wc_hxbz",
"sizeInMb": "142",
"serverType": "databridge",
"serverName": "databridge-1",
"owner": "[email protected]",
"databaseType": "Edm",
"exposureSetId": 24118682,
"exposureSetName": "wc",
"exposureName": "wc",
"createdAt": "2025-09-30 04:05:38.00",
"createdBy": "[email protected]"
}
The response object has been updated to return the exposureSetId
and exposureSetName
. The response object no longer returns the expiresAt
property.
Risk Data API
Search Accounts by Portfolio
The Search Accounts by Portfolio operation returns a list of accounts linked to the specified portfolio.
This operation returns an object that includes information about the accounts tied to a portfolio.
[
"accountId": 0,
"accountName": "string",
"account`Number`": "string",
"cedant": {
"cedantId": 22,
"cedantName": "CSW"
},
"producer": {
"producerId": 3,
"producerName": "rena"
},
"underwriter": {
"underwriterId": 45,
"underwriterName": "TSR"
},
"branch": {
"branchId": 22,
"branchName": "London"
},
"userId1": "string",
"userId2": "string",
"userId3": "string",
"userId4": "string",
"userText1": "string",
"userText2": "string",
"createDate": "string",
"stampDate": "string",
"isValid": true,
"uri": "string",
"tagIds": [
0
]
}]
This operation supports response filtering based the value of a subset of properties. Depending on the property, you may use a combination of comparison operators, list operators, and logical operators.
Property | Data Type | Comparison | List | Logical |
---|---|---|---|---|
accountid | Number | = , != , > , < , >= , <= | IN , NOT IN | AND , OR |
accountName | String | = , != , LIKE , NOT LIKE | IN , NOT IN | AND , OR |
accountNumber | String | = , != , LIKE , NOT LIKE | IN , NOT IN | AND , OR |
branchName | String | = , != , LIKE , NOT LIKE | IN , NOT IN | AND , OR |
cedantName | String | = , != , LIKE , NOT LIKE | IN , NOT IN | AND , OR |
locationsCount | Number | = ,!= , > , < , >= , <= | IN , NOT IN | AND , OR |
ownerName | String | = , != , LIKE , NOT LIKE | IN , NOT IN | |
policyExpirationDateTo | YYYY-MM-DD | = , != , > , < , >= , <= | AND , OR | |
producerName | String | = , != , LIKE , NOT LIKE | IN , NOT IN | AND , OR |
reportsCount | Number | = , != , > , < , >= , <= | IN , NOT IN | AND , OR |
resultsCount | Number | = , != , > , < , >= , <= | IN , NOT IN | AND , OR |
stampDate | YYYY-MM-DD | = , != , > , < , >= , <= | IN , NOT IN | AND , OR |
underwriterName | String | = , != , LIKE , NOT LIKE | IN , NOT IN | AND , OR |
userId1 | String | = , != , LIKE , NOT LIKE | IN , NOT IN | AND , OR |
userId2 | String | = , != , LIKE , NOT LIKE | IN , NOT IN | AND , OR |
userId3 | String | = , != , LIKE , NOT LIKE | IN , NOT IN | AND , OR |
userId4 | String | = , != , LIKE , NOT LIKE | IN , NOT IN | AND , OR |
userText1 | String | = , != , LIKE , NOT LIKE | IN , NOT IN | AND , OR |
userText2 | String | = , != , LIKE , NOT LIKE | IN , NOT IN | AND , OR |
Query parameters can be sorted by the following query parameter values: accountId
, accountName
, accountNumber
, branchName
, cedantName
, locationsCount
, ownerName
, policyExpirationDate
, producerName
, reportsCount
, resultsCount
, stampDate
, underwriterName
, userId1
, userId2
, userId3
, userId4
, userText1
, userText2