API Token
This page will walk you through getting an API Token to authenticate your requests
Requirements
Example Python
import requests
url = 'https://api.pptxbuilder.com/api/auth/token'
body = json.dumps({'key': '<your-company-key>'})
headers = {'Content-Type': 'application/json'}
response = requests.post(url, data=body, headers=headers,
auth=('<username>', '<password>'))
token = response.headers['Authentication-Token']
content = response.contentLast updated