/providers/{NamespaceID}/{ProviderID}/{DimensionName}Master

From the service document you can see a list of dimension master data endpoints.

Each one of them extracts master data out of one individual column of a given model. The entity set name follows this convention: column name followed by "Master".

API Request Details

URL {BaseURL}/providers/{NamespaceID}/{ProviderID}/{DimensionName}Master
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 Response

{ 
    "@odata.context": "$metadata#AccountMaster", 
    "value": [ 
        { 
            	"ID": "400000",  
            	"Description": "REVENUE" 
        } 
}