GET/projects/api/v3/features.json
Get installation features
Return all features accessible to the current installation.
Responses
- Code
- 200
- Type
- object
- Schema
- Description
- 200 OK
 FeaturesResponse contains all the information returned when sending a GET request to the features endpoint.
 
- Code
- 400
- Type
- object
- Schema
- Description
- 400 Bad Request
 ErrorResponse defines how []Error should be marshaled to JSON.
 
200 OK
FeaturesResponse
{
  "features": [
    {
      "endAt": "string",
      "isBeta": true,
      "key": "string",
      "scope": "string",
      "source": "string",
      "startAt": "string",
      "value": "string"
    }
  ],
  "meta": {
    "averageSpend": 0,
    "limit": 0,
    "nextCursor": "string",
    "page": {
      "count": 0,
      "hasMore": true,
      "pageOffset": 0,
      "pageSize": 0
    },
    "prevCursor": "string",
    "totalCapacity": 0
  }
}