Tanium · Example Payload

Tanium Ask Question Example

ComplianceEndpoint ManagementPatch ManagementSecurityThreat DetectionUnified Endpoint Management

Tanium Ask Question Example is an example object payload from Tanium, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://tanium.example.com/api/v2/questions",
    "headers": {
      "session": "your-api-token-here",
      "Content-Type": "application/json"
    },
    "body": {
      "query_text": "Get Running Processes from all machines"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "data": {
        "id": 42891,
        "query_text": "Get Running Processes from all machines",
        "expiration": "2026-05-03T12:10:00Z",
        "selects": [
          {
            "sensor": {
              "name": "Running Processes",
              "hash": 3409330187,
              "id": 3001
            }
          }
        ],
        "group": {
          "id": 0,
          "name": "All Computers"
        }
      }
    }
  }
}