SentinelOne S2S Config

APIs.ioEngineeringPlatform

Properties

Name Type Description
api_url string The SentinelOne S2S API URL.
client_secret string The SentinelOne S2S client secret.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-teams-devices-sentinelone-s2s-config-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/teams-devices_sentinelone_s2s_config_request",
  "title": "SentinelOne S2S Config",
  "properties": {
    "api_url": {
      "description": "The SentinelOne S2S API URL.",
      "example": "https://example.sentinelone.net",
      "type": "string"
    },
    "client_secret": {
      "description": "The SentinelOne S2S client secret.",
      "example": "example client secret",
      "type": "string"
    }
  },
  "required": [
    "api_url",
    "client_secret"
  ],
  "type": "object"
}