- API
- Automation
- Docker
- Browserless(Beta)
BatchUpdateProxy
PUT
/profiles/proxy/batch
v2/Profiles/Proxy
Request
Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Body Params application/json
profileIds
array[string]
optional
proxyConfig
objectÂ
optional
url
stringÂ
optional
protocol
stringÂ
optional
username
stringÂ
optional
password
stringÂ
optional
host
stringÂ
optional
port
stringÂ
optional
Example
{
"profileIds": [
"86b68026-0d68-4ce0-a30f-ccf58632446c"
],
"proxyConfig": {
"url": "http://admin:[email protected]:8000"
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'http://localhost:8848/api/v2/profiles/proxy/batch' \
--header 'Content-Type: application/json' \
--data-raw '{
"profileIds": [
"86b68026-0d68-4ce0-a30f-ccf58632446c"
],
"proxyConfig": {
"url": "http://admin:[email protected]:8000"
}
}'
Responses
🟢200OK
application/json
Body
code
integerÂ
optional
data
stringÂ
optional
err
booleanÂ
optional
msg
stringÂ
optional
Example
{
"code": 0,
"data": "string",
"err": true,
"msg": "string"
}