Tanium · Arazzo Workflow

Tanium Run A Saved Question By Name

Version 1.0.0

Resolve a saved question by name, then read its latest endpoint result data.

1 workflow 1 source API 1 provider
View Spec View on GitHub ComplianceEndpoint ManagementPatch ManagementSecurityThreat DetectionUnified Endpoint ManagementArazzoWorkflows

Provider

tanium

Workflows

run-saved-question
Resolve a saved question by name and fetch its latest results.
Looks up a saved question by name to obtain its id, then retrieves the most recent result data collected by that saved question.
2 steps inputs: savedQuestionName, sessionToken outputs: rowCount, rows, savedQuestionId
1
resolveSavedQuestion
Resolve the saved question by name to obtain its numeric id and confirm it exists before reading results.
2
readSavedResults
Retrieve the latest result data rows collected by the resolved saved question.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Tanium Run A Saved Question By Name
  summary: Resolve a saved question by name, then read its latest endpoint result data.
  description: >-
    Saved questions run on a schedule and continuously collect data from
    endpoints. This workflow resolves a saved question by its name to obtain its
    numeric id, then reads the latest result set associated with that saved
    question. Every step spells out its request inline, including the session
    header used for token authentication, so the flow can be read and executed
    without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: savedQuestionsApi
  url: ../openapi/tanium-saved-questions-api-openapi.yml
  type: openapi
workflows:
- workflowId: run-saved-question
  summary: Resolve a saved question by name and fetch its latest results.
  description: >-
    Looks up a saved question by name to obtain its id, then retrieves the most
    recent result data collected by that saved question.
  inputs:
    type: object
    required:
    - sessionToken
    - savedQuestionName
    properties:
      sessionToken:
        type: string
        description: API token or session token passed in the session header.
      savedQuestionName:
        type: string
        description: Name of the saved question to resolve and read (URL-encoded if it contains special characters).
  steps:
  - stepId: resolveSavedQuestion
    description: >-
      Resolve the saved question by name to obtain its numeric id and confirm it
      exists before reading results.
    operationId: getSavedQuestionByName
    parameters:
    - name: session
      in: header
      value: $inputs.sessionToken
    - name: name
      in: path
      value: $inputs.savedQuestionName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      savedQuestionId: $response.body#/data/id
    onSuccess:
    - name: resolved
      type: goto
      stepId: readSavedResults
      criteria:
      - context: $response.body
        condition: $.data.id != null
        type: jsonpath
  - stepId: readSavedResults
    description: >-
      Retrieve the latest result data rows collected by the resolved saved
      question.
    operationId: getSavedQuestionResults
    parameters:
    - name: session
      in: header
      value: $inputs.sessionToken
    - name: id
      in: path
      value: $steps.resolveSavedQuestion.outputs.savedQuestionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      rowCount: $response.body#/data/result_sets/0/row_count
      estimatedTotal: $response.body#/data/result_sets/0/estimated_total
      rows: $response.body#/data/result_sets/0/rows
  outputs:
    savedQuestionId: $steps.resolveSavedQuestion.outputs.savedQuestionId
    rowCount: $steps.readSavedResults.outputs.rowCount
    rows: $steps.readSavedResults.outputs.rows

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/tanium-run-saved-question-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.