Skip to main content
POST
/
public
/
user
/
proxy_user_acl
/
create
Create Proxy User ACL
curl --request POST \
  --url https://api.pingproxies.com/1.0/public/user/proxy_user_acl/create \
  --header 'Content-Type: <content-type>' \
  --data '{
  "proxy_id": "550e8400-e29b-41d4-a716-446655440001",
  "proxy_user_id": "stevejobs",
  "service_id": "API-1234-5678"
}'
{
  "created": [
    "550e8400-e29b-41d4-a716-446655440000"
  ],
  "message": "Proxy User ACL successfully created."
}

Headers

Content-Type
string
default:application/json
required

Content type for the request body as application/json.

Body

application/json

Details of the Proxy User ACL to be created.

proxy_user_id
string
required

The ID of the proxy user to grant access to.

Example:

"stevejobs"

proxy_id
string

The proxy ID to grant access to (required if service_id is not provided).

Example:

"550e8400-e29b-41d4-a716-446655440001"

service_id
string

The service ID to grant access to (required if proxy_id is not provided).

Example:

"API-1234-5678"

Response

201 - application/json

Proxy User ACL Successfully Created

created
string[]

A list containing the ID of the created Proxy User ACL.

message
string

A message indicating the success of the operation.