Getting Data In

Create Saved Search with Rest API ->need working example

Max_99
New Member

Hi,

Does somebody have a working example of how to create a Saved Search using the Rest API with XML?

Thanks

Max

Labels (1)
0 Karma

isoutamo
SplunkTrust
SplunkTrust

Hi

In linux shell you could do next

UserPass=admin:changeme

curl -ku $up https://localhost:8089/services/search/jobs -d search="search index=_internal earliest=-1m|stats count"
<?xml version="1.0" encoding="UTF-8"?>
<response>
<sid>1593502508.3</sid>
</response>

curl -ku $up https://localhost:8089/services/search/jobs/1593502508.3/results/ --get -d output_mode_xml
<?xml version='1.0' encoding='UTF-8'?>
<results preview='0'>
<meta>
<fieldOrder>
<field>count</field>
</fieldOrder>
</meta>
<result offset='0'>
<field k='count'>
<value><text>275</text></value>
</field>
</result>
</results>
 
r. Ismo

 

0 Karma

isoutamo
SplunkTrust
SplunkTrust
Change curl -ku $up => curl -ku $UserPass
0 Karma
Get Updates on the Splunk Community!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...