Splunk® SOAR (Cloud)

REST API Reference for Splunk SOAR (Cloud)

Acrobat logo Download manual as PDF


The classic playbook editor will be deprecated soon. Convert your classic playbooks to modern mode.
After the future removal of the classic playbook editor, your existing classic playbooks will continue to run, However, you will no longer be able to visualize or modify existing classic playbooks.
For details, see:
Acrobat logo Download topic as PDF

Update Records

It is possible to update existing records using REST. Complete or partial updates can be made by doing an HTTP POST to the record ID that you want to update.

/rest/<type>/<id>

Syntax

https://<username>:<password>@<host>/rest/<type>/<id>

POST

Update an existing container.

Example request
Update container Id 10 with a new name and severity.

curl -k -u soar_local_admin:changeme https://localhost/rest/container/10 \
-d '[
{
    "name": "my new container name",
    "severity": "low"
}
]'

Example success response
A successful POST will return the success message and Id.

{
    "id": 10,
    "success": true
}

Example failure response
A failed POST will return the failure message and reason.

{
    "failed": true,
    "message": "<reason>"
}

Any record that can be created using the REST API can be updated as described.

Last modified on 27 March, 2024
PREVIOUS
Query for Data
  NEXT
Bulk Create and Update Records

This documentation applies to the following versions of Splunk® SOAR (Cloud): current


Was this documentation topic helpful?


You must be logged into splunk.com in order to post comments. Log in now.

Please try to keep this discussion focused on the content covered in this documentation topic. If you have a more general question about Splunk functionality or are experiencing a difficulty with Splunk, consider posting a question to Splunkbase Answers.

0 out of 1000 Characters