UiPath · Arazzo Workflow

UiPath Find and Remove a Webhook

Version 1.0.0

Locate a webhook by its target URL and delete the subscription.

1 workflow 1 source API 1 provider
View Spec View on GitHub AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTestingArazzoWorkflows

Provider

uipath

Workflows

cleanup-webhook
Resolve a webhook by URL and delete it.
Lists webhooks filtered to the supplied target URL to find the subscription ID, then deletes that webhook.
2 steps inputs: folderId, targetUrl outputs: deletedWebhookId
1
findWebhook
List webhooks filtered to the supplied target URL to resolve the ID of the subscription to delete.
2
deleteWebhook
Permanently delete the resolved webhook subscription by its ID so the endpoint no longer receives notifications.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: UiPath Find and Remove a Webhook
  summary: Locate a webhook by its target URL and delete the subscription.
  description: >-
    A teardown pattern for Orchestrator event integrations. The workflow lists
    the webhook subscriptions filtered to a target URL to resolve the numeric ID
    of the subscription to remove, then deletes that webhook so the endpoint stops
    receiving event notifications. Every step spells out its request inline so the
    flow can be read and executed without opening the underlying OpenAPI
    description.
  version: 1.0.0
sourceDescriptions:
- name: webhooksApi
  url: ../openapi/uipath-webhooks-api-openapi.yml
  type: openapi
workflows:
- workflowId: cleanup-webhook
  summary: Resolve a webhook by URL and delete it.
  description: >-
    Lists webhooks filtered to the supplied target URL to find the subscription
    ID, then deletes that webhook.
  inputs:
    type: object
    required:
    - folderId
    - targetUrl
    properties:
      folderId:
        type: integer
        description: Numeric folder ID used as the organization unit context.
      targetUrl:
        type: string
        description: The target URL of the webhook subscription to remove.
  steps:
  - stepId: findWebhook
    description: >-
      List webhooks filtered to the supplied target URL to resolve the ID of the
      subscription to delete.
    operationId: listWebhooks
    parameters:
    - name: $filter
      in: query
      value: "Url eq '$inputs.targetUrl'"
    - name: $top
      in: query
      value: 1
    - name: X-UIPATH-OrganizationUnitId
      in: header
      value: $inputs.folderId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      webhookId: $response.body#/value/0/Id
  - stepId: deleteWebhook
    description: >-
      Permanently delete the resolved webhook subscription by its ID so the
      endpoint no longer receives notifications.
    operationId: deleteWebhook
    parameters:
    - name: key
      in: path
      value: $steps.findWebhook.outputs.webhookId
    - name: X-UIPATH-OrganizationUnitId
      in: header
      value: $inputs.folderId
    successCriteria:
    - condition: $statusCode == 204
  outputs:
    deletedWebhookId: $steps.findWebhook.outputs.webhookId

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/uipath-cleanup-webhook-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.