/filters/{id}/dimensions
GET
Return a list of all dimensions which are going to be used to filter on
Parameters
| Name | Type | Description |
|---|---|---|
| id | path | The unique filter ID for customising a dataset |
| limit | query | Limit the number of items that will be returned. Defaults to 20 and capped at 1000 |
| offset | query | Starting index of the items array that will be returned. By default it is zero, meaning that the returned items will start from the beginning. |
Responses
200: A list of dimension URLs
Example value
{
"count": 0,
"items": [
{
"filter": {
"href": "string",
"id": "string"
},
"id": "string",
"name": "string",
"options": {
"href": "string",
"id": "string"
},
"self": {
"href": "string",
"id": "string"
}
}
],
"limit": 0,
"offset": 0,
"total_count": 0
}