List Features
List all features. This endpoint supports pagination.
caution
This endpoint has been deprecated and will be phased out at the end of 2023. Please update any existing usages of it to use the List Objects endpoint instead.
Endpoint
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);
const features = await warrantClient.listFeatures({ limit: 10, page: 1 });
features = warrant.Feature.list()
features = Warrant::Feature.list
Response
[
{
"featureId": "dashboard"
},
{
"featureId": "enterprise-feature-1"
}
]