This resource represents Alert Filters of an Integration in Compass. 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:
Forge and OAuth2 apps cannot access this REST resource.
string
RequiredReturned if the request is successful.
1
2
3
4
curl --request GET \
--url 'https://api.atlassian.com/compass/cloud/{cloudId}/ops/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:
Forge and OAuth2 apps cannot access this REST resource.
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/compass/cloud/{cloudId}/ops/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: