authors
Creates, updates, deletes, gets or lists an authors resource.
Overview
| Name | authors |
| Type | Resource |
| Id | cloudflare.ai.authors |
Fields
The following fields are returned by SELECT queries:
- list
Returns a list of authors
| Name | Datatype | Description |
|---|
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id | Searches Workers AI models by author or organization name. |
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 |
|---|---|---|
account_id | string | The Cloudflare account ID. |
SELECT examples
- list
Searches Workers AI models by author or organization name.
SELECT
*
FROM cloudflare.ai.authors
WHERE account_id = '{{ account_id }}' -- required
;