# Retrieve the full configuration details of a App Lock payload item To get App Lock policy payload item ## Endpoint `GET /api/v1/mdm/profiles/{profile_id}/payloads/applockpolicy/payloaditems/{payload_id}` ## Request ### Request URL `https://{server-hostname}:8383/api/v1/mdm/profiles/{profile_id}/payloads/applockpolicy/payloaditems/{payload_id}` ### Scope `MDMDeviceMgmt.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers | Parameter | Type | Required | Value | |---|---|---|---| | Accept | string | Mandatory | application/json | #### Path Parameters | Parameter | Type | Required | Description | |---|---|---|---| | 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/apple-tv-get-app-lock-payload-apple-tv.html) response | ### Sample Request ```curl curl --request GET \ --url https://appdomain/api/v1/mdm/profiles/{profile_id}/payloads/applockpolicy/payloaditems/{payload_id} \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response body: `application/json` | Parameter | Type | Description | |---|---|---| | payload_id | long | Unique identifier of the payload item | | idle_refresh_timeout | integer | Idle refresh timeout for web app kiosk in seconds. -1 means disabled. Default: -1 | | clear_session_and_cookies | boolean | Clear Session And Cookies. Default: true | | webclippolicies | JSON Array | List of web clips configured for kiosk mode | | auto_distribute_webapp | boolean | Auto Distribute Webapp. Default: true | | app_name | string | App Name | | identifier | string | Identifier | | disable_touch | boolean | Disable Touch. Default: false | | disable_device_rotation | boolean | Disable Device Rotation. Default: false | | disable_volume_buttons | boolean | Disable Volume Buttons. Default: false | | disable_ringer_switch | boolean | Disable Ringer Switch. Default: false | | disable_sleep_button | boolean | Disable Sleep Button. Default: false | | disable_auto_lock | boolean | Disable Auto Lock. Default: true | | voice_over | boolean | Voice Over. Default: false | | zoom | boolean | Zoom. Default: false | | invert_colors | boolean | Invert Colors. Default: false | | asst_touch | boolean | Asst Touch. Default: false | | enable_speak_selection | boolean | Enable Speak Selection. Default: false | | enable_mono_audio | boolean | Enable Mono Audio. Default: false | | enable_voice_control | boolean | Enable Voice Control. Default: false | | show_me_mdm_app | boolean | Show Me Mdm App. Default: true | | kiosk_mode | integer | Kiosk mode type. Allowed values: 1=Single App Kiosk, 2=Multi App Kiosk, 3=Single Web App Kiosk | | allowed_apps | JSON Array | List of allowed kiosk apps | | autonomous_kiosk_apps | JSON Array | List of autonomous single app mode apps | | auto_distribute_apps | boolean | Auto Distribute Apps. Default: false | ### Possible Response Codes | Code | Type | |---|---| | 200 | HTTP code | ### Sample Response: HTTP 200 Full configuration details of App Lock payload item ```json { "app_name": "Zylker User", "identifier": "value", "payload_id": 9007199254741000, "disable_volume_buttons": false, "disable_ringer_switch": false, "idle_refresh_timeout": -1, "webclippolicies": [ { "webclip_policy_id": 9007199254741076, "webclip_name": "Zylker Web Clip" } ], "clear_session_and_cookies": true, "disable_touch": false, "disable_device_rotation": false, "kiosk_mode": 1, "auto_distribute_webapp": true } ``` ## Rate Limit ![Help icon](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.