POST
/
account
/
api
/
v1
/
browser
/
environment
curl --request POST \
  --url https://svc.sandbox.anon.com/account/api/v1/browser/environment \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "proxy": {
    "server": "<string>",
    "bypass": "<string>",
    "username": "<string>",
    "password": "<string>"
  },
  "isLiveStreamingSession": true
}'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
proxy
object
isLiveStreamingSession
boolean | null

Response

200 - application/json
Successful response

Runtime browser environment response

message
string
required

Was this page helpful?