Accelerate the Value of Data

List Available Shared Models

This API lists all the shared models that are available for download to the specified tenant.

Request

GET https://ml-model-share.reltio.com/api/v1.0/{environment}/{tenantId}/models
Table 1. Parameters
Name Type Required Details

environment

path

Yes

Environment where the shared model will be downloaded.

Example: test.

tenantId

path

Yes

Tenant where the shared model will be downloaded.

Example: TestTenant.

Response

Sample

Content-Type:application/json

[
  {
    "id": "3b85fe58-1bde-4cbe-9706-ca29f0f82ff4",
    "targetTenants": {
      "dev": [
        "DevTenant"
      ],
      "test": [
        "TestTenant"
      ]
    },
    "name": "Test HCP",
    "description": "Test HCP Model",
    "createdBy": "john.smith@yourcompany.com",
    "createdTime": 1611048255142,
    "environment": "dev",
    "tenant": "DevTenant",
    "flowId": "06112371-23f6-4885-a9c8-19df4672a243"
  },
  {
    "id": "5e7bb737-4c97-4260-95c7-dc6988068fbf",
    "targetTenants": {
      "dev": [
        "DevTenant"
      ],
      "test": [
        "TestTenant"
      ]
    },
    "name": "Test HCO",
    "description": "Test HCO Model",
    "createdBy": "john.smith@yourcompany.com",
    "createdTime": 1611048255142,
    "environment": "dev",
    "tenant": "DevTenant",
    "flowId": "06112371-23f6-4885-a9c8-19df4672a243"
  }
]