POST
/
v1
/
ipWhite
/
add
curl --request POST \
  --url https://api.goproxy.com/go-api/v1/ipWhite/add \
  --header 'Content-Type: application/json' \
  --header 'apiKey: <apikey>' \
  --data '{
  "proxyType": 123,
  "ipAddress": "<string>",
  "remarks": "<string>"
}'
"Success"

Headers

apiKey
string
required

API key used for authentication.

Body

application/json
proxyType
integer
required

The proxy type to which the whitelisted IP should be applied. Use: 1 for Rotating Residential, 2 for Rotating Mobile, 3 for Rotating Datacenter.

ipAddress
string
required

The IPv4 address you want to whitelist.

remarks
string

Optional remark or description about the whitelisted IP.

Response

200 - application/json
Successful Response

The response is of type string.

Example:

"Success"