Moveworks webhooks API

The webhooks API from Moveworks — 1 operation(s) for webhooks.

Operations 1

POST /webhooks/v1/listeners/{listener_id}/notify Send a webhook to a webhook listener #

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/moveworks-webhooks-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 email required.

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

OpenAPI Specification

moveworks-webhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Webhook Listeners Webhooks API
  version: 1.0.0
servers:
- url: https://api.moveworks.ai
  description: https://api.moveworks.ai
- url: https://api-demo.moveworks.ai
  description: https://api-demo.moveworks.ai
- url: https://api.am-eu-central.moveworks.ai
  description: https://api.am-eu-central.moveworks.ai
- url: https://api.am-ca-central.moveworks.ai
  description: https://api.am-ca-central.moveworks.ai
- url: https://api.moveworksgov.ai
  description: https://api.moveworksgov.ai
- url: https://api.jp.moveworks.com
  description: https://api.jp.moveworks.com
- url: https://api.uk.moveworks.com
  description: https://api.uk.moveworks.com
- url: https://api.prod4.us.moveworks.com
  description: https://api.prod4.us.moveworks.com
- url: https://api.prod3.us.moveworks.com
  description: https://api.prod3.us.moveworks.com
tags:
- name: webhooks
paths:
  /webhooks/v1/listeners/{listener_id}/notify:
    post:
      operationId: send-a-webhook-to-a-webhook-listener
      summary: Send a webhook to a webhook listener
      description: Sends a webhook to a webhook listener. The listener must be defined in Agent Studio.
      tags:
      - webhooks
      parameters:
      - name: listener_id
        in: path
        description: The unique identifier of the webhook listener.
        required: true
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: API Key in the form of a JWT Bearer token.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK. The event was received successfully by the listener.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Webhooks_sendAWebhookToAWebhookListener_Response_200'
        '401':
          description: Unauthorized. The request lacks valid authentication credentials.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SendAWebhookToAWebhookListenerRequestUnauthorizedError'
        '404':
          description: Not Found. The specified listener_id does not exist. The response body is empty.
          content:
            application/json:
              schema:
                description: Any type
      requestBody:
        description: The arbitrary JSON payload to send to the webhook listener.
        content:
          application/json:
            schema:
              type: object
              additionalProperties:
                description: Any type
components:
  schemas:
    WebhooksV1ListenersListenerIdNotifyPostResponsesContentApplicationJsonSchemaError:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
          description: Details about the authorization failure.
      title: WebhooksV1ListenersListenerIdNotifyPostResponsesContentApplicationJsonSchemaError
    Webhooks_sendAWebhookToAWebhookListener_Response_200:
      type: object
      properties:
        message:
          type: string
          description: A confirmation message.
        status:
          type: string
          description: The status of the event receipt.
      title: Webhooks_sendAWebhookToAWebhookListener_Response_200
    SendAWebhookToAWebhookListenerRequestUnauthorizedError:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/WebhooksV1ListenersListenerIdNotifyPostResponsesContentApplicationJsonSchemaError'
      title: SendAWebhookToAWebhookListenerRequestUnauthorizedError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API Key in the form of a JWT Bearer token.