curl --request POST \
--url https://{FUSION HOST}/api/signals/_changed \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"collectionId": "<string>",
"params": {},
"enabled": true
}'
curl --request POST \
--url https://{FUSION HOST}/api/signals/_changed \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"collectionId": "<string>",
"params": {},
"enabled": true
}'
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
OK
Was this page helpful?