import requests
url = "https://{FUSION HOST}/api/webapps"
payload = { "appkitApp": { "type": "<string>" } }
headers = {"Content-Type": "application/vnd.lucidworks-appkit-export+json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)