Scan&Paste logo
  • Home
  • API
  • How it works
  • Office Add-ins
  • Contact
  • Scan & Paste Business
Home > API > Get >

api/StorageAccessKey/Get

This method returns storageAccessKey that allows an access to mobile application user’s storage.

Parameters

Name Description Type Required

Responses

Status Description
There is a storageAccessKey in response.
Internal server error

Sample of using

using (WebClient client = new WebClient()))
{
    var url = "https://scanandpaste.com/api/StorageAccessKey/Get";
    string response = client.DownloadString(url);
    Console.WriteLine(response);
}
import urllib2

url = 'https://scanandpaste.com/api/StorageAccessKey/Get'
response = urllib2.urlopen(url).read()
print response
URL url = new URL("https://scanandpaste.com/api/StorageAccessKey/Get");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
BufferedReader br = new BufferedReader(new InputStreamReader(
        (conn.getInputStream())));
String output;
while ((output = br.readLine()) != null) {
    System.out.println(output);
}
conn.disconnect();

JSON Response

{
  "Value": "P41aab23e-1d2a-4264-a81d-58d1657b27d9"
};
Copyright 2025 Scan&Paste  |  License Agreement
Realization: Creandi.pl