1Password · Arazzo Workflow

1Password Decommission an Item

Version 1.0.0

Confirm an item exists, then permanently delete it from its vault.

1 workflow 1 source API 1 provider
View Spec View on GitHub Password ManagerPasswordsSecuritySecretsArazzoWorkflows

Provider

1password

Workflows

decommission-item
Verify an item exists and then permanently delete it from its vault.
Reads the target item to confirm it exists and capture its title for the audit trail, then permanently deletes the item from its vault.
2 steps inputs: itemUuid, vaultUuid outputs: deletedItemId, deletedTitle
1
confirmItem
Read the target item to confirm it exists and capture its title before deletion.
2
deleteItem
Permanently delete the confirmed item from its vault. This action cannot be undone.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: 1Password Decommission an Item
  summary: Confirm an item exists, then permanently delete it from its vault.
  description: >-
    A safe deletion pattern for 1Password Connect. The workflow first reads the
    target item to confirm it exists and to capture identifying metadata for the
    audit trail, then permanently deletes the item from its vault. Each 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: itemsApi
  url: ../openapi/1password-items-api-openapi.yml
  type: openapi
workflows:
- workflowId: decommission-item
  summary: Verify an item exists and then permanently delete it from its vault.
  description: >-
    Reads the target item to confirm it exists and capture its title for the
    audit trail, then permanently deletes the item from its vault.
  inputs:
    type: object
    required:
    - vaultUuid
    - itemUuid
    properties:
      vaultUuid:
        type: string
        description: The UUID of the vault containing the item.
      itemUuid:
        type: string
        description: The UUID of the item to decommission.
  steps:
  - stepId: confirmItem
    description: >-
      Read the target item to confirm it exists and capture its title before
      deletion.
    operationId: getItemById
    parameters:
    - name: vaultUuid
      in: path
      value: $inputs.vaultUuid
    - name: itemUuid
      in: path
      value: $inputs.itemUuid
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      itemId: $response.body#/id
      title: $response.body#/title
  - stepId: deleteItem
    description: >-
      Permanently delete the confirmed item from its vault. This action cannot
      be undone.
    operationId: deleteItem
    parameters:
    - name: vaultUuid
      in: path
      value: $inputs.vaultUuid
    - name: itemUuid
      in: path
      value: $steps.confirmItem.outputs.itemId
    successCriteria:
    - condition: $statusCode == 204
    outputs:
      statusCode: $statusCode
  outputs:
    deletedItemId: $steps.confirmItem.outputs.itemId
    deletedTitle: $steps.confirmItem.outputs.title

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/1password-decommission-item-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.