v1
latestOpenAPI 3.0.12026-07-265331168.0 KBProxy
Get Proxy User List Options
This endpoint returns a list of all active proxy users on the customer's account, along with a boolean flag indicating whether each proxy user has access to export/use the specified proxies based on their access type and ACL rules.
Access Logic:
- Unrestricted (all): Proxy user has access to all proxies on the account
- Service Restricted: Proxy user has access only if they have ACL entries for all services containing the specified proxies
- Proxy Restricted: Proxy user has access only if they have ACL entries for all specified proxies
Note: This endpoint is intentionally a POST request (rather than GET) to support large lists of proxy IDs in the request body.
post/public/user/proxy/list/options
Headers
Content-Typestring required
Content type for the request body as application/json.
Request body
Example request
{
"proxy_ids": [
"19efadd4-5814-4986-90be-4460e7d05c29",
"1847e66a-a56e-4bc9-94e2-88a8cf3d0ad3"
],
"search_filter": {
"country_id": "US",
"proxy_status": "in_use",
"service_id": "API-1234-5678"
}
}Response
Successfully retrieved proxy user list options.
Example response
{
"data": [
{
"has_access": true,
"proxy_user_id": "stevejobs"
}
],
"message": "Proxy user list options successfully retrieved."
}