SentinelOne
1. Generate a SentinelOne Event Collector token
2. Identify the ingest endpoint
3. Configure the forwarder in Apica Flow
for (let event of Events) {
let cfg = {
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer <TOKEN>"
},
body: JSON.stringify({ event: event, sourcetype: "apica-flow" }),
};
let ret = fetchSync("https://ingest.<REGION>.sentinelone.net/services/collector/event", cfg);
console.log("Status:", ret.status, "Response:", ret);
}4. Tag a source type
5. Verify


Last updated
Was this helpful?