v1
latestOpenAPI 3.0.12026-07-265331168.0 KBProxy User
Create Proxy User
This endpoint allows you to create a new proxy user.
The proxy_user_id and proxy_user_password can be provided or, if omitted, will be randomly generated.
Additional considerations when creating a Proxy User:
- proxy_user_access_type: Controls access restrictions ("all", "service_restricted", "proxy_restricted")
- proxy_user_is_strict_security: If true, the Proxy User requires an IP address authentication list.
- proxy_user_enforce_https: If true, this Proxy User can only access targets on port 443 (HTTPS).
- ip_address_authentications must be a list of valid IP addresses. Each IP address can only be used by one Proxy User.
- proxy_user_residential_bytes_limit: An integer limiting residential traffic (must not be negative).
- proxy_user_mobile_bytes_limit: An integer limiting mobile traffic (must not be negative).
For access control, use the ProxyUserAcl endpoints to grant specific service or proxy access when using "service_restricted" or "proxy_restricted" access types.
post/public/user/proxy_user/create
Headers
Content-Typestring required
Content type for the request body as application/json.
Request body
Example request
{
"ip_address_authentications": [
"1.1.1.1",
"2.2.2.2"
],
"proxy_user_id": "stevejobs",
"proxy_user_is_strict_security": true,
"proxy_user_mobile_bytes_limit": 1000000,
"proxy_user_password": "apple1984",
"proxy_user_residential_bytes_limit": 1000000
}Response
Proxy User Successfully Created