agents_by_anthropic_key
Creates, updates, deletes, gets or lists an agents_by_anthropic_key
resource.
Overview
Name | agents_by_anthropic_key |
Type | Resource |
Id | digitalocean.genai.agents_by_anthropic_key |
Fields
The following fields are returned by SELECT
queries:
- genai_list_agents_by_anthropic_key
A successful response.
Name | Datatype | Description |
---|---|---|
agents | array | |
links | object | Links to other pages |
meta | object | Meta information about the data set |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
genai_list_agents_by_anthropic_key | select | uuid | page , per_page | List Agents by Anthropic Key. |
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 |
---|---|---|
uuid | string | Unique ID of Anthropic key (example: "123e4567-e89b-12d3-a456-426614174000") |
page | integer | Page number. (example: 1) |
per_page | integer | Items per page. (example: 1) |
SELECT
examples
- genai_list_agents_by_anthropic_key
List Agents by Anthropic Key.
SELECT
agents,
links,
meta
FROM digitalocean.genai.agents_by_anthropic_key
WHERE uuid = '{{ uuid }}' -- required
AND page = '{{ page }}'
AND per_page = '{{ per_page }}';