packs
Install a Pack
Install a Pack.<br/><br/>To install an uploaded Pack, provide the <code>source</code> value from the <code>PUT /packs</code> response as the <code>source</code> parameter in the request body.<br/><br/>To install a Pack by importing from a URL, provide the direct URL location of the <code>.crbl</code> file for the Pack as the <code>source</code> parameter in the request body.<br/><br/>To install a Pack by importing from a Git repository, provide <code>git+<repo-url></code> as the <code>source</code> parameter in the request body.<br/><br/>If you do not include the <code>source</code> parameter in the request body, an empty Pack is created.
post/packs
Request body
Example request
{
"version": "1.0.0",
"tags": {
"domain": [
"security",
"observability"
],
"technology": [
"aws",
"splunk"
]
}
}Response
The installed Pack object in a single-item list.
Example response
{
"items": [
{
"tags": {
"domain": [
"security",
"observability"
],
"technology": [
"aws",
"splunk"
]
},
"version": "1.0.0"
}
]
}