Update agent API key
documentedUpdate an agent API key.
PUT /v2/gen-ai/agents/{agent_uuid}/api_keys/{api_key_uuid}Gradient AI Platformno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.digitalocean.com/v2/gen-ai/agents/{{$agent_uuid}}/api_keys/{{$api_key_uuid}}" \
-X PUT \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{\"agent_uuid\": \"{{$agent_uuid}}\", \"api_key_uuid\": \"{{$api_key_uuid}}\", \"name\": \"{{$name}}\"}'