EclipseProxy

Get subuser

GET /api/reseller/v1/subusers/{id}: details for one subuser

GEThttps://www.eclipseproxy.com/api/reseller/v1/subusers/{id}Bearer auth

Fetch details for a specific subuser.

Example request

curl -X GET "https://www.eclipseproxy.com/api/reseller/v1/subusers/SUBUSER_ID" \
  -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.

Path parameters

idpathstringrequired

The subuser username (the full prefixed username, e.g. MYSTORE_user1).

Response

idstring
Internal subuser ID.
usernamestring
Full prefixed username.
emailstring
Subuser email.
bandwidthBalancenumber
Remaining bandwidth (MB).
createdAtstring
Creation timestamp (ISO 8601).
whitelistIPsarray
Whitelisted IPs.
passwordstring
Current subuser password.

Example response

{
  "status": "success",
  "message": "OK",
  "messageCode": "OK",
  "data": {
    "id": "subuser-125",
    "username": "MYSTORE_user1",
    "email": "[email protected]",
    "bandwidthBalance": 85,
    "createdAt": "2026-02-22T11:00:00Z",
    "whitelistIPs": ["192.168.1.1"],
    "password": "GeneratedSecurePassword123!"
  }
}

Errors

  • 401 UNAUTHORIZED: missing or invalid API key
  • 403 NOT_RESELLER: account is not a reseller
  • 404 NOT_FOUND: no subuser with that username

On this page