Skip to main content
POST
/
recommend
/
_changed
Python
import requests

url = "https://{FUSION HOST}/api/recommend/_changed"

payload = {
    "name": "<string>",
    "collectionId": "<string>",
    "params": {},
    "enabled": True
}
headers = {
    "Authorization": "Basic <encoded-value>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, 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.

Body

application/json
name
string
collectionId
string

The name of the signals collection.

params
object
enabled
boolean

Response

200

OK