Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

Commit

Permalink
chore: update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
richardtreier authored Sep 29, 2023
1 parent 20c626e commit 0b85338
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,19 @@ curl --request PUT \
--data '["https://some-new-connector/api/v1/ids/data", "https://some-other-new-connector/api/v1/ids/data"]'
```

#### Removing Connectors at runtime

Connectors can be dynamically removed at runtime by using the following endpoint:

```shell script
# Response should be 204 No Content
curl --request DELETE \
--url 'http://localhost:11002/backend/api/v1/management/wrapper/broker/connectors?adminApiKey=DefaultBrokerServerAdminApiKey' \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: ApiKeyDefaultValue' \
--data '["https://some-connector-to-be-removed/api/v1/ids/data", "https://some-other-connector-to-be-removed/api/v1/ids/data"]'
```

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## License
Expand Down

0 comments on commit 0b85338

Please sign in to comment.