Alerting

How to create a shared alert via REST API

mlopesn
New Member

Hello everyone!

I had a great doubt about creating alerts using Splunk Rest API.

Every of them are shared only for the owner/creator after been created.

How can I create a shared alert with my group of users using the Rest API?

0 Karma

justinabrahms
New Member

You do this via a different endpoint than the alarm creation. My script:

```
curl -v -k -u "$SPLUNK_USER:$SPLUNK_PASSWORD" \
"https://$DOMAIN:8089/services/saved/searches/$ALARM_NAME/acl" \
--data-urlencode sharing="app" \
--data-urlencode output_mode="json" \
--data-urlencode owner="$SPLUNK_USER" \
--data-urlencode perms.read="" \
--data-urlencode perms.write="
"

```

This grants read and write permissions to everyone in the 'app' sharing thing.

0 Karma

justinabrahms
New Member

You do this via a different endpoint than the alarm creation. My script:

```
curl -v -k -u "$SPLUNK_USER:$SPLUNK_PASSWORD" \
"https://$DOMAIN:8089/services/saved/searches/$ALARM_NAME/acl" \
--data-urlencode sharing="app" \
--data-urlencode output_mode="json" \
--data-urlencode owner="$SPLUNK_USER" \
--data-urlencode perms.read="" \
--data-urlencode perms.write="
"

```

This grants read and write permissions to everyone in the 'app' sharing thing.

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...