Skip to content

Refresh fingerprint

Request

Bodyapplication/jsonrequired
envIdstringrequired

Profile ID (environment ID). Exactly one of envId or uniqueId must be provided.

uniqueIdstring

Profile serial number (unique ID). Exactly one of envId or uniqueId must be provided.

uaVersioninteger

Target User-Agent version (e.g., Chrome 129). If omitted, uses the current UA version from the profile.

Example:129
browserTypeIdinteger

Browser type. 1 = Chrome, 2 = Firefox.

Enum:12
operatorSystemIdinteger

Operating system type. 1 = Windows, 2 = macOS, 3 = Android, 4 = iOS.

Enum:1234
advancedSettingobject(AdvancedSetting)

Advanced browser fingerprint and behavior configuration.

POST
/api/env/fingerprint/refresh
curl -i -X POST \
  http://127.0.0.1:40000/api/env/fingerprint/refresh \
  -H 'Content-Type: application/json' \
  -d '{
    "envId": "1869988538611834880",
    "uniqueId": "",
    "uaVersion": 129,
    "browserTypeId": 1,
    "operatorSystemId": 2,
    "advancedSetting": {}
  }'

Responses

Headers
any
Bodyapplication/json
codeinteger
msgnull
datanull
requestIdstring
Response
{ "code": 0, "msg": null, "data": null, "requestId": "string" }