/providers/{NamespaceID}/{ProviderID}/FactData

This endpoint returns the fact data for the specified provider.

API Request Details

URL {BaseURL}/providers/{NamespaceID}/{ProviderID}/FactData
Note
Make sure to replace {NamespaceID} and {ProviderID} with the correct IDs.
Request Type GET
Content Type application/json

The reponse can also be generated in .CSV format using the $format=text/csv parameter in the request.

Sample Request

https://your-sac-tenant-url.cloud/api/v1/dataexport/providers/sac/QWERTY123456/FactData

Sample Response

{ 
    "@odata.context": "$metadata#FactData", 
    "value": [ 
        { 
            "Version": "public.Actual", 
            "Account": "400000", 
            "Region": "USA", 
            "Product": "Mountain_Bike", 
            "Currency": "CAD", 
            "Time": "202201", 
            "MyMeasure1": 10557.33 
        } 
}