Browser Pools
Update a browser pool
Updates the configuration used to create browsers in the pool. As with creation, save_changes on the pool profile is ignored (not rejected); pooled browsers never persist changes back to the profile. To clear the profile reference, send profile: { "id": "" }. Clearing the profile also disables refresh_on_profile_update.
patch/browser_pools/{id_or_name}
Path parameters
id_or_namestring required
Browser pool ID or name
Request body
Example request
{
"size": 10,
"name": "my-pool",
"stealth": true,
"refresh_on_profile_update": true,
"viewport": {
"width": 1280,
"height": 800,
"refresh_rate": 60
},
"kiosk_mode": true,
"start_url": "https://example.com"
}Response
Browser pool details
Example response
{
"id": "iv25ujqf37x3j07dwoffegqr",
"name": "my-pool",
"available_count": 85,
"acquired_count": 15,
"browser_pool_config": {
"size": 10,
"name": "my-pool",
"stealth": true,
"refresh_on_profile_update": true,
"viewport": {
"width": 1280,
"height": 800,
"refresh_rate": 60
},
"kiosk_mode": true,
"start_url": "https://example.com"
},
"profile_id": "iv25ujqf37x3j07dwoffegqr"
}