Skip to content

Latest commit

 

History

History
76 lines (63 loc) · 3.35 KB

File metadata and controls

76 lines (63 loc) · 3.35 KB
title landingPage resource type
description Represents an attack simulation landing page.
author stuartcl
ms.localizationpriority medium
ms.subservice security
doc_type resourcePageType
ms.date 05/23/2024

landingPage resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents an attack simulation landing page.

Inherits from entity.

Methods

Method Return type Description
List landingPage collection Get a list of the landingPage objects and their properties.
Get landingPage Get a landingPage associated with an attack simulation campaign for a tenant.

Properties

Property Type Description
createdBy emailIdentity Identity of the user who created the landing page.
createdDateTime DateTimeOffset Date and time when the landing page was created. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
description String Description of the landing page as defined by the user.
displayName String The display name of the landing page.
id String Unique identifier for the landingPage object. Inherited from entity.
lastModifiedBy emailIdentity Email identity of the user who last modified the landing page.
lastModifiedDateTime DateTimeOffset Date and time when the landing page was last modified. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
locale String Content locale.
source simulationContentSource The source of the content. The possible values are: unknown, global, tenant, unknownFutureValue.
status simulationContentStatus The status of the simulation. The possible values are: unknown, draft, ready, archive, delete, unknownFutureValue.
supportedLocales String collection Supported locales.

Relationships

Relationship Type Description
details landingPageDetail collection The detail information for a landing page associated with a simulation during its creation.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.landingPage",
  "createdBy": {"@odata.type": "microsoft.graph.emailIdentity"},
  "createdDateTime": "String (timestamp)",
  "description": "String",
  "displayName": "String",
  "id": "String (identifier)",
  "lastModifiedBy": {"@odata.type": "microsoft.graph.emailIdentity"},
  "lastModifiedDateTime": "String (timestamp)",
  "locale": "String",
  "source": "String",
  "status": "String",
  "supportedLocales": ["String"]
}