Crowdstrike Config

APIs.ioEngineeringPlatform

Properties

Name Type Description
api_url string The Crowdstrike API URL.
client_id string The Crowdstrike client ID.
client_secret string The Crowdstrike client secret.
customer_id string The Crowdstrike customer ID.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-teams-devices-crowdstrike-config-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/teams-devices_crowdstrike_config_request",
  "title": "Crowdstrike Config",
  "properties": {
    "api_url": {
      "description": "The Crowdstrike API URL.",
      "example": "https://api.us-2.crowdstrike.com",
      "type": "string"
    },
    "client_id": {
      "description": "The Crowdstrike client ID.",
      "example": "example client id",
      "type": "string"
    },
    "client_secret": {
      "description": "The Crowdstrike client secret.",
      "example": "example client secret",
      "type": "string"
    },
    "customer_id": {
      "description": "The Crowdstrike customer ID.",
      "example": "example customer id",
      "type": "string"
    }
  },
  "required": [
    "api_url",
    "customer_id",
    "client_id",
    "client_secret"
  ],
  "type": "object"
}