Vantage · Arazzo Workflow

Vantage Build a Cost Dashboard From a New Report

Version 1.0.0

Create a Cost Report and surface it as a widget on a new Dashboard.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub BudgetsCloud PricingCost ManagementCostsFinOpsArazzoWorkflows

Provider

vantage

Workflows

build-cost-dashboard
Create a Cost Report and a Dashboard that displays it as a widget.
Creates a Cost Report, creates a Dashboard whose widget_tokens include the new report token, and fetches the Dashboard back by token.
3 steps inputs: apiToken, dashboardTitle, filter, reportTitle, workspaceToken outputs: costReportToken, dashboardToken
1
createReport
Create the Cost Report that will back the dashboard widget.
2
createDashboard
Create a Dashboard whose widget references the new Cost Report token.
3
getDashboard
Read the Dashboard back by token to confirm the widget attached.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Vantage Build a Cost Dashboard From a New Report
  summary: Create a Cost Report and surface it as a widget on a new Dashboard.
  description: >-
    A Vantage reporting pattern that turns raw cost data into a shareable view.
    The workflow creates a Cost Report, builds a Dashboard whose widget token
    references that report, and reads the Dashboard back to confirm the widget
    was attached. Note that Vantage Dashboards reference widgets by token, so the
    new Cost Report token is supplied as the dashboard's widget_token. Every step
    spells out its request inline — including the Bearer token — so the flow can
    be read and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: costReportsApi
  url: ../openapi/vantage-cost-reports-api-openapi.yml
  type: openapi
- name: dashboardsApi
  url: ../openapi/vantage-dashboards-api-openapi.yml
  type: openapi
workflows:
- workflowId: build-cost-dashboard
  summary: Create a Cost Report and a Dashboard that displays it as a widget.
  description: >-
    Creates a Cost Report, creates a Dashboard whose widget_tokens include the
    new report token, and fetches the Dashboard back by token.
  inputs:
    type: object
    required:
    - apiToken
    - reportTitle
    - filter
    - workspaceToken
    - dashboardTitle
    properties:
      apiToken:
        type: string
        description: Vantage API token used as the Bearer credential.
      reportTitle:
        type: string
        description: Title for the new Cost Report.
      filter:
        type: string
        description: A VQL filter expression scoping the Cost Report.
      workspaceToken:
        type: string
        description: The workspace token the Report and Dashboard belong to.
      dashboardTitle:
        type: string
        description: Title for the new Dashboard.
  steps:
  - stepId: createReport
    description: Create the Cost Report that will back the dashboard widget.
    operationId: createCostReport
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiToken
    requestBody:
      contentType: application/json
      payload:
        title: $inputs.reportTitle
        filter: $inputs.filter
        workspace_token: $inputs.workspaceToken
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      costReportToken: $response.body#/token
  - stepId: createDashboard
    description: >-
      Create a Dashboard whose widget references the new Cost Report token.
    operationId: createDashboard
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiToken
    requestBody:
      contentType: application/json
      payload:
        title: $inputs.dashboardTitle
        widget_tokens:
        - $steps.createReport.outputs.costReportToken
        workspace_token: $inputs.workspaceToken
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      dashboardToken: $response.body#/token
  - stepId: getDashboard
    description: Read the Dashboard back by token to confirm the widget attached.
    operationId: getDashboard
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiToken
    - name: dashboard_token
      in: path
      value: $steps.createDashboard.outputs.dashboardToken
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      title: $response.body#/title
      widgetTokens: $response.body#/widget_tokens
  outputs:
    costReportToken: $steps.createReport.outputs.costReportToken
    dashboardToken: $steps.createDashboard.outputs.dashboardToken

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/vantage-build-cost-dashboard-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.