Early access features
For instructions on how to authenticate to use this endpoint, see API overview.
Endpoints
GET | |
POST | |
GET | |
PATCH | |
DELETE |
List all early access feature
Required API key scopes
early_access_feature:read
Path parameters
- project_idstring
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
Query parameters
- limitinteger
Number of results to return per page.
- offsetinteger
The initial index from which to return the results.
Response
Example request
GET
/api /projects /:project_id /early_access_feature
Example response
Status 200
Create early access feature
Required API key scopes
early_access_feature:write
Path parameters
- project_idstring
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
Request parameters
- namestring
- descriptionstring
- stage
- documentation_urlstring
- feature_flag_idinteger
- _create_in_folderstring
Response
Example request
POST
/api /projects /:project_id /early_access_feature
Example response
Status 201
Retrieve early access feature
Required API key scopes
early_access_feature:read
Path parameters
- idstring
A UUID string identifying this early access feature.
- project_idstring
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
Response
Example request
GET
/api /projects /:project_id /early_access_feature /:id
Example response
Status 200
Update early access feature
Required API key scopes
early_access_feature:write
Path parameters
- idstring
A UUID string identifying this early access feature.
- project_idstring
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
Request parameters
- namestring
- descriptionstring
- stage
- documentation_urlstring
Response
Example request
PATCH
/api /projects /:project_id /early_access_feature /:id
Example response
Status 200
Delete early access feature
Required API key scopes
early_access_feature:write
Path parameters
- idstring
A UUID string identifying this early access feature.
- project_idstring
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
Example request
DELETE
/api /projects /:project_id /early_access_feature /:id