Skip to content

RiskScoringIntegration

Source: src/Cloudflare/RiskScoring/Integration.ts

A Cloudflare Zero Trust risk scoring integration — a Shared Signals Framework (SSF) push integration that exports user risk-score changes to a third-party tenant (currently Okta) so the IdP can react to risky behavior detected by Zero Trust.

Requires the Zero Trust risk-scoring entitlement (an Enterprise feature); accounts without it receive the typed Forbidden error on all writes.

Push risk scores to an Okta tenant

const okta = yield* Cloudflare.RiskScoringIntegration("OktaSsf", {
tenantUrl: "https://tenant.okta.com",
referenceId: oktaIdp.identityProviderId,
});

Pause exporting without deleting

const okta = yield* Cloudflare.RiskScoringIntegration("OktaSsf", {
tenantUrl: "https://tenant.okta.com",
active: false,
});