-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kenta Kozuka <[email protected]>
- Loading branch information
1 parent
702bc71
commit ced6bc2
Showing
4 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
title: Bucketeer HTTP API | ||
sidebar_position: 2 | ||
slug: /integration/http-api | ||
--- | ||
|
||
import Tabs from '@theme/Tabs'; | ||
import TabItem from '@theme/TabItem'; | ||
import CenteredImg from '@site/src/components/centered-img/CenteredImg'; | ||
|
||
:::caution HTTP API (Alpha) | ||
|
||
The HTTP API is currently in its alpha stage. | ||
|
||
If you find any issues or have suggestions for improvement, feel free to open an [issue](https://github.com/bucketeer-io/bucketeer/issues).<br /> | ||
All contributions are welcome! | ||
|
||
::: | ||
|
||
The Bucketeer HTTP API allows you to interact with the Bucketeer service programmatically. It supports operations such as creating, updating, and retrieving feature flags, managing users, and evaluating feature flags for specific users. | ||
|
||
## Authentication | ||
Bucketeer API uses token-based authentication. Each request must include an `authorization` header with the token: | ||
```http | ||
authorization: <your-api-key> | ||
``` | ||
|
||
[API Key](/feature-flags/api-keys) can be created in the Bucketeer dashboard. | ||
|
||
## API specification | ||
|
||
API specification is available [here](https://github.com/bucketeer-io/bucketeer/blob/main/api-description/service.swagger.json). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters