Retrieves features. Supports paging. Examples:
| URI | Results |
|---|---|
| GET /v1/feature?pageSize=100 | Get first 100 features. |
| GET /v1/feature?pageSize=100&pageNumber=1 | Get next 100 features. |
| GET /v1/feature?propertyKey=AP-XXXXXXXX-2-1 | Get features for given property key |
GET
/v1/feature
curl \
--request GET 'https://api.aptrinsic.com/v1/feature'
Response examples (200)
{
"features": [
{
"id": "string",
"name": "string",
"type": "FEATURE",
"parentFeatureId": "string",
"propertyKey": "string",
"status": "ACTIVATED",
"featureLabels": [
{
"id": "string",
"name": "string",
"color": "string"
}
]
}
],
"pageNumber": 42,
"isLastPage": true
}