This resource represents Alert Filters of an Integration in Jira Service Management. Use it to get or update alert filters of an integration.
Returns the outgoing alert filter details of an integration.
Permissions required: Permission to access to the integration outgoing alert filter:
read:ops-config:jira-service-management
string
RequiredReturned if the request is successful.
1
2
3
4
curl --request GET \
--url 'https://api.atlassian.com/jsm/ops/api/{cloudId}/v1/integrations/{integrationId}/outgoing/alert-filter/main' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
1
2
3
4
{
"conditionMatchType": "match-all",
"conditions": []
}
Updates Integration outgoing alert filter.
Permissions required: Permission to update integration alert filter:
read:ops-config:jira-service-management
write:ops-config:jira-service-management
string
array<IntegrationsCondition>
Returned if the request is successful.
1
2
3
4
5
6
7
8
9
curl --request PATCH \
--url 'https://api.atlassian.com/jsm/ops/api/{cloudId}/v1/integrations/{integrationId}/outgoing/alert-filter/main' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"conditionMatchType": "match-all",
"conditions": []
}'
1
2
3
4
{
"conditionMatchType": "match-all",
"conditions": []
}
Rate this page: