internet_services_top
Creates, updates, deletes, gets or lists an internet_services_top resource.
Overview
| Name | internet_services_top |
| Type | Resource |
| Id | cloudflare.radar.internet_services_top |
Fields
The following fields are returned by SELECT queries:
- list
Successful response.
| Name | Datatype | Description |
|---|---|---|
meta | object | |
top_0 | array |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | serviceCategory, limit, name, date, format | Retrieves top Internet services based on their rank. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
date | array | Filters results by the specified array of dates. |
format | string | Format in which results will be returned. |
limit | integer | Limits the number of objects returned in the response. |
name | array | Array of names used to label the series in the response. |
serviceCategory | array | Filters results by Internet service category. |
SELECT examples
- list
Retrieves top Internet services based on their rank.
SELECT
meta,
top_0
FROM cloudflare.radar.internet_services_top
WHERE serviceCategory = '{{ serviceCategory }}'
AND limit = '{{ limit }}'
AND name = '{{ name }}'
AND date = '{{ date }}'
AND format = '{{ format }}'
;