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

1.5 KiB

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

webhooks API Routes

Handle 5 OpenAPI operation(s) under /webhooks for the webhooks 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_webhooks

  • Operation ID: post_webhooks
  • Route: POST /webhooks
  • Mode: WRITE
  • Summary: Create a new webhook
  • Body: JSON request body accepted.

get_webhooks

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

get_webhooks_webhook_id

  • Operation ID: get_webhooks_webhook_id
  • Route: GET /webhooks/{webhook_id}
  • Mode: READ
  • Summary: Retrieve a single webhook
  • Parameters:
    • webhook_id in path required

patch_webhooks_webhook_id

  • Operation ID: patch_webhooks_webhook_id
  • Route: PATCH /webhooks/{webhook_id}
  • Mode: WRITE
  • Summary: Update an existing webhook
  • Parameters:
    • webhook_id in path required
  • Body: JSON request body accepted.

delete_webhooks_webhook_id

  • Operation ID: delete_webhooks_webhook_id
  • Route: DELETE /webhooks/{webhook_id}
  • Mode: WRITE
  • Summary: Remove an existing webhook
  • Parameters:
    • webhook_id in path required