PUT
/
reseller
/
v1
/
sub-user
/
{subUserId}
curl --request PUT \
  --url https://swiftproxy.io/api/reseller/v1/sub-user/{subUserId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "trafficLimitGB": 123
}'
{
  "success": true,
  "user": {
    "id": "<string>",
    "email": "<string>",
    "username": "<string>",
    "password": "<string>",
    "proxyType": "PREMIUM_RESIDENTIAL",
    "enabled": true,
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

subUserId
string
required

ID of the sub-user to be updated

Body

application/json
trafficLimitGB
number
required

Traffic limit in GB

Response

200
application/json
Sub-user updated successfully
success
boolean
Example:

true

user
object