GitLab · Arazzo Workflow

GitLab Reschedule a Broadcast Message

Version 1.0.0

Read an existing broadcast message, then update its window and text.

1 workflow 1 source API 1 provider
View Spec View on GitHub CodePlatformSoftware DevelopmentSource ControlArazzoWorkflows

Provider

gitlab

Workflows

reschedule-broadcast-message
Update an existing broadcast message's text and active window.
Reads the broadcast message by id, then updates its message and start/end times.
2 steps inputs: endsAt, message, messageId, privateToken, startsAt outputs: updatedId, updatedMessage
1
getMessage
Read the existing broadcast message to confirm it exists.
2
updateMessage
Update the broadcast message text and active window.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: GitLab Reschedule a Broadcast Message
  summary: Read an existing broadcast message, then update its window and text.
  description: >-
    A broadcast maintenance flow. The workflow reads an existing broadcast
    message to confirm it exists, then updates its message text and active window
    so an announcement can be extended or revised. 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: broadcastMessagesApi
  url: ../openapi/gitlab-broadcast-messages-api-openapi.yml
  type: openapi
workflows:
- workflowId: reschedule-broadcast-message
  summary: Update an existing broadcast message's text and active window.
  description: >-
    Reads the broadcast message by id, then updates its message and start/end
    times.
  inputs:
    type: object
    required:
    - privateToken
    - messageId
    - message
    - startsAt
    - endsAt
    properties:
      privateToken:
        type: string
        description: GitLab Private-Token used to authenticate the API calls.
      messageId:
        type: integer
        description: The broadcast message ID to update.
      message:
        type: string
        description: The revised message text.
      startsAt:
        type: string
        description: New starting time (ISO 8601 date-time).
      endsAt:
        type: string
        description: New ending time (ISO 8601 date-time).
  steps:
  - stepId: getMessage
    description: Read the existing broadcast message to confirm it exists.
    operationId: getApiV4BroadcastMessagesId
    parameters:
    - name: Private-Token
      in: header
      value: $inputs.privateToken
    - name: id
      in: path
      value: $inputs.messageId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      currentMessage: $response.body#/message
  - stepId: updateMessage
    description: Update the broadcast message text and active window.
    operationId: putApiV4BroadcastMessagesId
    parameters:
    - name: Private-Token
      in: header
      value: $inputs.privateToken
    - name: id
      in: path
      value: $inputs.messageId
    requestBody:
      contentType: application/json
      payload:
        message: $inputs.message
        starts_at: $inputs.startsAt
        ends_at: $inputs.endsAt
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      updatedId: $response.body#/id
      updatedMessage: $response.body#/message
      startsAt: $response.body#/starts_at
      endsAt: $response.body#/ends_at
  outputs:
    updatedId: $steps.updateMessage.outputs.updatedId
    updatedMessage: $steps.updateMessage.outputs.updatedMessage

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/gitlab-update-broadcast-message-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.