Sendbird · Arazzo Workflow

Sendbird Rename a User and Notify a Channel

Version 1.0.0

Update a user's nickname and announce the change in a channel.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub ArazzoWorkflows

Provider

sendbird

Workflows

rename-user-and-notify-channel
Update a nickname and announce it in a channel.
Updates the user's nickname and profile image, then posts an admin notice to a channel announcing the new nickname.
2 steps inputs: apiToken, channelUrl, moderatorId, newNickname, profileUrl, userId outputs: announcementId, updatedNickname
1
renameUser
Update the user's nickname and profile image.
2
announce
Post an admin announcement of the new nickname into the channel.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Sendbird Rename a User and Notify a Channel
  summary: Update a user's nickname and announce the change in a channel.
  description: >-
    Keeps a channel informed when a member changes their display name. It
    updates the user's nickname and profile image, then posts an admin message
    into a channel announcing the new nickname so other members are not confused
    by the change. 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: messagesApi
  url: ../openapi/sendbird-messages-api-openapi.yml
  type: openapi
- name: usersApi
  url: ../openapi/sendbird-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: rename-user-and-notify-channel
  summary: Update a nickname and announce it in a channel.
  description: >-
    Updates the user's nickname and profile image, then posts an admin notice to
    a channel announcing the new nickname.
  inputs:
    type: object
    required:
    - apiToken
    - userId
    - newNickname
    - channelUrl
    - moderatorId
    properties:
      apiToken:
        type: string
        description: Sendbird Api-Token from the dashboard.
      userId:
        type: string
        description: User ID to rename.
      newNickname:
        type: string
        description: New display nickname for the user.
      profileUrl:
        type: string
        description: Optional updated profile image URL.
      channelUrl:
        type: string
        description: URL of the channel to notify.
      moderatorId:
        type: string
        description: User ID that authors the announcement.
  steps:
  - stepId: renameUser
    description: Update the user's nickname and profile image.
    operationId: updateUser
    parameters:
    - name: Api-Token
      in: header
      value: $inputs.apiToken
    - name: user_id
      in: path
      value: $inputs.userId
    requestBody:
      contentType: application/json
      payload:
        nickname: $inputs.newNickname
        profile_url: $inputs.profileUrl
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      updatedNickname: $response.body#/nickname
  - stepId: announce
    description: Post an admin announcement of the new nickname into the channel.
    operationId: sendMessage
    parameters:
    - name: Api-Token
      in: header
      value: $inputs.apiToken
    - name: channel_url
      in: path
      value: $inputs.channelUrl
    requestBody:
      contentType: application/json
      payload:
        message_type: ADMM
        user_id: $inputs.moderatorId
        message: $steps.renameUser.outputs.updatedNickname
        custom_type: nickname_change
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      announcementId: $response.body#/message_id
  outputs:
    updatedNickname: $steps.renameUser.outputs.updatedNickname
    announcementId: $steps.announce.outputs.announcementId

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-rename-user-and-notify-channel-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.