| title | List trainingCampaign objects |
|---|---|
| description | Get a list of trainingCampaign objects and their properties. |
| author | akgraph |
| ms.localizationpriority | medium |
| ms.subservice | security |
| doc_type | apiPageType |
| ms.date | 06/10/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Get a list of trainingCampaign objects and their properties.
[!INCLUDE national-cloud-support]
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]
GET /security/attackSimulation/trainingCampaignsThis method supports the $count, $filter, $orderby, $skipToken, $top, and $select OData query parameters to help customize the response. You can use the $filter and $orderby query parameters on the campaignSchedule/completionDateTime, displayName, campaignSchedule/launchDateTime, and campaignSchedule/status properties.
If the result set spans multiple pages, the response body contains an @odata.nextLink that you can use to page through the result set.
The following list shows some examples of requests that use the supported OData query parameters:
GET /security/attackSimulation/trainingCampaigns?$count=true
GET /security/attackSimulation/trainingCampaigns?$filter={property} eq '{property-value}'
GET /security/attackSimulation/trainingCampaigns?$filter={property} eq '{property-value}'&$top=5
GET /security/attackSimulation/trainingCampaigns?$orderby={property}
GET /security/attackSimulation/trainingCampaigns?$skipToken={skipToken}
GET /security/attackSimulation/trainingCampaigns?$top=1
GET /security/attackSimulation/trainingCampaigns?$select={property}| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this method returns a 200 OK response code and a collection of trainingCampaign objects in the response body.
The following example shows a request.
GET https://graph.microsoft.com/beta/security/attackSimulation/trainingCampaigns[!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]
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": [
{
"@odata.etag": "W/\"dub9zfj4Rk68MmY/KYwXKgADRgyGsw==\"",
"id": "81c59451-2929-5b39-86f0-5a2b15f1314f",
"displayName": "Sample Training Campaign",
"description": "Sample Training Campaign Description",
"createdDateTime": "2024-02-18T08:36:07.6534871Z",
"lastModifiedDateTime": "2024-02-19T08:00:01.9417887Z",
"endUserNotificationSetting": null,
"includedAccountTarget": null,
"excludedAccountTarget": null,
"trainingSetting": null,
"campaignSchedule": {
"launchDateTime": "2024-02-18T08:37:44Z",
"completionDateTime": "2024-02-19T07:59:44Z",
"status": "completed"
},
"createdBy": {
"id": "99af58b9-ef1a-412b-a581-cb42fe8c8e21",
"displayName": "Reed Flores",
"email": "reed@contoso.com"
},
"lastModifiedBy": {
"id": "99af58b9-ef1a-412b-a581-cb42fe8c8e21",
"displayName": "Reed Flores",
"email": "reed@contoso.com"
},
}
]
}