Airtable · Arazzo Workflow

Airtable Deprovision a SCIM User

Version 1.0.0

Find a SCIM user by username and then delete the resource.

1 workflow 1 source API 1 provider
View Spec View on GitHub ApplicationCollaborationDataDatabasesLow-CodeProductivitySpreadsheetsArazzoWorkflows

Provider

airtable

Workflows

deprovision-scim-user
Find a SCIM user by username and delete it.
Locates a SCIM 2.0 user by filtering on the userName attribute and then permanently deletes the matched user resource.
2 steps inputs: userName outputs: deletedUserId
1
findUser
Locate the SCIM user by applying a SCIM filter on the userName attribute, returning at most one match.
2
deleteUser
Permanently delete the matched SCIM user resource from the enterprise account.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Airtable Deprovision a SCIM User
  summary: Find a SCIM user by username and then delete the resource.
  description: >-
    An identity deprovisioning flow built on the SCIM 2.0 protocol. The workflow
    first locates a SCIM user by applying a SCIM filter on the userName
    attribute, captures the matched resource id, and then permanently deletes
    the user so they lose access to all Airtable resources associated with the
    enterprise. 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: usersApi
  url: ../openapi/airtable-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: deprovision-scim-user
  summary: Find a SCIM user by username and delete it.
  description: >-
    Locates a SCIM 2.0 user by filtering on the userName attribute and then
    permanently deletes the matched user resource.
  inputs:
    type: object
    required:
    - userName
    properties:
      userName:
        type: string
        description: The username (typically an email) of the user to deprovision.
  steps:
  - stepId: findUser
    description: >-
      Locate the SCIM user by applying a SCIM filter on the userName attribute,
      returning at most one match.
    operationId: listScimUsers
    parameters:
    - name: filter
      in: query
      value: userName eq "$inputs.userName"
    - name: count
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      matchedUserId: $response.body#/Resources/0/id
      totalResults: $response.body#/totalResults
  - stepId: deleteUser
    description: >-
      Permanently delete the matched SCIM user resource from the enterprise
      account.
    operationId: deleteScimUser
    parameters:
    - name: userId
      in: path
      value: $steps.findUser.outputs.matchedUserId
    successCriteria:
    - condition: $statusCode == 204
    outputs:
      deletedUserId: $steps.findUser.outputs.matchedUserId
  outputs:
    deletedUserId: $steps.deleteUser.outputs.deletedUserId

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/airtable-deprovision-scim-user-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.