Skip to content

Latest commit

 

History

History
146 lines (110 loc) · 4.81 KB

attacksimulationroot-list-loginpage.md

File metadata and controls

146 lines (110 loc) · 4.81 KB
title description author ms.localizationpriority ms.subservice doc_type
List loginPages
Get a list of the loginPage objects and their properties.
stuartcl
medium
security
apiPageType

List loginPages

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Get a list of the loginPage objects and their properties.

[!INCLUDE national-cloud-support]

Permissions

Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

[!INCLUDE permissions-table]

HTTP request

GET /security/attackSimulation/loginPages?$filter=source eq 'tenant'

Optional query parameters

This method supports the $count, $filter, $orderby, $skipToken, $top, and $select OData query parameters to help customize the response. If the result set spans multiple pages, the response body contains an @odata.nextLink that you can use to page through the result set.

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.

Request body

Don't supply a request body for this method.

Response

If successful, this method returns a 200 OK response code and a collection of loginPage objects in the response body.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/security/attackSimulation/loginPages?$filter=source eq 'tenant'

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

The following example shows the response.

Note: The response object shown here might be shortened for readability.

HTTP/1.1 200 OK
Content-Type: application/json

{
  "value": [
    {
      "id": "2f5548d1-0dd8-4cc8-9de0-e0d6ec7ea3dc",
      "diplayName": "AttackSimTest loginPage",
      "description": "AttackSim Test loginPage",
      "status": "draft",
      "source": "tenant",
      "language": "en",
      "createdBy": {
        "email": "alexwaber@contoso.com",
        "id": "1rdfcb49-1065-46a6-b1c3-672071e20a6b",
        "displayName": "Alex Waber"
      },
      "createdDateTime": "2022-01-12T03:15:01.5906699Z",
      "lastModifiedBy": {
        "email": "alexwaber@contoso.com",
        "id": "1rdfcb49-1065-46a6-b1c3-672071e20a6b",
        "displayName": "Alex Waber"
      },
      "lastModifiedDateTime": "2021-10-07T12:23:18.8157586Z"
    }
  ]
}