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

Response

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

true

subUsers
object[]