Assembled · Arazzo Workflow

Assembled Create and Read a Forecast Total

Version 1.0.0

Create a forecast total for a queue window, list totals to find it, then fetch it in full.

1 workflow 1 source API 1 provider
View Spec View on GitHub Customer-SupportWorkforce ManagementWFMAI AgentsAI CopilotContact CenterCustomer ExperienceSupport OperationsSchedulingForecastingQuality AssuranceVendor ManagementBPOArazzoWorkflows

Provider

assembled

Workflows

manage-forecast-total
Create a forecast total, locate it in the list, and fetch it in detail.
Creates a forecast total, lists totals for the window to find the entry, and retrieves the first total in full.
3 steps inputs: apiKey, endTime, queueId, startTime, totalVolume outputs: totalId, totalVolume
1
createTotal
createForecastTotals
Create a forecast total for the queue across the supplied window with the given total volume.
2
listTotals
listForecastTotals
List forecast totals for the window to locate the newly created total and capture its id.
3
getTotal
getForecastTotal
Retrieve the located forecast total in full to confirm the recorded volume and window.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Assembled Create and Read a Forecast Total
  summary: Create a forecast total for a queue window, list totals to find it, then fetch it in full.
  description: >-
    Manages manual forecast totals end to end. The workflow creates a forecast
    total for a queue and window, lists the totals for that window to locate the
    newly created entry, and retrieves it in full to confirm the recorded volume.
    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: forecastsApi
  url: ../openapi/assembled-forecasts-api-openapi.yml
  type: openapi
workflows:
- workflowId: manage-forecast-total
  summary: Create a forecast total, locate it in the list, and fetch it in detail.
  description: >-
    Creates a forecast total, lists totals for the window to find the entry, and
    retrieves the first total in full.
  inputs:
    type: object
    required:
    - apiKey
    - queueId
    - startTime
    - endTime
    - totalVolume
    properties:
      apiKey:
        type: string
        description: Assembled API key (sk_live_...) used as the HTTP Basic Auth username.
      queueId:
        type: string
        description: Queue ID the forecast total applies to.
      startTime:
        type: string
        description: Window start (ISO 8601 date-time).
      endTime:
        type: string
        description: Window end (ISO 8601 date-time).
      totalVolume:
        type: number
        description: Total predicted volume for the window.
  steps:
  - stepId: createTotal
    description: >-
      Create a forecast total for the queue across the supplied window with the
      given total volume.
    operationId: createForecastTotals
    requestBody:
      contentType: application/json
      payload:
        totals:
        - queue_id: $inputs.queueId
          start_time: $inputs.startTime
          end_time: $inputs.endTime
          total_volume: $inputs.totalVolume
    successCriteria:
    - condition: $statusCode == 201
  - stepId: listTotals
    description: >-
      List forecast totals for the window to locate the newly created total and
      capture its id.
    operationId: listForecastTotals
    parameters:
    - name: start_time
      in: query
      value: $inputs.startTime
    - name: end_time
      in: query
      value: $inputs.endTime
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      totalId: $response.body#/totals/0/id
  - stepId: getTotal
    description: >-
      Retrieve the located forecast total in full to confirm the recorded
      volume and window.
    operationId: getForecastTotal
    parameters:
    - name: id
      in: path
      value: $steps.listTotals.outputs.totalId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      totalVolume: $response.body#/total_volume
      totalQueueId: $response.body#/queue_id
  outputs:
    totalId: $steps.listTotals.outputs.totalId
    totalVolume: $steps.getTotal.outputs.totalVolume

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/assembled-manage-forecast-total-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 email required.

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