Skip to main content
POST
/
apps
Create an app
import requests

url = "https://{FUSION HOST}/api/apps"

payload = {
    "id": "MyNewApp",
    "name": "My new app",
    "description": "A really great new app"
}
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
{
  "id": "MyNewApp",
  "name": "My new app",
  "description": "A really great new app"
}

Body

application/json
id
string
required

The unique ID for the app.

Example:

"MyNewApp"

name
string
required

The display name for the app.

Example:

"My new app"

description
string
required

A short description of the app.

Example:

"A really great new app"

Response

201 - application/json

Created

id
string
name
string
description
string