Introduction
You can get some delegation data via REST.
Authentication and Authorization
All REST requests shown in this document require authentication.
Authentication is handled by the Jira instance that hosts the app. Basic Authentication and OAuth can be used.
In cases where the user cannot be authenticated or authorized, one of these error responses is returned:
Getting Delegation Data
Get Delegates
GET /rest/delegation/api/1.0/delegation/getDelegates
Returns a JSON that shows the delegates of the given delegator in the given category.
Request
The request takes all parameters as query parameters.
XML
<jira_url>/rest/delegation/api/1.0/delegation/getDelegates?delegator=<delegator>&category=<category>&datetime=<datetime>
Parameters
Examples
Responses
Get Delegators
GET /rest/delegation/api/1.0/delegation/getDelegators
Returns a JSON showing delegators of the given delegate in the given category.
Request
The request takes all parameters as query parameters.
XML
<jira_url>/rest/delegation/api/1.0/delegation/getDelegators?delegate=<delegate>&category=<category>&datetime=<datetime>