transform

POSTALL,CRA/getAPIKey

IN THIS PAGE

Arguments

scopesCharacter

SCOPE codes for the permissions to be associated with the API key

Returns

resultJSON Object

Returns an object with these properties:

errorboolean

true if there was an error

errorTextstring
resultobject
apiKey

Description

Generates an API key. The generated API key is associated with the same account as the API key that was used to call this method.

CURL

CURL --insecure -H "apikey:Your_api_key" -H "content-type: application/json" -H "accept: application/json" -d "{"""scopes""":value_of_scopes}" "https://transform.alphasoftware.com/transformAPIVersion1.a5svc/getAPIKey"

Node

var request = require('request')
var path = 'https://transform.alphasoftware.com/transformAPIVersion1.a5svc/getAPIKey';
var data = {"scopes": "value_of_scopes"};
var dataJSON = JSON.stringify(data)
request.post(
	{
		headers: {apikey: "Your_api_key"},   
		url: path, 
		form: dataJSON}, 
		function(err,httpResponse,body){
			if(err) console.log(err)
			console.log(body)
	}
)

Xbasic

dim apikey as c = "Your_api_key"
dim postdata as c
postdata = <<%txt%
{
    "scopes": "value_of_scopes"
}

%txt%

dim url as c = "/getAPIKey"
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