Skip to content

Identity Protection

Joshua Hiller edited this page Aug 30, 2021 · 15 revisions

CrowdStrike Falcon Twitter URL

Using the Identity Protection service collection

Uber class support Service class support

Table of Contents

Operation ID Description
api_preempt_proxy_post_graphql
PEP8 graphql
Identity Protection GraphQL API. Allows to retrieve entities, timeline activities, identity-based incidents and security assessment. Allows to perform actions on entities and identity-based incidents.

api_preempt_proxy_post_graphql

Identity Protection GraphQL API. Allows to retrieve entities, timeline activities, identity-based incidents and security assessment. Allows to perform actions on entities and identity-based incidents.

PEP8 method name

graphql

Content-Type

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

Parameters

Required Name Type Datatype Description
Authorization header string Authorization Header

Usage

Service class example (PEP8 syntax)
from falconpy.identity_protection import IdentityProtection

falcon = IdentityProtection(client_id="API_CLIENT_ID_HERE",
                            client_secret="API_CLIENT_SECRET_HERE"
                            )

HEADERS = {
    "Authorization": "string"
}

response = falcon.graphql(headers=HEADERS)
print(response)
Service class example (Operation ID syntax)
from falconpy.identity_protection import IdentityProtection

falcon = IdentityProtection(client_id="API_CLIENT_ID_HERE",
                            client_secret="API_CLIENT_SECRET_HERE"
                            )

HEADERS = {
    "Authorization": "string"
}

response = falcon.api_preempt_proxy_post_graphql(headers=HEADERS)
print(response)
Uber class example
from falconpy.api_complete import APIHarness

falcon = APIHarness(client_id="API_CLIENT_ID_HERE",
                    client_secret="API_CLIENT_SECRET_HERE"
                    )

HEADERS = {
    "Authorization": "string"
}

response = falcon.command("api_preempt_proxy_post_graphql", headers=HEADERS)
print(response)

CrowdStrike Falcon

Clone this wiki locally