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

NameTypeDescription

Content-Type*

string

multipart/form-data

Request Body

NameTypeDescription

username*

string

Your account username/email address

password*

string

Your account password

key*

string

Your security key

Example request

curl -d "username=<your_username>&password=<your_password>&key=<your_security_key>" \
     -X POST https://auth.powerpointgeneratorapi.com/v1.0/token/create

Last updated