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.

Learn More

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.

PropertyData TypeComparisonListLogical
accountidNumber=, !=, >, <, >=, <=IN, NOT INAND, OR
accountNameString=, !=, LIKE, NOT LIKEIN, NOT INAND, OR
accountNumberString=, !=, LIKE, NOT LIKEIN, NOT INAND, OR
branchNameString=, !=, LIKE, NOT LIKEIN, NOT INAND, OR
cedantNameString=, !=, LIKE, NOT LIKEIN, NOT INAND, OR
locationsCountNumber=,!=, >, <, >=, <=IN, NOT INAND, OR
ownerNameString=, !=, LIKE, NOT LIKEIN, NOT IN
policyExpirationDateToYYYY-MM-DD=, !=, >, <, >=, <=AND, OR
producerNameString=, !=, LIKE, NOT LIKEIN, NOT INAND, OR
reportsCountNumber=, !=, >, <, >=, <=IN, NOT INAND, OR
resultsCountNumber=, !=, >, <, >=, <=IN, NOT INAND, OR
stampDateYYYY-MM-DD=, !=, >, <, >=, <=IN, NOT INAND, OR
underwriterNameString=, !=, LIKE, NOT LIKEIN, NOT INAND, OR
userId1String=, !=, LIKE, NOT LIKEIN, NOT INAND, OR
userId2String=, !=, LIKE, NOT LIKEIN, NOT INAND, OR
userId3String=, !=, LIKE, NOT LIKEIN, NOT INAND, OR
userId4String=, !=, LIKE, NOT LIKEIN, NOT INAND, OR
userText1String=, !=, LIKE, NOT LIKEIN, NOT INAND, OR
userText2String=, !=, LIKE, NOT LIKEIN, NOT INAND, 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