API: Export Data Values
Explanation of Export Data Value Parameters
- id [int](Required) - The unique Clear Impact Scorecard ID for the measure that data values are being retrieved for. Measure IDs can be found by downloading the measure list, or when editing a measure.
URL
https://api.resultsscorecard.com/api/datavalues/export
JSON Input
{
"siteCode": "abc",
"apiKey": "eEIzvy0kCu017+D1VjjjI1f52Vmbm+VF2FvO",
"ID": 555
}
JSON Output
{
"perfmeasureID": 555,
"values": [
{
"timePeriod": "Q1 2015",
"startDate": "2015-01-01T00:00:00",
"endDate": "2015-03-31T00:00:00",
"actualValue": 97,
"targetValue": 85,
"forecastValue": null
}
]
}