-
Notifications
You must be signed in to change notification settings - Fork 451
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(integration-templates): Automated commit updating flows.yaml ba…
…sed on changes in NangoHQ/integration-templates@d9e7240 by Andrew Karanja. Commit message: feat(metabase): Implement Metabase user provisioning with create, delete, and list functionality (#184)
- Loading branch information
1 parent
103914c
commit 3e5a6f7
Showing
3 changed files
with
95 additions
and
2 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 |
---|---|---|
@@ -1,5 +1,20 @@ | ||
|
||
## Pre-built integrations | ||
|
||
_No pre-built integration yet (time to contribute: <48h)_ | ||
<AccordionGroup> | ||
|
||
|
||
<Accordion title="Users"> | ||
| Endpoint | Description | Readme | | ||
| - | - | - | | ||
| `POST /users` | Creates a user in Metabase. | [🔗](https://github.com/NangoHQ/integration-templates/blob/main/integrations/metabase/actions/create-user.md) | | ||
| `DELETE /users` | Disables a user in Metabase by id. | [🔗](https://github.com/NangoHQ/integration-templates/blob/main/integrations/metabase/actions/disable-user.md) | | ||
| `PUT /users` | Updates an existing, active user in Metabase. | [🔗](https://github.com/NangoHQ/integration-templates/blob/main/integrations/metabase/actions/update-user.md) | | ||
| `GET /users/single` | Fetches details of a specific user by ID. | [🔗](https://github.com/NangoHQ/integration-templates/blob/main/integrations/metabase/actions/fetch-user.md) | | ||
| `PUT /users/enable` | Enables a disabled user. | [🔗](https://github.com/NangoHQ/integration-templates/blob/main/integrations/metabase/actions/enable-user.md) | | ||
| `GET /users` | Fetches a list of users from Metabase, including active and inactive users. | [🔗](https://github.com/NangoHQ/integration-templates/blob/main/integrations/metabase/syncs/users.md) | | ||
</Accordion> | ||
|
||
</AccordionGroup> | ||
|
||
<Tip>Not seeing the integration you need? [Build your own](https://docs.nango.dev/guides/custom-integration-builder/overview) independently.</Tip> |
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