Skip to main content
POST
/
spark
/
configurations
/
app
/
{appId}
Create a job configuration
import requests

url = "https://{FUSION HOST}/api/spark/configurations/app/{appId}"

headers = {"Authorization": "Basic <encoded-value>"}

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

print(response.json())

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

appId
string
required

The name of the Fusion app to which this job belongs.

Response

200

OK