April, 2024

🥥

Highlights

The April 2024 release of the Risk Modeler introduces support for filtering responses by SQL version.

  • The Administer EDM operation now supports 2016 for sqlVersion query parameter.
  • The Export Data Module to File operation now supports 2016 for sqlVersionquery parameter.
  • The Get Worflows operation now supports the entitlement query parameter.

Learn More

Administer EDM

The Administer EDM operation now supports 2016 forsqlVersion query parameter in the EDM download request.

The sqlVersion parameter accepts the following supported values: 2014, 2016, 2019.

Export Data Module to File

The Export Data Module to File operation now supports 2016 forsqlVersion query parameter in the download request of EDM or RDM.

The sqlVersion parameter accepts the following supported values: 2014, 2016, 2019.

Request Body: Download RDM

{
    "analysisIds": [
        12091
    ],
    "createnew": true,
    "exportFormat": "BAK",
    "exportType": "RDM",
    "rdmName": "test_pr_2016_11542",
    "sqlVersion": 2016,
    "type": "ResultsExportInputV2"
}

Request Body: EDM2EDM with download = true

{
    "createnew": true,
    "destinationDatasource": "test11March_2016_11543",
    "download": true,
    "exportFormat": "BAK",
    "exportOptions": {
        "exportAccounts": true,
        "exportLocations": true,
        "exportPerilDetailsInfo": true,
        "exportPolicies": true,
        "exportReinsuranceInfo": true,
        "exportTreaties": true
    },
    "preserveIds": false,
    "exportType": "EDM",
    "exposureIds": [
        1
    ],
    "exposureType": "PORTFOLIO",
    "sourceDatasource": "test_ak_1101",
    "sqlVersion": "2016",
    "type": "ExposureExportInput"
}

Workflow Resource

The Get Worflows operation now supports a new entitlement query parameter.

The entitlement parameter accepts two possible values: RI-RISKMODELER or RI-UNDERWRITEIQ.

Request Body:

{
    "totalMatchCount": 1,
    "workflows": [
        {
            "id": 22898858,
            "userName": "[email protected]",
            "status": "RUNNING",
            "submitTime": "2024-04-03T00:01:44.269Z",
            "startTime": "2024-04-03T00:01:48Z",
            "name": "CedeTask",
            "type": "CEDE_IMPORT",
            "progress": 20,
            "priority": "medium",
            "entitlement": "RI-UNDERWRITEIQ",
            "resourceGroupId": "8b7d8113-02ee-4849-8580-7f30b326ff1f",
            "jobs": [
                {
                    "id": "fd40ce9a-51ec-496d-8e29-25451a65690e",
                    "taskId": 1,
                    "workflowId": 22898858,
                    "status": "Running",
                    "submitTime": "2024-04-03T00:01:48.624Z",
                    "createdAt": "2024-04-03T00:01:44.263Z",
                    "name": "CEDE_IMPORT",
                    "input": {
                        "name": "CEDE_IMPORT",
                        "resourceUri": "/platform/riskdata/v1/exposuresets/2277363"
                    },
                    "output": {},
                    "priorJobs": [],
                    "percentComplete": 20,
                    "continueOnFailure": false
                }
            ],
            "summary": {},
            "output": {},
            "messages": []
        }
    ]
}