Sendbird · Arazzo Workflow

Sendbird Deactivate and Clean Up a User

Version 1.0.0

Confirm a user exists, then delete the user account from the application.

1 workflow 1 source API 1 provider
View Spec View on GitHub ArazzoWorkflows

Provider

sendbird

Workflows

deactivate-user-cleanup
Confirm and then delete a user account.
Reads the user to confirm existence, then deletes the user from the application.
2 steps inputs: apiToken, userId outputs: deletedUserId, finalNickname
1
confirmUser
Confirm the user exists and capture their final nickname.
2
deleteUser
Permanently delete the confirmed user from the application.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Sendbird Deactivate and Clean Up a User
  summary: Confirm a user exists, then delete the user account from the application.
  description: >-
    An account-removal flow that confirms a user is present before permanently
    deleting them from the Sendbird application. Reading first captures the
    final state of the account and avoids issuing deletes against IDs that never
    existed. Use this for GDPR-style erasure or offboarding. 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/sendbird-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: deactivate-user-cleanup
  summary: Confirm and then delete a user account.
  description: >-
    Reads the user to confirm existence, then deletes the user from the
    application.
  inputs:
    type: object
    required:
    - apiToken
    - userId
    properties:
      apiToken:
        type: string
        description: Sendbird Api-Token from the dashboard.
      userId:
        type: string
        description: User ID to delete.
  steps:
  - stepId: confirmUser
    description: Confirm the user exists and capture their final nickname.
    operationId: getUser
    parameters:
    - name: Api-Token
      in: header
      value: $inputs.apiToken
    - name: user_id
      in: path
      value: $inputs.userId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      confirmedUserId: $response.body#/user_id
      finalNickname: $response.body#/nickname
  - stepId: deleteUser
    description: Permanently delete the confirmed user from the application.
    operationId: deleteUser
    parameters:
    - name: Api-Token
      in: header
      value: $inputs.apiToken
    - name: user_id
      in: path
      value: $steps.confirmUser.outputs.confirmedUserId
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    deletedUserId: $steps.confirmUser.outputs.confirmedUserId
    finalNickname: $steps.confirmUser.outputs.finalNickname

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/sendbird-deactivate-user-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.