Upload a file

Upload a file to your secure file transfer area.
https://dash.stannp.com/api/v1/files/upload

Parameters

file mandatory This value can be either a binary file or a URL to a file.
folder optional A folder ID for placing the file in a folder.
Request
$ curl https://dash.stannp.com/api/v1/files/upload \
-u {API_KEY}: \
-d "file=https://www.stannp.com/assets/samples/letter-heading.jpg" \ 
-d "folder=0"
$curl = curl_init();

curl_setopt_array($curl, array(
    CURLOPT_URL => 'https://dash.stannp.com/api/v1/files/upload?api_key={API_KEY}',
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_ENCODING => '',
    CURLOPT_MAXREDIRS => 10,
    CURLOPT_TIMEOUT => 0,
    CURLOPT_FOLLOWLOCATION => true,
    CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
    CURLOPT_CUSTOMREQUEST => 'POST',
    CURLOPT_POSTFIELDS => array(
        'file' => "https://www.stannp.com/assets/samples/letter-heading.jpg",
        'folder' => "0"
    ),
));

$response = curl_exec($curl);

curl_close($curl);
print_r($response);
import requests

data = {
    'file': 'https://www.stannp.com/assets/samples/letter-heading.jpg',
    'folder': '0'
}

response = requests.post('https://dash.stannp.com/api/v1/files/upload?api_key={API_KEY}', data=data)
print(response.text)
var client = new RestClient("https://dash.stannp.com/api/v1/files/upload?api_key={API_KEY}");

var request = new RestRequest(Method.POST);

request.AddParameter("file", "https://www.stannp.com/assets/samples/letter-heading.jpg");
request.AddParameter("folder", "0");

IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content)
Response
{
    "success": true,
    "data": {
        "id": "342"
    }
}

Create a folder

Create a file in your secure file transfer area.
https://dash.stannp.com/api/v1/files/createFolder

Parameters

name mandatory The name of the folder you wish to create.
Request
$ curl https://dash.stannp.com/api/v1/files/createFolder \
-u {API_KEY}: \
-d "name=Test Folder"
$curl = curl_init();

curl_setopt_array($curl, array(
    CURLOPT_URL => 'https://dash.stannp.com/api/v1/files/createFolder?api_key={API_KEY}',
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_ENCODING => '',
    CURLOPT_MAXREDIRS => 10,
    CURLOPT_TIMEOUT => 0,
    CURLOPT_FOLLOWLOCATION => true,
    CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
    CURLOPT_CUSTOMREQUEST => 'POST',
    CURLOPT_POSTFIELDS => array(
        'name' => "Test Folder"
    ),
));

$response = curl_exec($curl);

curl_close($curl);
print_r($response);
import requests

data = {
    'name': 'Test Folder'
}

response = requests.post('https://dash.stannp.com/api/v1/files/createFolder?api_key={API_KEY}', data=data)
print(response.text)
var client = new RestClient("https://dash.stannp.com/api/v1/files/createFolder?api_key={API_KEY}");

var request = new RestRequest(Method.POST);

request.AddParameter("name", "Test Folder");

IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content)
Response
{
    "success": true,
    "data": "342"
}

List folders

Get a list of the folders in your secure file transfer area.
https://dash.stannp.com/api/v1/files/folders

Request
$ curl https://dash.stannp.com/api/v1/files/folders \
-u {API_KEY}:
define("API_KEY", "YOUR API KEY");
$opts = array(
    'http' => array(
        'method'  => 'GET',
        'header'  => 'Content-type: application/x-www-form-urlencoded'
    )
);
$context  = stream_context_create($opts);
$result = file_get_contents("https://dash.stannp.com/api/v1/files/folders?api_key=" . API_KEY, false, $context);
$response = json_decode($result, true);

print_r($response);
import requests

response = requests.get('https://dash.stannp.com/api/v1/files/folders?api_key={API_KEY}')
print(response.text)
var client = new RestClient("https://dash.stannp.com/api/v1/files/folders?api_key={API_KEY}");

var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);

Console.WriteLine(response.Content);
Return
{
   "success":true,
   "data": [
        {
            "id": "2",
            "name": "test folder",
            "created": "2017-06-27 14:24:07"
        },
        {
            "id": "15",
            "name": "test folder 2",
            "created": "2017-06-27 14:26:23"
        }
    ]
}