Moveworks · Arazzo Workflow

Moveworks — start an AI Assistant conversation and read the reply

Version 1.0.0

Create a conversation, request a response, then list the resulting messages.

1 workflow 1 source API 1 provider
View Spec View on GitHub CompanyArtificial IntelligenceAgentic AIAI AssistantEnterprise AutomationConversational AIEmployee ExperienceIT Service ManagementEnterprise SearchArazzoWorkflows

Provider

moveworks

Workflows

converse-with-assistant
Create a conversation, generate a response, and read the transcript.
3 steps inputs: bearer_token, user_input
1
create-conversation
create-conversation
2
create-response
create-response
3
list-messages
list-conversation-messages

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Moveworks — start an AI Assistant conversation and read the reply
  version: 1.0.0
  summary: Create a conversation, request a response, then list the resulting messages.
sourceDescriptions:
- name: conversations
  url: ../openapi/moveworks-conversations-api-openapi.yaml
  type: openapi
workflows:
- workflowId: converse-with-assistant
  summary: Create a conversation, generate a response, and read the transcript.
  inputs:
    type: object
    properties:
      bearer_token: { type: string }
      user_input: { type: string }
  steps:
  - stepId: create-conversation
    operationId: create-conversation
    parameters:
    - name: Authorization
      in: header
      value: "Bearer {$inputs.bearer_token}"
    outputs:
      conversation_id: $response.body#/conversation_id
  - stepId: create-response
    operationId: create-response
    parameters:
    - name: conversation_id
      in: path
      value: $steps.create-conversation.outputs.conversation_id
    - name: Authorization
      in: header
      value: "Bearer {$inputs.bearer_token}"
    outputs:
      response_id: $response.body#/response_id
  - stepId: list-messages
    operationId: list-conversation-messages
    parameters:
    - name: conversation_id
      in: path
      value: $steps.create-conversation.outputs.conversation_id
    - name: Authorization
      in: header
      value: "Bearer {$inputs.bearer_token}"