Skip to content

Zero Trust Assessment

Joshua Hiller edited this page Apr 11, 2021 · 22 revisions

CrowdStrike Falcon Twitter URL

Using the Zero Trust Assessment service collection

Uber class support Uber class support

Table of Contents

API Function Description
getAssessmentV1 Get Zero Trust Assessment data for one or more hosts by providing agent IDs (AID) and a customer ID (CID).

getAssessmentV1

Get Zero Trust Assessment data for one or more hosts by providing agent IDs (AID) and a customer ID (CID).

Content-Type

  • Consumes: application/json
  • Produces: application/json

Parameters

Required Name Type Datatype Description
ids query array (string) One or more agent IDs, which you can find in the data.zta file, or the Falcon console.

Usage

Uber class example
from falconpy import api_complete as FalconSDK

falcon = FalconSDK.APIHarness(creds={
      'client_id': falcon_client_id,
      'client_secret': falcon_client_secret
   }
)

IDS = 'ID1,ID2,ID3'

response = falcon.command('getAssessmentV1', ids=IDS)
print(response)
falcon.deauthenticate()

CrowdStrike Falcon

Clone this wiki locally