transform

GETALL/GetAccountLogins

IN THIS PAGE

Arguments

startdateCharacter

Start of period. Format yyyy-mm-dd.

enddateCharacter

End of period. Format yyyy-mm-dd

Returns

resultJSON Object

Returns an object with these properties:

errorboolean

true if there was an error

errorTextstring
resultobject
countLicensesAdded

count of the number of license keys added to the account

Description

Get list of users who have used an account in a specified time period.

CURL

CURL --insecure -H "apikey:Your_api_key" -H "accept: application/json" "https://transform.alphasoftware.com/transformAPIVersion1.a5svc/GetAccountLogins?startdate=value_of_startdate&enddate=value_of_enddate"

Node

var https = require('https');
var options = {
  protocol: "https:",
  hostname: "transform.alphasoftware.com",
  path: "/transformAPIVersion1.a5svc/GetAccountLogins?startdate=value%5fof%5fstartdate&enddate=value%5fof%5fenddate",
  headers: {apikey: "Your_api_key"}
};

https.get(options, (resp) => {
  let data = '';
  resp.on('data', (chunk) => {data += chunk;});
  resp.on('end', () => {console.log(data);});
}).on("error", (err) => {console.log("Error: " + err.message);});

Xbasic

dim apikey as c = "Your_api_key"
dim postdata as c 
dim url as c = "/GetAccountLogins?startdate=value%5fof%5fstartdate&enddate=value%5fof%5fenddate"
dim pr as p
pr = a5dialogHelper_transformAPIQuery(url,postdata,apikey)
if pr.error = .f. then
	dim result as c 
	result = pr.result
else
	dim errorText as c 
	errorText = pr.errorText
end if