Creates a new add-on in the inventory and returns its details.
https://{server-hostname}:8383/bsp/api/v1/bmp/addons
BrowserManager.CREATECopied!
Authorization: d92d4xxxxxxxxxxxxx15f52
JSON body with addon identifier and browser type. For extensions, provide the webstore ID. For plugins, provide the CLSID/GUID
Addon identifier. For extensions: the webstore ID. For plugins: the CLSID/GUID in curly braces
Browser type code. 1=Chrome, 2=Firefox, 3=Internet Explorer, 5=Chromium Edge, 31=Ulaa, 1024=Other Chromium
curl --request POST \
--url https://appdomain/bsp/api/v1/bmp/addons \
--header 'Accept: application/json' \
--header 'Authorization: d92d4xxxxxxxxxxxxx15f52' \
--header 'Content-Type: application/json' \
--data '{"browser_type":1,"id":"cjpalhdlnbpafiamejdnhcphjbkeiagm"}'Chrome extension (browser_type=1)
{
"browser_type": 1,
"id": "cjpalhdlnbpafiamejdnhcphjbkeiagm"
}
Firefox extension (browser_type=2)
{
"browser_type": 2,
"id": "uBlock0@raymondhill.net"
}
Chromium Edge extension (browser_type=5)
{
"browser_type": 5,
"id": "cjpalhdlnbpafiamejdnhcphjbkeiagm"
}
Ulaa extension (browser_type=31)
{
"browser_type": 31,
"id": "cjpalhdlnbpafiamejdnhcphjbkeiagm"
}
Other Chromium extension (browser_type=1024)
{
"browser_type": 1024,
"id": "cjpalhdlnbpafiamejdnhcphjbkeiagm"
}
IE plugin by CLSID (browser_type=3)
{
"browser_type": 3,
"id": "{CAFEEFAC-0018-0000-FFFF-ABCDEFFEDCBA}"
}
Unique identifier for the extension group
Browser type code. 1=Chrome, 2=Firefox, 3=Internet Explorer, 5=Chromium Edge, 31=Ulaa, 1024=Other Chromium
Unique binary ID used as the universal addon reference
Addon webstore identifier (e.g., Chrome extension ID)
Customer identifier
Type of the binary. Only present on first creation
Unauthorized error code returned when authentication credentials are missing, expired, or invalid (authentication=required)
Authentication failure reason
Forbidden error code returned when the authenticated user does not have the required uem-roles (e.g., DataEncryption_Admin or DataEncryptionRecoveryKey_Admin)
Message indicating insufficient privileges to access this resource
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
Rate limit exceeded message with retry guidance
Message describing the internal server error
Error code identifying the type of server error
Created Chrome extension
{
"extension_group_id": "100",
"browser_type": "1",
"binary_id": "100",
"id": "cjpalhdlnbpafiamejdnhcphjbkeiagm",
"customer_id": "2",
"binary_type": "7"
}
Created Firefox extension
{
"extension_group_id": "101",
"browser_type": "2",
"binary_id": "101",
"id": "uBlock0@raymondhill.net",
"customer_id": "2",
"binary_type": "7"
}
Created Chromium Edge extension
{
"extension_group_id": "102",
"browser_type": "5",
"binary_id": "102",
"id": "cjpalhdlnbpafiamejdnhcphjbkeiagm",
"customer_id": "2",
"binary_type": "7"
}
Created Ulaa extension
{
"extension_group_id": "338",
"browser_type": "31",
"binary_id": "338",
"id": "oeopbcgkkoapgobdbedcemjljbihmemj",
"customer_id": "1",
"binary_type": "7"
}
Created Other Chromium extension
{
"extension_group_id": "103",
"browser_type": "1024",
"binary_id": "103",
"id": "cjpalhdlnbpafiamejdnhcphjbkeiagm",
"customer_id": "2",
"binary_type": "7"
}
Unauthorized
{
"errorCode": "UNAUTHORIZED",
"errorMsg": "You are not authorized to perform this action"
}
Insufficient permissions
{
"errorCode": "FORBIDDEN",
"errorMsg": "You do not have permission to access this resource"
}
Rate limit exceeded
{
"errorCode": "RATE_LIMIT_EXCEEDED",
"errorMsg": "You have exceeded the maximum number of API calls. Please try again later."
}
Server error
{
"error_description": "Internal Server error, Please try again in a moment.",
"error_code": "COM0004"
}
![]()
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.
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.