Flash Proxy Reseller API
  • Getting Started
    • Authorization
    • Formatting Proxies
  • Sub-Users
    • Create a sub-user
    • Get all sub-users
    • Get sub-user by ID
    • Update a sub-user
  • Proxy Plans
    • Purchase a plan
    • Update a plan
  • Reseller
    • Reseller Balance
  • Countries
    • Get Countries
    • Get States
    • Get Cities
Powered by GitBook
On this page
  1. Sub-Users

Create a sub-user

PreviousFormatting ProxiesNextGet all sub-users

Last updated 8 months ago

This endpoint allows you to create a sub-user.

You must pass the following information:

  • name (minimum 4 characters)

  • email (must be unique, and formatted correctly)

Optional:

  • proxy_username - Minimum 8 characters, must be unique

  • proxy_password - Minimum 8 characters, must be unique

If you do not send the username or password, a random 10-character one will be created for you.

Create a sub user

post
Authorizations
Body
namestring · min: 1Optional
emailstring · emailOptional
proxy_usernamestring · min: 8Optional
proxy_passwordstring · min: 8Optional
Responses
200
Successful response
application/json
400
Bad request
500
Internal server error
post
POST /api/sub-users HTTP/1.1
Host: api.flashproxy.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 88

{
  "name": "text",
  "email": "[email protected]",
  "proxy_username": "text",
  "proxy_password": "text"
}
{
  "success": true,
  "sub_user": {}
}