PATCH
/
v1
/
account
/
proxySetup
curl --request PATCH \
  --url https://api.goproxy.com/go-api/v1/account/proxySetup \
  --header 'Content-Type: application/json' \
  --header 'apiKey: <apikey>' \
  --data '{
  "proxyType": 123,
  "newPassword": "<string>",
  "newRemarks": "<string>",
  "newTrafficLimit": 123
}'
"Success"

Headers

apiKey
string
required

API key used for authentication.

Body

application/json
proxyType
integer
required

The proxy type to modify. Use: 1 for Rotating Residential, 2 for Rotating Mobile, 3 for Rotating Datacenter.

newPassword
string

The new password for proxy account. Password must be between 6 and 8 characters or numbers.

newRemarks
string

New remarks for proxy account.

newTrafficLimit
integer

The new traffic limit for proxy account in GB. Leave blank or omit for unlimited traffic.

Response

200 - application/json
Successful Response

The response is of type string.

Example:

"Success"