Delete an app
import requests
url = "https://{FUSION HOST}/api/apps/{id}"
payload = {}
headers = {"Content-Type": "application/json"}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)This response has no body data.Delete a Fusion app.
DELETE
/
apps
/
{id}
Delete an app
import requests
url = "https://{FUSION HOST}/api/apps/{id}"
payload = {}
headers = {"Content-Type": "application/json"}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)This response has no body data.Headers
An optional tag to match.
Path Parameters
The app ID.
Body
application/json
Additional request parameters, if any (such as relatedObjectIds), can be supplied in the request body instead of as request parameters. Use this if the URL is getting too long.
The body is of type object.
Response
200 - undefined
Was this page helpful?
⌘I