Moveworks · Arazzo Workflow

Moveworks — authenticate and notify employees for an event

Version 1.0.0

Mint an OAuth client-credentials token, verify it, then send an event-triggered message to employees.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub CompanyArtificial IntelligenceAgentic AIAI AssistantEnterprise AutomationConversational AIEmployee ExperienceITSMEnterprise SearchArazzoWorkflows

Provider

moveworks

Workflows

notify-employees-for-event
Get a token and send a message for an event to a list of recipients.
3 steps inputs: client_id, client_secret, event_id, message, recipients
1
get-token
2
test-auth
3
send-event-message

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Moveworks — authenticate and notify employees for an event
  version: 1.0.0
  summary: Mint an OAuth client-credentials token, verify it, then send an event-triggered message to employees.
sourceDescriptions:
- name: authenticationApi
  url: ../openapi/moveworks-authentication-api-openapi.yml
  type: openapi
- name: eventsApi
  url: ../openapi/moveworks-events-api-openapi.yml
  type: openapi
workflows:
- workflowId: notify-employees-for-event
  summary: Get a token and send a message for an event to a list of recipients.
  inputs:
    type: object
    properties:
      client_id: {type: string}
      client_secret: {type: string}
      event_id: {type: string}
      message: {type: string}
      recipients: {type: array, items: {type: string}}
  steps:
  - stepId: get-token
    operationId: create-o-auth-token
    requestBody:
      contentType: application/json
      payload:
        client_id: $inputs.client_id
        client_secret: $inputs.client_secret
        grant_type: client_credentials
    outputs:
      access_token: $response.body#/data/access_token
  - stepId: test-auth
    operationId: test-auth
    parameters:
    - name: Authorization
      in: header
      value: "Bearer {$steps.get-token.outputs.access_token}"
  - stepId: send-event-message
    operationId: send-message-for-event
    parameters:
    - name: event_id
      in: path
      value: $inputs.event_id
    - name: Authorization
      in: header
      value: "Bearer {$steps.get-token.outputs.access_token}"
    requestBody:
      contentType: application/json
      payload:
        message: $inputs.message
        recipients: $inputs.recipients
    outputs:
      status: $response.body#/data/status

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/moveworks-notify-employees"
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 email required.

A second provider on the same verified email joins the account you already have.