Get Datahub Metrics Details

get

/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/{mode}/metrics

API to retrieve Datahub metrics dataset containing study-level and operational metrics. You can find more details about the dataset on [Metrics dataset](https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/dh-metrics-dataset.html).

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : DataHubSingleReportDto
Type: object
Single report result of the dynamic query execution
Show Source
Nested Schema : columns
Type: array
Names of the columns included in each row
Show Source
  • Names of the columns included in each row
    Example: ["STUDY_TITLE","STUDY_REFNAME","STUDY_ID"]
Example:
[
    "STUDY_TITLE",
    "STUDY_REFNAME",
    "STUDY_ID"
]
Nested Schema : data
Type: array
Row data aligned with the columns list
Show Source
  • Row data aligned with the columns list
    Example: ["My study","MY_STUDY","E8230E450E844721A67F8EBFF71B160D"]
Example:
[
    "My study",
    "MY_STUDY",
    "E8230E450E844721A67F8EBFF71B160D"
]
Examples

400 Response

'Missing / invalid data'
Body ()
Root Schema : DataHubResponse
Type: object
Standard response envelope containing status, optional result payload, optional error information and a version number.
Show Source
Nested Schema : errorData
Type: object
Error details when status is error.
Example:
{
    "errorCode":"C1-003",
    "errorMessage":"Validation failed",
    "details":{
        "field":"limit",
        "message":"limit must be >= 1"
    }
}
Nested Schema : result
Type: object
Payload returned by the API when status is success.
Example:
{
    "message":"Operation succeeded"
}
Examples

Back to Top