# Retrieve the full configuration details of a Exploit Guard payload item Get Windows Exploit Guard Policy payload details ## Endpoint `GET /api/v1/mdm/profiles/{profile_id}/payloads/windowsexploitguardpolicy/payloaditems/{payload_id}` ## Request ### Request URL `https://{server-hostname}:8383/api/v1/mdm/profiles/{profile_id}/payloads/windowsexploitguardpolicy/payloaditems/{payload_id}` ### Scope `MDMDeviceMgmt.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** `string` — Mandatory - `application/json` #### Path Parameters - **profile_id** `string` — Mandatory - Unique identifier of the profile. Obtain from the [Create Profile](https://www.manageengine.com/products/desktop-central/help/api/onpremise/mdm-profiles-create-profile.html) or [Get Profiles](https://www.manageengine.com/products/desktop-central/help/api/onpremise/mdm-profiles-get-profile.html) response. - **payload_id** `string` — Mandatory - Unique identifier of the payload item. Obtain from the [Get Payload Item IDs](https://www.manageengine.com/products/desktop-central/help/api/onpremise/windows-get-exploit-guard-payload.html) response. ### Sample Request ```curl curl --request GET \ --url https://appdomain/api/v1/mdm/profiles/{profile_id}/payloads/windowsexploitguardpolicy/payloaditems/{payload_id} \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response body: `application/json` - `JSON Object` - **payload_id** `long` - Unique identifier of the payload item. - **configure_network_guard** `integer` - Configure Network Guard. - **enable_folder_protection** `integer` - Enable Folder Protection. - **data_blob** `string` - Data Blob. - **asr_rules** `JSON Array` - Asr Rules. - **folder_rules** `JSON Array` - Folder Rules. - **asr_exclude_rules** `JSON Array` - Asr Exclude Rules. ### Possible Response Codes - **200** `HTTP code` ### Sample Response: HTTP 200 Full configuration details of Exploit Guard payload item ```json { "payload_id": "9007199254741295", "asr_exclude_rules": [ { "rule_type": "1", "value": "C:\\Winodws\\App.exe" } ], "enable_folder_protection": "0", "configure_network_guard": "1", "folder_rules": [ { "rule_type": "2", "value": "C:\\windows" }, { "rule_type": "3", "value": "C:\\windows\\app.exe" } ], "data_blob": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiP", "asr_rules": [ { "mode": "1", "guid": "56a863a9-875e-4185-98a7-b882c64b5ce5" }, { "mode": "1", "guid": "7674ba52-37eb-4a4f-a9a1-f0f9a1619a2c" }, { "mode": "1", "guid": "9e6c4e1f-7d60-472f-ba1a-a39ef669e4b2" }, { "mode": "1", "guid": "75668c1f-73b5-4cf0-bb93-3ecf5cb7cc84" }, { "mode": "1", "guid": "26190899-1602-49e8-8b27-eb1d0a1ce869" }, { "mode": "1", "guid": "e6db77e5-3df2-4cf1-b95a-636979351e5b" } ] } ``` ## API Rate Limit ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **Duration:** 1 minute | **Threshold:** 120 | **Lock period:** 5 minutes Duration - Time window for the threshold. Threshold - Number of API calls allowed within the specified duration. Lock Period - Wait time before consecutive API requests.