/administration/Namespace(NamespaceID='{ID}')/Providers

This endpoint allows you to view all the providers available for the specified namespace.

In this context, a provider corresponds to a model which is available on an SAP Analytics Cloud system

API Request Details

URL {BaseURL}/administration/Namespaces(NamespaceID='{ID}')/Providers
Note
Make sure to replace NamespaceID='{ID}' with an actual namespace ID.
Request Type GET
Content Type application/json

Sample Request

https://your-sac-tenant-url.cloud/api/v1/dataexport/administration/Namespaces(NamespaceID='sac')/Providers

Sample Usage

{ 
    "@odata.context": "$metadata#Providers", 
    "value": [ 
        { 
            "ProviderID": "ProviderA", 
            "ProviderName": "Market_Research", 
            "NamespaceID": "sac", 
            "Description": "Market research from 2021", 
            "ServiceURL": "{BaseURL}/providers/sac/ProviderA/" 
        }, 
        { 
            "ProviderID": "ProviderB", 
            "ProviderName": "Financial_Planning", 
            "NamespaceID": "sac", 
            "Description": "Financial Planning from 2021", 
            "ServiceURL": "{BaseURL}/providers/sac/ProviderB/" 
        } 
] 
}