REST Endpoints (2.0)
The Delegated Group Management for Jira and Confluence REST APIs are used to interact with the app remotely. It provides the REST API for common features like adding a delegated group, adding Group as an owner, adding a user as owner, removing a user as owner, removing a group as owner etc.
The following table lists the currently available public API endpoints
Method | Path | Description |
---|---|---|
URI relative to your Jira Instance https://your.jira.url/rest/wittified/delegated-groups/1.0/ | ||
POST | configure/add-group | Name of the Jira/Confluence Group to add for delegation purpose. |
POST | configure/add-owner | Adding a Group as owner. |
POST | configure/add-owner | Adding a User as an owner. |
DELETE | configure/remove-owner | Removing an owner which is a group. |
DELETE | configure/remove-owner | Removing an owner who is a user. |
GET | delegation/my-groups | Get the list of groups I am the owner of. |
POST | delegation/my-group | Add user to my group which I am the owner of. |
DELETE | delegation/my-group | Remove user from my group which I am the owner of. |
GET | delegation/getAll | Retrieve all groups and their delegates. |
GET | delegation/getGroup/{group} | Retrieve all the delegates of a specific group. |