Files
resend-openapi-agent/skills/topics/SKILL.md
a2a-platform 0c9c0aa26d deploy
2026-06-27 01:06:13 +00:00

1.4 KiB

name, description
name description
topics-routes Handle 5 OpenAPI operation(s) under /topics for the topics route group.

topics API Routes

Handle 5 OpenAPI operation(s) under /topics for the topics route group.

Use the generated operation tools to make real API calls. Do not invent API responses. If a tool reports missing setup, return the exact setup field name to the caller. For write, update, or delete operations, state the intended action before calling the tool.

Operations

post_topics

  • Operation ID: post_topics
  • Route: POST /topics
  • Mode: WRITE
  • Summary: Create a new topic
  • Body: JSON request body accepted.

get_topics

  • Operation ID: get_topics
  • Route: GET /topics
  • Mode: READ
  • Summary: Retrieve a list of topics
  • Parameters:
    • limit in query
    • after in query
    • before in query

get_topics_id

  • Operation ID: get_topics_id
  • Route: GET /topics/{id}
  • Mode: READ
  • Summary: Retrieve a single topic
  • Parameters:
    • id in path required

patch_topics_id

  • Operation ID: patch_topics_id
  • Route: PATCH /topics/{id}
  • Mode: WRITE
  • Summary: Update an existing topic
  • Parameters:
    • id in path required
  • Body: JSON request body accepted.

delete_topics_id

  • Operation ID: delete_topics_id
  • Route: DELETE /topics/{id}
  • Mode: WRITE
  • Summary: Remove an existing topic
  • Parameters:
    • id in path required