# 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 ```text https://{server-hostname}:8383/bsp/api/v1/bmp/manage_addons/{addon_id} ``` ### Scope ```text BrowserManager.UPDATE ``` ### Header ```text Authorization: d92d4xxxxxxxxxxxxx15f52 ``` ### Request Parameters #### Request Headers | Parameter | Type | Required | Value | Description | |---|---|---|---|---| | Content-Type | string | Mandatory | application/json | | | Accept | string | Mandatory | application/json | | #### Path Parameters | Parameter | Type | Required | Description | |---|---|---|---| | addon_id | string | Mandatory | Add-On Management Profile ID from [List Add-On Management Profiles](https://www.manageengine.com/products/desktop-central/help/api/onpremise/add-on-management-list-addon-profiles.html) response (`manage_addon_id` field) | #### Request Body JSON body with updated profile name and/or description. **Content type:** `application/json` | Attribute | Type | Required | Description | |---|---|---|---| | 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://appdomain/bsp/api/v1/bmp/manage_addons/{addon_id} \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' \ --header 'Content-Type: application/json' \ --data '{"manage_addon_description":"Updated description","manage_addOn_name":"Updated Addon Name"}' ``` ### 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` | Attribute | Type | Description | |---|---|---| | 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` | Attribute | Type | Description | |---|---|---| | errorCode | long | Unauthorized error code returned when authentication credentials are missing, expired, or invalid (authentication=required) | | errorMsg | string | Authentication failure reason | ### HTTP Code 403 **Response body:** `application/json` | Attribute | Type | Description | |---|---|---| | errorCode | long | Forbidden error code returned when the authenticated user does not have the required uem-roles (e.g., DataEncryption_Admin or DataEncryptionRecoveryKey_Admin) | | errorMsg | string | Message indicating insufficient privileges to access this resource | ### HTTP Code 404 **Response body:** `application/json` | Attribute | Type | Description | |---|---|---| | errormsg | string | Message indicating the requested resource was not found | ### HTTP Code 429 **Response body:** `application/json` | Attribute | Type | Description | |---|---|---| | errorCode | long | Rate limit error code returned when the API call threshold (configured via threshold/duration in security XML) is exceeded; client is locked out for lock-period minutes | | errorMsg | string | Rate limit exceeded message with retry guidance | ### HTTP Code 500 **Response body:** `application/json` | Attribute | Type | Description | |---|---|---| | errormsg | string | Message describing the internal server error | ## Possible Response Codes | HTTP Code | |---| | 200 | | 401 | | 403 | | 404 | | 429 | | 500 | ## Sample Responses ### 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" } ``` ### HTTP 401 Unauthorized ```json { "errorCode": "UNAUTHORIZED", "errorMsg": "You are not authorized to perform this action" } ``` ### HTTP 403 Insufficient permissions ```json { "errorCode": "FORBIDDEN", "errorMsg": "User does not have permission to perform this operation" } ``` ### HTTP 404 Profile not found ```json { "errormsg": "Profile not found" } ``` ### HTTP 429 Rate limit exceeded ```json { "errorCode": "RATE_LIMIT_EXCEEDED", "errorMsg": "Too many requests. Please try again after 5 minutes" } ``` ### HTTP 500 Server error ```json { "errormsg": "Internal Server error, Please try again in a moment." } ``` ## Rate Limit **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.