Vantage · Arazzo Workflow

Vantage Create a Resource Report and List Its Resources

Version 1.0.0

Create a Resource Report and retrieve the resource-level cost data it captures.

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

Provider

vantage

Workflows

resource-report-and-resources
Create a Resource Report and list the resources it captures.
Creates a Resource Report, fetches it back by token, and retrieves the resource records scoped to that report.
3 steps inputs: apiToken, filter, title, workspaceToken outputs: resourceReportToken, resources
1
createResourceReport
Create a Resource Report scoped by the supplied VQL filter.
2
getResourceReport
Read the Resource Report back by token to confirm it persisted.
3
getResources
Retrieve the resource records captured by the report.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Vantage Create a Resource Report and List Its Resources
  summary: Create a Resource Report and retrieve the resource-level cost data it captures.
  description: >-
    A Vantage resource-inventory pattern. The workflow creates a Resource Report
    scoped to a VQL filter, reads it back by token to confirm it persisted, and
    then lists the resource-level cost and usage records the report captures.
    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: resourceReportsApi
  url: ../openapi/vantage-resource-reports-api-openapi.yml
  type: openapi
- name: resourcesApi
  url: ../openapi/vantage-resources-api-openapi.yml
  type: openapi
workflows:
- workflowId: resource-report-and-resources
  summary: Create a Resource Report and list the resources it captures.
  description: >-
    Creates a Resource Report, fetches it back by token, and retrieves the
    resource records scoped to that report.
  inputs:
    type: object
    required:
    - apiToken
    - title
    - filter
    - workspaceToken
    properties:
      apiToken:
        type: string
        description: Vantage API token used as the Bearer credential.
      title:
        type: string
        description: Title for the new Resource Report.
      filter:
        type: string
        description: A VQL filter expression scoping the Resource Report.
      workspaceToken:
        type: string
        description: The workspace token the Resource Report belongs to.
  steps:
  - stepId: createResourceReport
    description: Create a Resource Report scoped by the supplied VQL filter.
    operationId: createResourceReport
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiToken
    requestBody:
      contentType: application/json
      payload:
        title: $inputs.title
        filter: $inputs.filter
        workspace_token: $inputs.workspaceToken
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      resourceReportToken: $response.body#/token
  - stepId: getResourceReport
    description: Read the Resource Report back by token to confirm it persisted.
    operationId: getResourceReport
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiToken
    - name: resource_report_token
      in: path
      value: $steps.createResourceReport.outputs.resourceReportToken
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      title: $response.body#/title
  - stepId: getResources
    description: Retrieve the resource records captured by the report.
    operationId: getResources
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiToken
    - name: resource_report_token
      in: query
      value: $steps.createResourceReport.outputs.resourceReportToken
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      resources: $response.body#/resources
  outputs:
    resourceReportToken: $steps.createResourceReport.outputs.resourceReportToken
    resources: $steps.getResources.outputs.resources

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-resource-report-and-resources-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.