API Reference
/- Browser
- Open API
/
Modify browser profile
Update an existing browser profile. Only the fields present in the request are changed.
When the kernel has to be re-matched, the operating system already stored on the profile is used. No client operating system or version is read.
Security
OpenApiBearer
Profile ID. The request also accepts the field alias id.
Example:"1800000000000001"
Group name. The group is looked up or created automatically when supplied.
Example:"Marketing"
System bitness. Defaults to 1:
0— 32-bit1— 64-bit
Default:1
Enum:01
Example:1
CPU architecture. Defaults to 0:
0— x861— ARM
Default:0
Enum:01
Example:0
Dynamic fingerprint configuration. Keys come from the profile advanced-settings protocol; each value may be a string, number, boolean, array, or object depending on the key.
Example:
{ "language": "en-US", "timezone": "America/Los_Angeles" }
POST
curl -i -X POST \
https://api.morelogin.com/env/update \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"envId": "1800000000000001",
"envName": "marketing-01-updated",
"envRemark": "Updated through the Open API",
"uaVersion": 124,
"browserCore": 124,
"systemBitType": 1,
"architecture": 0
}'Success
Operation request ID. This field may be present when the request passes through the API gateway.
Example:"1d4f3ea968664593860b94b35d4ebf5e"
Response
{ "code": 0, "msg": null, "requestId": "1d4f3ea968664593860b94b35d4ebf5e", "data": null }