entities
Creates, updates, deletes, gets or lists an entities resource.
Overview
| Name | entities |
| Type | Resource |
| Id | cloudflare.radar.entities |
Fields
The following fields are returned by SELECT queries:
- list
Successful response.
| Name | Datatype | Description |
|---|---|---|
ip | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | ip, format | Retrieves IP address information. |
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 |
|---|---|---|
format | string | Format in which results will be returned. |
ip | string (ip) | IP address. |
SELECT examples
- list
Retrieves IP address information.
SELECT
ip
FROM cloudflare.radar.entities
WHERE ip = '{{ ip }}'
AND format = '{{ format }}'
;