Skip to main content
POST
/
signals
/
create
/
{collection}
Create a signals collection
import requests

url = "https://{FUSION HOST}/api/signals/create/{collection}"

payload = {}
headers = {
    "Authorization": "Basic <encoded-value>",
    "Content-Type": "application/json"
}

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

print(response.json())
{
  "collection": "<string>",
  "signalsCollection": "<string>",
  "signalsAggrCollection": "<string>"
}

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

collection
string
required

The primary collection for which to create a new signals collection.

Body

application/json · object
{key}
object

Response

200 - */*

OK

collection
string

The name of the main collection.

signalsCollection
string

The name of the raw signals collection.

signalsAggrCollection
string

The name of the aggregated signals collection.