POST
/
public
/
user
/
proxy_user
/
create
curl --request POST \
  --url https://api.pingproxies.com/1.0/public/user/proxy_user/create \
  --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_id": "stevejobs",
  "proxy_user_is_service_restricted": true,
  "proxy_user_is_strict_security": true,
  "proxy_user_metadata": {},
  "proxy_user_password": "apple1984",
  "proxy_user_residential_bytes_limit": 1000000,
  "restricted_service_ids": [
    "124-1321-123",
    "224-1321-123"
  ]
}'
{
  "created": [
    "stevejobs"
  ],
  "data": {
    "proxy_user_id": "stevejobs",
    "proxy_user_password": "apple1984"
  },
  "message": "Proxy User successfully created."
}

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.

Body

application/json
The details of the proxy user to be created.

The body is of type object.

Response

201 - application/json
Proxy User Successfully Created

The response is of type object.