GET
/
reseller
/
v1
/
sub-user
/
{subUserId}
curl --request GET \
  --url https://swiftproxy.io/api/reseller/v1/sub-user/{subUserId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "subUser": {
    "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

Response

200
application/json
Sub-user details response
success
boolean
Example:

true

subUser
object