Skip to main content
GET
/
features
/
{feature}
Return details about a feature
import requests

url = "http://api/apollo/features/{feature}"

response = requests.get(url)

print(response.text)
{
  "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