Domain: Build

JFrog Platform Administration Documentation

Content Type
Administration / Platform
ft:sourceType
Paligo

Includes events that are triggered when certain build-related events occur in Artifactory:

Event: uploaded

The Webhook is triggered when a new build is uploaded. You can select the build names or build patterns on which the Webhook will be applied.

Build was Uploaded

{
  "domain": "build",
  "event_type": "uploaded",
  "data": {
    "build_name": "sample_build_name",
    "build_number": "1",
    "build_started": "1970-01-01T00:00:00.000+0000",
    "build_repo": "artifactory-build-info"
  },
  "subscription_key": "test",
  "jpd_origin": "https://<your_origin>",
  "source": "jfrog/<your_source>"
}

Event: deleted

The Webhook is triggered when a build is deleted. You can select the build names or build patterns on which the Webhook will be applied.

Build was Deleted

{
  "domain": "build",
  "event_type": "deleted",
  "data": {
    "build_name": "sample_build_name",
    "build_number": "1",
    "build_started": "1970-01-01T00:00:00.000+0000",
    "build_repo": "artifactory-build-info"
  },
  "subscription_key": "test",
  "jpd_origin": "https://<your_origin>",
  "source": "jfrog/<your_source>"
}

Event: promoted

The Webhook is triggered when a build is promoted. You can select the build names or build patterns on which the Webhook will be applied.

Build was Promoted

{
  "domain": "build",
  "event_type": "promoted",
  "data": {
    "build_name": "sample_build_name",
    "build_number": "1",
    "build_started": "1970-01-01T00:00:00.000+0000",
    "build_repo": "artifactory-build-info"
  },
  "subscription_key": "test",
  "jpd_origin": "https://<your_origin>",
  "source": "jfrog/<your_source>"
}