Skip to main content
GET
/
features
/
{feature}
Get a feature
import requests

url = "https://{FUSION HOST}/api/features/{feature}"

response = requests.get(url)

print(response.json())
{
  "name": "<string>",
  "defaults": {},
  "callback": {
    "uri": "<string>",
    "method": "GET",
    "queryParams": {},
    "headers": {},
    "entity": {}
  }
}

Path Parameters

feature
string
required

The name of a feature.

Response

200 - application/json

successful operation

name
string
defaults
object
callback
object