# Modify the configuration of a Sound Configuration payload item within a profile Modify Android Wallpaper policy payload ## Endpoint **PUT** `/api/v1/mdm/profiles/{profile_id}/payloads/androidsoundconfigurationpolicy/payloaditems/{payload_id}` ## Request URL `https://{server-hostname}:8383/api/v1/mdm/profiles/{profile_id}/payloads/androidsoundconfigurationpolicy/payloaditems/{payload_id}` ## Scope `MDMDeviceMgmt.UPDATE` ## Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers | Parameter | Type | Required | Value | |---|---|---|---| | Content-Type | string | Mandatory | `application/json` | | 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/android-get-sound-configuration-payload.html) response | ### Request Body `application/json` | Attribute | Type | Required | Description | |---|---|---|---| | ring_mode | integer | Optional | Ringer mode. -1 = Not Configured, 0 = Silent, 1 = Vibrate, 2 = Normal. Default: -1 | | ring_volume | integer | Optional | Ring volume level (0-100, -1 = Not Configured). Default: -1 | | notification_volume | integer | Optional | Notification volume level (0-100, -1 = Not Configured). Default: -1 | | media_volume | integer | Optional | Media volume level (0-100, -1 = Not Configured). Default: -1 | | alarm_volume | integer | Optional | Alarm volume level (0-100, -1 = Not Configured). Default: -1 | | system_volume | integer | Optional | System volume level (0-100, -1 = Not Configured). Default: -1 | | call_volume | integer | Optional | Call volume level (0-100, -1 = Not Configured). Default: -1 | | allow_volume_modification | boolean | Optional | Whether the user can modify volume settings. Default: false | | is_ringtone_audio_file_modified | boolean | Optional | Whether the ringtone audio file has been modified in this request | | ringtone_audio_file | long | Optional | File path or ID of the custom ringtone audio file | | allow_ringtone_modification | boolean | Optional | Whether the user can modify the ringtone. Default: false | ## Sample Request ```curl curl --request PUT \ --url https://appdomain/api/v1/mdm/profiles/{profile_id}/payloads/androidsoundconfigurationpolicy/payloaditems/{payload_id} \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' \ --header 'Content-Type: application/json' \ --data '{"ring_mode":-1,"notification_volume":-1,"call_volume":-1,"media_volume":-1,"allow_volume_modification":false,"allow_ringtone_modification":false,"ring_volume":-1,"alarm_volume":-1,"system_volume":-1,"ringtone_file_name":"Zylker User","ringtone_audio_file":"value"}' ``` ## Sample Request Body Modify Sound Configuration payload item ```json { "ring_mode": -1, "notification_volume": -1, "call_volume": -1, "media_volume": -1, "allow_volume_modification": false, "allow_ringtone_modification": false, "ring_volume": -1, "alarm_volume": -1, "system_volume": -1, "ringtone_file_name": "Zylker User", "ringtone_audio_file": "value" } ``` ## Response Parameters ### HTTP Code 200 Response Body: `application/json` | Attribute | Type | Description | |---|---|---| | payload_id | long | Unique identifier of the payload item | | ring_mode | integer | Ringer mode. -1 = Not Configured, 0 = Silent, 1 = Vibrate, 2 = Normal. Default: -1 | | ring_volume | integer | Ring volume level (0-100, -1 = Not Configured). Default: -1 | | notification_volume | integer | Notification volume level (0-100, -1 = Not Configured). Default: -1 | | media_volume | integer | Media volume level (0-100, -1 = Not Configured). Default: -1 | | alarm_volume | integer | Alarm volume level (0-100, -1 = Not Configured). Default: -1 | | system_volume | integer | System volume level (0-100, -1 = Not Configured). Default: -1 | | call_volume | integer | Call volume level (0-100, -1 = Not Configured). Default: -1 | | allow_volume_modification | boolean | Whether the user can modify volume settings. Default: false | | is_ringtone_audio_file_modified | boolean | Whether the ringtone audio file has been modified in this request | | ringtone_audio_file | long | File path or ID of the custom ringtone audio file | | allow_ringtone_modification | boolean | Whether the user can modify the ringtone. Default: false | ## Possible Response Codes | Code | Type | |---|---| | 200 | HTTP code | ## Sample Response: HTTP 200 Sound Configuration payload item successfully modified ```json { "ring_mode": -1, "payload_id": 9007199254741000, "notification_volume": -1, "call_volume": -1, "media_volume": -1, "allow_volume_modification": false, "allow_ringtone_modification": false, "ring_volume": -1, "alarm_volume": -1, "system_volume": -1, "ringtone_file_name": "Zylker User", "ringtone_audio_file": "value" } ``` ## Rate Limits ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **Duration:** 1 minute | **Threshold:** 60 | **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.