Get sub-user by ID
Retrieve a specific sub user, along with the plans.
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired
Responses
200
Successful response
application/json
404
Sub user not found
application/json
get
/api/sub-users/{id}GET /api/sub-users/{id} HTTP/1.1
Host: reseller.flashproxy.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"sub_user": {
"id": "text",
"name": "text",
"email": "text",
"proxy_username": "text",
"proxy_password": "text",
"reseller_plans": [
{
"id": 1,
"proxy_type": "text",
"start_date": "2025-12-06T02:59:12.972Z",
"end_date": "2025-12-06T02:59:12.972Z",
"max_bytes": "text",
"bytes_used": "text",
"status": "ACTIVE",
"createdAt": "2025-12-06T02:59:12.972Z",
"proxyList": [
"text"
]
}
]
}
}Last updated