You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jira: Add scheme related methods and issue archive method and + 1 example (atlassian-api#589)
* Jira: Adjust example notifications
* update README.md
* Adjust gitignore
* Jira: add more scheme related methods and project update related + example for generic archive procedure
Returns a full representation of the notification scheme for the given id.
1472
1519
Use 'expand' to get details
1520
+
Returns a full representation of the notification scheme for the given id. This resource will return a notification scheme containing a list of events and recipient configured to receive notifications for these events. Consumer should allow events without recipients to appear in response. User accessing the data is required to have permissions to administer at least one project associated with the requested notification scheme.
1521
+
Notification recipients can be:
1522
+
1523
+
current assignee - the value of the notificationType is CurrentAssignee
1524
+
issue reporter - the value of the notificationType is Reporter
1525
+
current user - the value of the notificationType is CurrentUser
1526
+
project lead - the value of the notificationType is ProjectLead
1527
+
component lead - the value of the notificationType is ComponentLead
1528
+
all watchers - the value of the notification type is AllWatchers
1529
+
configured user - the value of the notification type is User. Parameter will contain key of the user.
1530
+
Information about the user will be provided if user expand parameter is used.
1531
+
configured group - the value of the notification type is Group. Parameter will contain name of the group.
1532
+
Information about the group will be provided if group expand parameter is used.
1533
+
configured email address - the value of the notification type is EmailAddress, additionally
1534
+
information about the email will be provided.
1535
+
users or users in groups in the configured custom fields - the value of the notification type
1536
+
is UserCustomField or GroupCustomField. Parameter will contain id of the custom field.
1537
+
Information about the field will be provided if field expand parameter is used.
1538
+
configured project role - the value of the notification type is ProjectRole.
1539
+
Parameter will contain project role id.
1540
+
Information about the project role will be provided if projectRole expand parameter is used.
1541
+
Please see the example for reference.
1542
+
The events can be JIRA system events or events configured by administrator.
1543
+
In case of the system events, data about theirs ids, names and descriptions is provided.
1544
+
In case of custom events, the template event is included as well.
1473
1545
:param notification_scheme_id: Id of scheme u wanna work with
1474
1546
:param expand: str
1475
1547
:return: full representation of the notification scheme for the given id
0 commit comments