POST /Info/NamedFilters/:cube
Returns information about the named filters available to the given cube.
URL Parameters
cube | Required. Logical name of the cube. This name can include slashes; see “Use of Slashes in Cube and KPI Names,” earlier in this book. |
Request Body Details
This service ignores the request body.
Example Request
Request Method:
POST
Request URL:
http://localhost:52773/api/deepsee/v1/Info/NamedFilters/:holefoods
For comments on the possible forms of the URL, see “Introduction to the Business Intelligence REST API” in the chapter “Introduction and Samples.”
Example Response
{ "Info": {"Error":"","BaseCube":"holefoods"}, "Result": {"NamedFilters": [ {"name":"Sample Named Filter", "description":"", "spec":"[Product].[P1].[Product Category].&[Seafood]","cube":"HOLEFOODS"} ] } }
Copy code to clipboard
In the response object, the Result property contains a property called NamedFilters, which contains an array of objects, one for each named filter.
For information that applies to all response objects, see the discussion at the start of this reference.