Get simulationAutomation
Namespace: microsoft.graph
Get an attack simulation automation for a tenant.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type | Permissions (from least to most privileged) |
---|---|
Delegated (work or school account) | AttackSimulation.Read.All |
Delegated (personal Microsoft account) | Not supported. |
Application | AttackSimulation.Read.All |
HTTP request
GET /security/attackSimulation/simulationAutomations/{simulationAutomationId}
Optional query parameters
This method does not currently support the OData query parameters to customize the response.
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. |
Request body
Do not supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a simulationAutomation object in the response body.
Examples
Request
The following is an example of a request.
GET https://graph.microsoft.com/v1.0/security/attackSimulation/simulationAutomations/fbad62b0-b32d-b6ac-9f48-d84bbea08f96
Response
The following is an example of the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.type": "#microsoft.graph.simulationAutomation",
"id": "fbad62b0-b32d-b6ac-9f48-d84bbea08f96",
"displayName": "Reed Flores",
"description": "Sample Simulation Automation Description",
"status": "running",
"createdDateTime": "2022-01-01T01:01:01.01Z",
"createdBy": {
"id": "99af58b9-ef1a-412b-a581-cb42fe8c8e21",
"displayName": "Reed Flores",
"email": "reed@contoso.com"
},
"lastModifiedDateTime": "2022-01-01T01:01:01.01Z",
"lastModifiedBy": {
"id": "99af58b9-ef1a-412b-a581-cb42fe8c8e21",
"displayName": "Reed Flores",
"email": "reed@contoso.com"
},
"lastRunDateTime": "2022-01-01T01:01:01.01Z",
"nextRunDateTime": "2022-01-01T01:01:01.01Z"
}
Feedback
Submit and view feedback for