Resemble AI subpackage_agentWebhooks API

The subpackage_agentWebhooks API from Resemble AI — 2 operation(s) for subpackage_agentwebhooks.

Operations 5

GET /agents/{agent_uuid}/webhooks List agent webhooks #
POST /agents/{agent_uuid}/webhooks Create agent webhook #
GET /agents/{agent_uuid}/webhooks/{webhook_uuid} Get agent webhook #
DELETE /agents/{agent_uuid}/webhooks/{webhook_uuid} Delete agent webhook #
PATCH /agents/{agent_uuid}/webhooks/{webhook_uuid} Update agent webhook #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/resemble-ai-subpackage-agentwebhooks-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

resemble-ai-subpackage-agentwebhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference subpackage_account Subpackage Agent Webhooks API
  version: 1.0.0
servers:
- url: https://f.cluster.resemble.ai
- url: https://app.resemble.ai/api/v2
tags:
- name: subpackage_agentWebhooks
paths:
  /agents/{agent_uuid}/webhooks:
    get:
      operationId: list-agent-webhooks
      summary: List agent webhooks
      description: List all webhooks for an agent
      tags:
      - subpackage_agentWebhooks
      parameters:
      - name: agent_uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List of webhooks
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent_Webhooks_listAgentWebhooks_Response_200'
    post:
      operationId: create-agent-webhook
      summary: Create agent webhook
      description: Create a new webhook for an agent
      tags:
      - subpackage_agentWebhooks
      parameters:
      - name: agent_uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Webhook created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent_Webhooks_createAgentWebhook_Response_200'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                webhook_type:
                  $ref: '#/components/schemas/AgentsAgentUuidWebhooksPostRequestBodyContentApplicationJsonSchemaWebhookType'
                webhook_config:
                  $ref: '#/components/schemas/AgentsAgentUuidWebhooksPostRequestBodyContentApplicationJsonSchemaWebhookConfig'
              required:
              - webhook_type
              - webhook_config
  /agents/{agent_uuid}/webhooks/{webhook_uuid}:
    get:
      operationId: get-agent-webhook
      summary: Get agent webhook
      description: Get details of a specific webhook
      tags:
      - subpackage_agentWebhooks
      parameters:
      - name: agent_uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: webhook_uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Webhook details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent_Webhooks_getAgentWebhook_Response_200'
    delete:
      operationId: delete-agent-webhook
      summary: Delete agent webhook
      description: Delete a webhook
      tags:
      - subpackage_agentWebhooks
      parameters:
      - name: agent_uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: webhook_uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Webhook deleted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent_Webhooks_deleteAgentWebhook_Response_200'
    patch:
      operationId: update-agent-webhook
      summary: Update agent webhook
      description: Update an existing webhook
      tags:
      - subpackage_agentWebhooks
      parameters:
      - name: agent_uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: webhook_uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Webhook updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent_Webhooks_updateAgentWebhook_Response_200'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                webhook_config:
                  $ref: '#/components/schemas/AgentsAgentUuidWebhooksWebhookUuidPatchRequestBodyContentApplicationJsonSchemaWebhookConfig'
components:
  schemas:
    AgentsAgentUuidWebhooksWebhookUuidGetResponsesContentApplicationJsonSchemaItem:
      type: object
      properties: {}
      title: AgentsAgentUuidWebhooksWebhookUuidGetResponsesContentApplicationJsonSchemaItem
    Agent_Webhooks_listAgentWebhooks_Response_200:
      type: object
      properties:
        success:
          type: boolean
        items:
          type: array
          items:
            $ref: '#/components/schemas/AgentsAgentUuidWebhooksGetResponsesContentApplicationJsonSchemaItemsItems'
      title: Agent Webhooks_listAgentWebhooks_Response_200
    AgentsAgentUuidWebhooksGetResponsesContentApplicationJsonSchemaItemsItems:
      type: object
      properties: {}
      title: AgentsAgentUuidWebhooksGetResponsesContentApplicationJsonSchemaItemsItems
    AgentsAgentUuidWebhooksWebhookUuidPatchResponsesContentApplicationJsonSchemaItem:
      type: object
      properties: {}
      title: AgentsAgentUuidWebhooksWebhookUuidPatchResponsesContentApplicationJsonSchemaItem
    Agent_Webhooks_deleteAgentWebhook_Response_200:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
      title: Agent Webhooks_deleteAgentWebhook_Response_200
    AgentsAgentUuidWebhooksPostRequestBodyContentApplicationJsonSchemaWebhookConfig:
      type: object
      properties: {}
      title: AgentsAgentUuidWebhooksPostRequestBodyContentApplicationJsonSchemaWebhookConfig
    AgentsAgentUuidWebhooksWebhookUuidPatchRequestBodyContentApplicationJsonSchemaWebhookConfig:
      type: object
      properties: {}
      title: AgentsAgentUuidWebhooksWebhookUuidPatchRequestBodyContentApplicationJsonSchemaWebhookConfig
    Agent_Webhooks_createAgentWebhook_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/AgentsAgentUuidWebhooksPostResponsesContentApplicationJsonSchemaItem'
        message:
          type: string
      title: Agent Webhooks_createAgentWebhook_Response_200
    Agent_Webhooks_getAgentWebhook_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/AgentsAgentUuidWebhooksWebhookUuidGetResponsesContentApplicationJsonSchemaItem'
      title: Agent Webhooks_getAgentWebhook_Response_200
    AgentsAgentUuidWebhooksPostResponsesContentApplicationJsonSchemaItem:
      type: object
      properties: {}
      title: AgentsAgentUuidWebhooksPostResponsesContentApplicationJsonSchemaItem
    AgentsAgentUuidWebhooksPostRequestBodyContentApplicationJsonSchemaWebhookType:
      type: string
      enum:
      - pre_call
      - post_call
      title: AgentsAgentUuidWebhooksPostRequestBodyContentApplicationJsonSchemaWebhookType
    Agent_Webhooks_updateAgentWebhook_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/AgentsAgentUuidWebhooksWebhookUuidPatchResponsesContentApplicationJsonSchemaItem'
        message:
          type: string
      title: Agent Webhooks_updateAgentWebhook_Response_200
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API token from https://app.resemble.ai/account/api