# Modify an existing add-on management profile Modifies an add-on management profile's name and description. Use Modify Payload to change browser-specific rules. ## Endpoint `PUT /bsp/api/v1/bmp/manage_addons/{addon_id}` ## Request ### Request URL `https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/bsp/api/v1/bmp/manage_addons/{addon_id}` ### Scope `DesktopCentralCloud.BrowserManager.UPDATE` ### Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Content-Type** `string` — **Mandatory** - `application/json` - **Accept** `string` — **Mandatory** - `application/json` #### Path Parameters - **addon_id** `string` — **Mandatory** - Add-On Management Profile ID from [List Add-On Management Profiles](https://www.manageengine.com/products/desktop-central/help/api/cloud/add-on-management-list-addon-profiles.html) response (`manage_addon_id` field) #### Request Body JSON body with updated profile name and/or description `application/json` - `JSON Object` - **manage_addOn_name** `string` — Optional - Updated profile name (max 500 characters) - **manage_addon_description** `string` — Optional - Updated profile description (max 500 characters) ### Sample Request ```curl curl --request PUT \ --url https://appdomains/bsp/api/v1/bmp/manage_addons/{addon_id} \ --header 'Accept: application/json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' \ --header 'Content-Type: application/json' \ --data '{}' ``` ### Sample Request Body Update profile name and description ```json { "manage_addon_description": "Updated description", "manage_addOn_name": "Updated Addon Name" } ``` ## Response Parameters ### HTTP Code 200 Response Body — `application/json` - `JSON Object` - **profile_collection_status** `string` - Profile status. 110=Published, 1=Draft - **collection_id** `string` - Collection reference ID - **profile_name** `string` - Updated profile name - **profile_type** `string` - Profile type identifier - **profile_id** `string` - Unique profile identifier - **configuredstatus** `JSON Object` - Indicates which browser add-on policies are configured - **last_modified_by** `string` - User ID who performed the modification - **profile_description** `string` - Updated profile description ### HTTP Code 401 Response Body — `application/json` - `JSON Object` - **errorCode** `long` - Unauthorized error code: credentials missing, expired, or invalid - **errorMsg** `string` - Authentication failure reason ### HTTP Code 403 Response Body — `application/json` - `JSON Object` - **errorCode** `long` - Error code indicating insufficient permissions - **errorMsg** `string` - Message indicating insufficient privileges to access this resource ### HTTP Code 404 Response Body — `application/json` - `JSON Object` - **errormsg** `string` - Message indicating the requested resource was not found ### HTTP Code 429 Response Body — `application/json` - `JSON Object` - **errorCode** `long` - Rate limit error code returned when the API call reached threshold - **errorMsg** `string` - Rate limit exceeded message with retry guidance ### HTTP Code 500 Response Body — `application/json` - `JSON Object` - **errormsg** `string` - Message describing the internal server error ### Possible Response Codes - `200` — HTTP code - `401` — HTTP code - `403` — HTTP code - `404` — HTTP code - `429` — HTTP code - `500` — HTTP code ### Sample Response: HTTP 200 Profile metadata updated ```json { "profile_collection_status": "1", "collection_id": "222", "profile_name": "TestAddon_Renamed", "profile_type": "64025", "profile_id": "111", "configuredstatus": { "manage_firefox_addons_count": "true", "manage_chrome_addons_count": "true" }, "last_modified_by": "1", "profile_description": "Updated description" } ``` ### Sample Response: HTTP 401 Unauthorized ```json { "errorCode": "UNAUTHORIZED", "errorMsg": "You are not authorized to perform this action" } ``` ### Sample Response: HTTP 403 Insufficient permissions ```json { "errorCode": "FORBIDDEN", "errorMsg": "User does not have permission to perform this operation" } ``` ### Sample Response: HTTP 404 Profile not found ```json { "errormsg": "Profile not found" } ``` ### Sample Response: HTTP 429 Rate limit exceeded ```json { "errorCode": "RATE_LIMIT_EXCEEDED", "errorMsg": "Too many requests. Please try again after 5 minutes" } ``` ### Sample Response: HTTP 500 Server error ```json { "errormsg": "Internal Server error, Please try again in a moment." } ``` ## Rate Limit ![](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.