How to login into GoProxies API and list your current sub-users?

How to login into GoProxies API?

To login into GoProxies API and receive auth token, you will need to use email address and password that you used to register to our self-service dashboard.

Here is example of the curl request that will return you your login token:

curl -X POST https://api.goproxies.com/api/v1/login \
     -H "Content-Type: application/json" \
     -d '{"username": "{YOUR_USERNAME}", "password": "{YOUR_PASSOWRD}"}'

How to list all current sub-users?

To list current sub-users you'd need to call this request, here's the example which would list all your sub-users, all you need to do is replaceYOUR_TOKEN_FROM_LOGIN with your login token.

curl -X GET https://api.goproxies.com/api/v1/reseller/subusers \
     -H "Content-Type: application/json" \
     -H "Authorization: Bearer YOUR_TOKEN_FROM_LOGIN"

Last updated

Was this helpful?