API / Webhook Settings
Use these endpoints to push security data into Sentinel Console
Ingest Security Event
Create a new SecurityEvent record. Use this when Sentinel detects a threat.
https://remotefasitiai.com/api/functions/ingestSecurityEvent| Field | Type | Required | Description |
|---|---|---|---|
| severity | string | yes | CRITICAL | HIGH | MEDIUM | LOW |
| app | string | yes | App name or ID |
| actor_email | string | yes | Email of the suspicious actor |
| threat_pattern | string | yes | Detected threat pattern label |
| entity | string | no | Entity involved |
| confidence | number | no | 0–100 confidence score |
| detected_at | datetime | no | ISO 8601 timestamp |
| ip_address | string | no | Actor IP address |
| notes | string | no | Additional context |
Ingest Monitored App
Register or update a monitored app in the console.
https://remotefasitiai.com/api/functions/ingestMonitoredApp| Field | Type | Required | Description |
|---|---|---|---|
| app_name | string | yes | Name of the app |
| owner_email | string | yes | Owner email |
| health_status | string | no | CLEAN | WATCH | ALERT |
| monitored_entities | array | no | Array of entity name strings |
| notes | string | no | Optional notes |
Ingest Activity Log
Log an actor activity event.
https://remotefasitiai.com/api/functions/ingestActivityLog| Field | Type | Required | Description |
|---|---|---|---|
| actor_email | string | yes | Actor email |
| event_type | string | yes | e.g. create, update, delete, function_call |
| entity | string | no | Entity involved |
| is_flagged | boolean | no | Whether this is suspicious |
| security_event_id | string | no | Linked SecurityEvent ID |
| metadata | object | no | Any additional payload data |
Ingest Allowlisted Actor
Add an actor to the allowlist.
https://remotefasitiai.com/api/functions/ingestAllowlistedActor| Field | Type | Required | Description |
|---|---|---|---|
| actor_email | string | yes | Actor email to allowlist |
| app | string | yes | App scope |
| role | string | no | Actor role |
| reason | string | no | Why this actor is trusted |
Ingest Ignore Rule
Create an ignore rule to suppress future alerts matching a pattern.
https://remotefasitiai.com/api/functions/ingestIgnoreRule| Field | Type | Required | Description |
|---|---|---|---|
| reason | string | yes | Why to ignore this pattern |
| entity | string | no | Entity to ignore |
| event_type | string | no | Event type to ignore |
| actor_pattern | string | no | Actor pattern (e.g. *@internal.com) |