# Retrieve the full configuration details of a Accessibility Settings payload item To get Ios Accessibility Settings payload item ## Endpoint **GET** `/api/v1/mdm/profiles/{profile_id}/payloads/iosaccessibilitysettings/payloaditems/{payload_id}` ## Request ### Request URL ```text https://{server-hostname}:8383/api/v1/mdm/profiles/{profile_id}/payloads/iosaccessibilitysettings/payloaditems/{payload_id} ``` ### Scope ```text MDMDeviceMgmt.READ ``` ### Header ```text 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/ios-get-accessibility-settings-payload.html) response. ### Sample Request ```curl curl --request GET \ --url https://appdomain/api/v1/mdm/profiles/{profile_id}/payloads/iosaccessibilitysettings/payloaditems/{payload_id} \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response body: `application/json` - `payload_id` `long` - Unique identifier of the payload item - `bold_text_enabled` `boolean` - Bold Text Enabled. Default: False - `increase_contrast_enabled` `boolean` - Increase Contrast Enabled. Default: False - `reduce_motion_enabled` `boolean` - Reduce Motion Enabled. Default: False - `reduce_transparency_enabled` `boolean` - Reduce Transparency Enabled. Default: False - `text_size` `integer` - Text Size. Default: 4 - `touch_accommodations_enabled` `boolean` - Touch Accommodations Enabled. Default: False - `voice_over_enabled` `boolean` - Voice Over Enabled. Default: False - `zoom_enabled` `boolean` - Zoom Enabled. Default: False ### Sample Response: HTTP 200 Full configuration details of Accessibility Settings payload item ```json { "payload_id": 9007199254741000, "touch_accommodations_enabled": false, "reduce_motion_enabled": false, "text_size": 4, "voice_over_enabled": false, "bold_text_enabled": false, "zoom_enabled": false, "reduce_transparency_enabled": false, "increase_contrast_enabled": false } ``` ### Possible Response Codes - **200** — HTTP code ## 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.