token/create
Obtain an authentication token
All API calls require authentication. To obtain an authentication token you will require a username, password and your security key (this was emailed to you).
token/create
POST https://auth.powerpointgeneratorapi.com/v1.0/token/create
Headers
Name
Type
Description
Content-Type*
string
multipart/form-data
Request Body
Name
Type
Description
username*
string
Your account username/email address
password*
string
Your account password
key*
string
Your security key
Success!Could not findExample request
curl -d "username=<your_username>&password=<your_password>&key=<your_security_key>" \
-X POST https://auth.powerpointgeneratorapi.com/v1.0/token/createimport requests
url = "https://auth.powerpointgeneratorapi.com/v1.0/token/create"
payload={'username': '<your_username>', 'password': '<your_password>', 'key': '<your_security_key>'}
headers = {'Content-Type': 'application/x-www-form-urlencoded'}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)var formdata = new FormData();
formdata.append("username", "<your_username>");
formdata.append("password", "<your_password>");
formdata.append("key", "<your_security_key>");
var requestOptions = {
method: 'POST',
body: formdata,
redirect: 'follow'
};
fetch("https://auth.powerpointgeneratorapi.com/v1.0/token/create", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));Select
form-datain theBodytabPopulate the
KEYandVALUEwith your username, password and keyHit
Sendto get your Bearer Token

Last updated
Was this helpful?