# Add a new Accessibility Settings payload configuration to an existing profile To create Ios Accessibility Settings Configuration ## Endpoints **POST** `/api/v1/mdm/profiles/{profile_id}/payloads/iosaccessibilitysettings` ## Request URL `https://{server-hostname}:8383/api/v1/mdm/profiles/{profile_id}/payloads/iosaccessibilitysettings` ## Scope `MDMDeviceMgmt.CREATE` ## Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Content-Type** (`string`, Mandatory): `application/json` - **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. ### Request Body `application/json` - **bold_text_enabled** (`boolean`, Optional): Bold Text Enabled. Default: False - **increase_contrast_enabled** (`boolean`, Optional): Increase Contrast Enabled. Default: False - **reduce_motion_enabled** (`boolean`, Optional): Reduce Motion Enabled. Default: False - **reduce_transparency_enabled** (`boolean`, Optional): Reduce Transparency Enabled. Default: False - **text_size** (`integer`, Optional): Text Size. Default: 4 - **touch_accommodations_enabled** (`boolean`, Optional): Touch Accommodations Enabled. Default: False - **voice_over_enabled** (`boolean`, Optional): Voice Over Enabled. Default: False - **zoom_enabled** (`boolean`, Optional): Zoom Enabled. Default: False ## Sample Request ```curl curl --request POST \ --url https://appdomain/api/v1/mdm/profiles/{profile_id}/payloads/iosaccessibilitysettings \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' \ --header 'Content-Type: application/json' \ --data '{"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}' ``` ## Sample Request Body Add Accessibility Settings payload to the profile ```json { "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 } ``` ## Response Parameters ### HTTP Code 200 Response Body: `application/json` - **payload_id** (`long`): Unique identifier for the created 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 ## Possible Response Codes - **200**: HTTP code ## Sample Response: HTTP 200 Accessibility Settings payload successfully added ```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 } ``` ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **Duration:** 1 minute | **Threshold:** 30 | **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.