PATCH
/
public
/
user
/
proxy_user
/
edit
/
{proxy_user_id}
curl --request PATCH \
  --url https://api.pingproxies.com/1.0/public/user/proxy_user/edit/{proxy_user_id} \
  --header 'Content-Type: <content-type>' \
  --header 'X-API-Private-Key: <api-key>' \
  --header 'X-API-Public-Key: <api-key>' \
  --data '{
  "ip_address_authentications": [
    "1.1.1.1",
    "2.2.2.2"
  ],
  "proxy_user_is_service_restricted": true,
  "proxy_user_is_strict_security": false,
  "proxy_user_metadata": {
    "internal_customer_id": "94266dc6-b29f-4499-a7a8-35232d186706"
  },
  "proxy_user_password": "newPass1241233",
  "proxy_user_residential_bytes_limit": 1000000,
  "restricted_service_ids": [
    "123-4324-123",
    "123-4324-125"
  ]
}'
{
  "edited": [
    "stevejobs"
  ],
  "message": "Proxy User successfully edited."
}

Authorizations

X-API-Private-Key
string
header
required

Private API key for user-level authentication.

X-API-Public-Key
string
header
required

Public API key for user-level authentication.

Headers

Content-Type
string
default:application/json
required

Content type for the request body as application/json.

Path Parameters

proxy_user_id
string
required

ID of the proxy user record to edit.

Body

application/json
The Proxy User details to be edited.

The body is of type object.

Response

200 - application/json
Proxy User Successfully Edited

The response is of type object.