Includes events that are triggered when certain artifact property actions occur in Artifactory:
Event: added
The Webhook is triggered when a property is added to an artifact/folder in a repository, or the repository itself. You can select the repositories and repository paths on which the Webhook will be applied.
Artifact Property was Added
{
"domain": "artifact_property",
"event_type": "added",
"data": {
"repo_key": "sample_repo",
"path": "sample_dir/sample.txt",
"name": "sample.txt",
"sha256": "sample_checksum",
"size": 0,
"property_key": "sample_key",
"property_values": [
"sample_value1"
]
},
"subscription_key": "test",
"jpd_origin": "https://<your_origin>",
"source": "jfrog/<your_source>"
}Event: deleted
The Webhook is triggered when a property is deleted from an artifact/folder in a repository, or the repository itself. You can select the repositories and repository paths on which the Webhook will be applied.
Artifact Property was Deleted
{
"domain": "artifact_property",
"event_type": "deleted",
"data": {
"repo_key": "sample_repo",
"path": "sample_dir/sample.txt",
"name": "sample.txt",
"sha256": "sample_checksum",
"size": 0,
"property_key": "sample_key",
"property_values": [
"sample_value1"
]
},
"subscription_key": "test",
"jpd_origin": "https://<your_origin>",
"source": "jfrog/<your_source>"
}