Seller Reseller Create

POST
https://authsecure.com/api/seller/

End/Modify user data and sessions directly securely.

Create a new reseller account under your application.

Reseller will be able to login using provided credentials.

Endpoint Details

GET /api/seller_reseller_create.php

Query Parameters

ParameterRequiredDescription
sellerkeyYesSeller API Key
usernameYesReseller username
passwordYesReseller password

Success Response

{
  "success": true,
  "msg": "Reseller created successfully",
  "web url": "https://authsecure.shop/win/resaller"
}

Failure Response

{
  "success": false,
  "msg": "Reseller already exists"
}

Code Examples

fetch("http://localhost/commen/api/seller_reseller_create.php?sellerkey=KEY&username=USER&password=PASS")
 .then(r => r.json())
 .then(console.log);
<?php
echo file_get_contents(
 "http://localhost/commen/api/seller_reseller_create.php?sellerkey=KEY&username=USER&password=PASS"
);
?>
import requests
r = requests.get("http://localhost/commen/api/seller_reseller_create.php", params={
 "sellerkey":"KEY",
 "username":"USER",
 "password":"PASS"
})
print(r.text)
var client = new RestClient(
 "http://localhost/commen/api/seller_reseller_create.php?sellerkey=KEY&username=USER&password=PASS"
);
var res = client.Execute(new RestRequest(Method.GET));
Console.WriteLine(res.Content);