latestOpenAPI 3.1.02026-08-22154287463.4 KB
858365328f92
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
{
"kiosk_mode": true,
"name": "my-pool",
"network": {
"private_hosts": [
"*.example.ts.net",
"100.64.0.0/10"
]
},
"refresh_on_profile_update": true,
"size": 10,
"start_url": "https://example.com",
"stealth": true,
"viewport": {
"height": 800,
"refresh_rate": 60,
"width": 1280
}
}Response
Browser pool details
Example response
{
"acquired_count": 15,
"available_count": 85,
"browser_pool_config": {
"kiosk_mode": true,
"name": "my-pool",
"network": {
"private_hosts": [
"*.example.ts.net",
"100.64.0.0/10"
]
},
"refresh_on_profile_update": true,
"size": 10,
"start_url": "https://example.com",
"stealth": true,
"viewport": {
"height": 800,
"refresh_rate": 60,
"width": 1280
}
},
"id": "iv25ujqf37x3j07dwoffegqr",
"name": "my-pool",
"profile_id": "iv25ujqf37x3j07dwoffegqr"
}