Get Features
Get list of features.
GET /v1/features
Request
- Curl
- Go
- Java
- Node.js
- Python
- Ruby
- PHP
- CLI
curl "https://api.warrant.dev/v1/features" \
-H "Authorization: ApiKey YOUR_KEY"
features, err := feature.ListFeatures(&warrant.ListFeatureParams{
ListParams: warrant.ListParams{
Page: 1,
Limit: 10,
},
})
int limit = 10;
int page = 1;
Feature[] features = client.listFeatures(limit, page);
features = warrant.Feature.list()
features = Warrant::Feature.list
Response
[
{
"featureId": "dashboard"
},
{
"featureId": "enterprise-feature-1"
}
]