Update sub-user

Update the proxy password for a sub-user

Update sub user password

put
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired
Body
proxy_passwordstring · min: 8 · max: 15Required
Responses
200

Successful update

application/json
put
/api/sub-users/{id}
PUT /api/sub-users/{id} HTTP/1.1
Host: reseller.flashproxy.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 25

{
  "proxy_password": "text"
}
{
  "success": true,
  "sub_user": {
    "id": "text",
    "name": "text",
    "email": "text",
    "proxy_username": "text",
    "proxy_password": "text",
    "createdAt": "2025-12-06T02:57:36.820Z"
  }
}

Last updated