EclipseProxy

List subusers

GET /api/reseller/v1/subusers: all subusers under your account

GEThttps://www.eclipseproxy.com/api/reseller/v1/subusersBearer auth

Retrieve every subuser under your reseller account.

Example request

curl -X GET "https://www.eclipseproxy.com/api/reseller/v1/subusers" \
  -H "Authorization: Bearer YOUR_API_KEY"

Authentication

Requires a reseller API key. Pass it as Authorization: Bearer YOUR_API_KEY or X-API-Key: YOUR_API_KEY. See Reseller overview.

Response

data is an array of subuser objects.

idstring
Internal subuser ID.
usernamestring
Full username, prefixed with your store code.
emailstring
Subuser email.
bandwidthBalancenumber
Bandwidth allocated to the subuser (MB).
createdAtstring
Creation timestamp (ISO 8601).
whitelistIPsarray
Whitelisted IPs for the subuser.

Example response

{
  "status": "success",
  "message": "OK",
  "messageCode": "OK",
  "data": [
    {
      "id": "subuser-123",
      "username": "MYSTORE_user1",
      "email": "[email protected]",
      "bandwidthBalance": 100,
      "createdAt": "2026-02-20T14:22:00Z",
      "whitelistIPs": ["192.168.1.1", "10.0.0.1"]
    }
  ]
}

Errors

  • 401 UNAUTHORIZED: missing or invalid API key
  • 403 NOT_RESELLER: account is not a reseller

On this page