Skip to main content

feedback

Creates, updates, deletes, gets or lists a feedback resource.

Overview

Namefeedback
TypeResource
Idcloudflare.accounts.feedback

Fields

The following fields are returned by SELECT queries:

Returns feedback statistics.

NameDatatypeDescription
countnumber
end_atstring (date-time)
start_atstring (date-time)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_idstart_at, end_at

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.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.
end_atstring (date-time)
start_atstring (date-time)

SELECT examples

Returns feedback statistics.

SELECT
count,
end_at,
start_at
FROM cloudflare.accounts.feedback
WHERE account_id = '{{ account_id }}' -- required
AND start_at = '{{ start_at }}'
AND end_at = '{{ end_at }}'
;