Assembled · Arazzo Workflow

Assembled Turn a Forecast into a Staffing Requirement

Version 1.0.0

Read the volume forecast for a window, resolve a requirement type, then create a staffing requirement.

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

Provider

assembled

Workflows

forecast-to-requirement
Read a forecast, resolve a requirement type, and create a staffing requirement.
Lists forecasts for a queue window, resolves a requirement type, and creates a staffing requirement for the window with the supplied required count.
3 steps inputs: apiKey, endTime, queueId, requiredCount, requirementTypeId, startTime outputs: forecasts, requirementId
1
readForecast
List the volume forecast for the queue across the window to ground the staffing requirement in predicted demand.
2
resolveRequirementType
List requirement types to resolve the family of need applied to the new requirement.
3
createRequirement
Create a staffing requirement for the queue and window expressing how many agents are needed across the interval.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Assembled Turn a Forecast into a Staffing Requirement
  summary: Read the volume forecast for a window, resolve a requirement type, then create a staffing requirement.
  description: >-
    Bridges the Forecasts and Requirements APIs to translate predicted demand
    into a concrete staffing target. The workflow lists the volume forecast for a
    queue and window, lists requirement types to resolve the family of need (for
    example headcount), and creates a staffing requirement expressing how many
    agents are needed across the interval. 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
  x-realizes-capability-ids:
  - BC-430.30
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-430.30
      capability_name: Contact Centre Operations Management
      spec: assembled-forecasts-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: forecastsApi
  url: ../openapi/assembled-forecasts-api-openapi.yml
  type: openapi
- name: requirementTypesApi
  url: ../openapi/assembled-requirement-types-api-openapi.yml
  type: openapi
- name: requirementsApi
  url: ../openapi/assembled-requirements-api-openapi.yml
  type: openapi
workflows:
- workflowId: forecast-to-requirement
  summary: Read a forecast, resolve a requirement type, and create a staffing requirement.
  description: >-
    Lists forecasts for a queue window, resolves a requirement type, and creates
    a staffing requirement for the window with the supplied required count.
  inputs:
    type: object
    required:
    - apiKey
    - queueId
    - startTime
    - endTime
    - requiredCount
    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 and requirement apply to.
      startTime:
        type: string
        description: Window start (ISO 8601 date-time).
      endTime:
        type: string
        description: Window end (ISO 8601 date-time).
      requirementTypeId:
        type: string
        description: Requirement type ID; if omitted the first available type is used.
      requiredCount:
        type: number
        description: Number of agents required across the interval.
  steps:
  - stepId: readForecast
    description: >-
      List the volume forecast for the queue across the window to ground the
      staffing requirement in predicted demand.
    operationId: listForecasts
    parameters:
    - name: start_time
      in: query
      value: $inputs.startTime
    - name: end_time
      in: query
      value: $inputs.endTime
    - name: queue_ids
      in: query
      value: $inputs.queueId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      forecasts: $response.body#/forecasts
  - stepId: resolveRequirementType
    description: >-
      List requirement types to resolve the family of need applied to the new
      requirement.
    operationId: listRequirementTypes
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstRequirementTypeId: $response.body#/requirement_types/0/id
  - stepId: createRequirement
    description: >-
      Create a staffing requirement for the queue and window expressing how many
      agents are needed across the interval.
    operationId: createRequirement
    requestBody:
      contentType: application/json
      payload:
        requirement_type_id: $inputs.requirementTypeId
        queue_id: $inputs.queueId
        start_time: $inputs.startTime
        end_time: $inputs.endTime
        required_count: $inputs.requiredCount
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      requirementId: $response.body#/id
  outputs:
    forecasts: $steps.readForecast.outputs.forecasts
    requirementId: $steps.createRequirement.outputs.requirementId

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-forecast-to-requirement-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.