Returns a paginated list of notification schemes. In order to access notification scheme, the calling user is required to have permissions to administer at least one project associated with the requested notification scheme. Each scheme contains a list of events and recipient configured to receive notifications for these events. Consumer should allow events without recipients to appear in response. The list is ordered by the scheme's name. Follow the documentation of /notificationscheme/{id} resource for all details about returned value.
string
integer
integer
Paginated list of notification schemes to which the user has permissions.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/notificationscheme' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
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. Notification recipients can be:
integer
Requiredstring
Returns a full representation of the notification scheme with given id
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/notificationscheme/{id}' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Rate this page: