Profile
Update proxy for multiple profiles
Introduction
API Reference
- Profile
- GETGet all profiles
- GETGet a random fingerprint
- PATCHUpdate proxy for multiple profiles
- PATCHUpdate chrome extensions for multiple profiles
- PATCHUpdate bookmarks for multiple profiles
- GETGet profile by id
- PUTUpdate profile
- DELDelete profile
- GETGet profile history
- PATCHUpdate profile history
- PATCHUpdate user agent of profile
- GETGet profile archive url
- GETFind cookies of profile
- POSTUpdate cookies for profile
- POSTCreate profile
- DELDelete multiple profiles
- POSTCreate profile with templates
- POSTCreate profile with partial parameters
- PATCHRefresh profile fingerprint
- GETRestore previous profile version
- PATCHUpdate profile notes
- PATCHUpdate multiple profiles names
- PATCHUpdate profile name
- PATCHUpdate profile geolocation
- PATCHUpdate profile proxy
- PATCHUpdate profile language
- PATCHUpdate profile timezone
- PATCHUpdate profile resolution
- PATCHUpdate profile user agent
- POSTClone profile
- POSTClone multiple profiles
- POSTRun profile in the cloud
- DELStop profile in the cloud
- POSTExport profiles
- POSTImport profiles
- GETGet list of deleted profiles
- POSTRestore deleted profiles
- GET
- Workspace
- Share
- Template
- Proxy
- User
- Folder
Cloud Browser
Python SDK
Limitations
Profile
Update proxy for multiple profiles
Updates the proxy for multiple profiles.
PATCH
/
browser
/
proxy
/
many
/
v2
curl --request PATCH \
--url https://api.gologin.com/browser/proxy/many/v2 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"proxies": [
{
"profileId": "6200f55e7685342e170dc531",
"proxy": {
"id": "6201422450e3b9cd602f24e1",
"mode": "http",
"host": "127.0.0.1",
"port": 80,
"username": "user",
"password": "password",
"changeIpUrl": "https://some-proxy-provider.com/change-ip",
"customName": "My Proxy"
}
}
]
}'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
curl --request PATCH \
--url https://api.gologin.com/browser/proxy/many/v2 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"proxies": [
{
"profileId": "6200f55e7685342e170dc531",
"proxy": {
"id": "6201422450e3b9cd602f24e1",
"mode": "http",
"host": "127.0.0.1",
"port": 80,
"username": "user",
"password": "password",
"changeIpUrl": "https://some-proxy-provider.com/change-ip",
"customName": "My Proxy"
}
}
]
}'