Logz.io · Arazzo Workflow

Logz.io Notification Endpoint Cleanup

Version 1.0.0

List notification endpoints, confirm one by id, and delete it.

1 workflow 1 source API 1 provider
View Spec View on GitHub ObservabilityLoggingMetricsTracingSIEMELKElasticsearchOpenSearchPrometheusGrafanaOpenTelemetryAIOpsCloud ObservabilityManaged ELKCost ManagementArazzoWorkflows

Provider

logz-io

Workflows

cleanup-endpoint
Confirm a notification endpoint exists and then delete it.
Lists notification endpoints, retrieves the target endpoint by id, and deletes it.
3 steps inputs: apiToken, endpointId outputs: deletedEndpointId, deletedEndpointType
1
listEndpoints
Retrieve all notification endpoints configured in the account so the target endpoint can be confirmed.
2
getEndpoint
Read the targeted endpoint by id to confirm its type and title before deleting it.
3
deleteEndpoint
Delete the confirmed notification endpoint by its id.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Logz.io Notification Endpoint Cleanup
  summary: List notification endpoints, confirm one by id, and delete it.
  description: >-
    Safely removes a notification endpoint. The workflow lists all notification
    endpoints configured in the account, reads the targeted endpoint by id to
    confirm its type and title before any destructive action, then deletes the
    endpoint. 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: logzioApi
  url: ../openapi/logz-io-api-openapi.yml
  type: openapi
workflows:
- workflowId: cleanup-endpoint
  summary: Confirm a notification endpoint exists and then delete it.
  description: >-
    Lists notification endpoints, retrieves the target endpoint by id, and
    deletes it.
  inputs:
    type: object
    required:
    - apiToken
    - endpointId
    properties:
      apiToken:
        type: string
        description: Logz.io API token sent in the X-API-TOKEN header.
      endpointId:
        type: integer
        description: ID of the notification endpoint to delete.
  steps:
  - stepId: listEndpoints
    description: >-
      Retrieve all notification endpoints configured in the account so the
      target endpoint can be confirmed.
    operationId: getAllEndpoints
    parameters:
    - name: X-API-TOKEN
      in: header
      value: $inputs.apiToken
    successCriteria:
    - condition: $statusCode == 200
  - stepId: getEndpoint
    description: >-
      Read the targeted endpoint by id to confirm its type and title before
      deleting it.
    operationId: getEndpointById
    parameters:
    - name: X-API-TOKEN
      in: header
      value: $inputs.apiToken
    - name: id
      in: path
      value: $inputs.endpointId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      endpointType: $response.body#/endpointType
      title: $response.body#/title
  - stepId: deleteEndpoint
    description: >-
      Delete the confirmed notification endpoint by its id.
    operationId: deleteEndpoint
    parameters:
    - name: X-API-TOKEN
      in: header
      value: $inputs.apiToken
    - name: id
      in: path
      value: $inputs.endpointId
    successCriteria:
    - condition: $statusCode == 204
  outputs:
    deletedEndpointId: $inputs.endpointId
    deletedEndpointType: $steps.getEndpoint.outputs.endpointType

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/logz-io-endpoint-cleanup-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.