Properties
| Name | Type | Description |
|---|---|---|
| account_tag | string | The Cloudflare account tag. |
| active | boolean | Whether this integration is enabled and should export changes in risk score. |
| created_at | string | When the integration was created in RFC3339 format. |
| id | string | The id of the integration, a UUIDv4. |
| integration_type | object | |
| reference_id | string | A reference ID defined by the client. Should be set to the Access-Okta IDP integration ID. Useful when the risk-score integration needs to be associated with a secondary asset and recalled using that |
| tenant_url | string | The base URL for the tenant. E.g. "https://tenant.okta.com" |
| well_known_url | string | The URL for the Shared Signals Framework configuration, e.g. "/.well-known/sse-configuration/{integration_uuid}/". https://openid.net/specs/openid-sse-framework-1_0.html#rfc.section.6.2.1 |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/dlp_RiskScoreIntegration",
"title": "dlp_RiskScoreIntegration",
"properties": {
"account_tag": {
"description": "The Cloudflare account tag.",
"type": "string"
},
"active": {
"description": "Whether this integration is enabled and should export changes in risk score.",
"type": "boolean"
},
"created_at": {
"description": "When the integration was created in RFC3339 format.",
"format": "date-time",
"type": "string"
},
"id": {
"description": "The id of the integration, a UUIDv4.",
"format": "uuid",
"type": "string"
},
"integration_type": {
"$ref": "#/components/schemas/dlp_RiskScoreIntegrationType"
},
"reference_id": {
"description": "A reference ID defined by the client.\nShould be set to the Access-Okta IDP integration ID.\nUseful when the risk-score integration needs to be associated with a secondary asset and recalled using that ID.",
"type": "string"
},
"tenant_url": {
"description": "The base URL for the tenant. E.g. \"https://tenant.okta.com\"",
"type": "string"
},
"well_known_url": {
"description": "The URL for the Shared Signals Framework configuration, e.g. \"/.well-known/sse-configuration/{integration_uuid}/\". https://openid.net/specs/openid-sse-framework-1_0.html#rfc.section.6.2.1",
"type": "string"
}
},
"required": [
"id",
"account_tag",
"integration_type",
"reference_id",
"tenant_url",
"well_known_url",
"active",
"created_at"
],
"type": "object"
}