Skip to main content
GET
/
collections
/
{collection}
/
features
/
{feature}
Return all properties for a specified feature in a collection
import requests

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

response = requests.get(url)

print(response.text)
{
  "name": "<string>",
  "collectionId": "<string>",
  "params": {},
  "enabled": false
}

Path Parameters

collection
string
required

The name of a collection

feature
string
required

The name of a feature

Response

200 - application/json

successful operation

name
string
collectionId
string
params
object
enabled
boolean
default:false