CI/CD Tool Integration

Understand the effect of your product updates

Connecting your CI/CD tool (such as CircleCi, Jenkins, GitHub Actions, etc.) provides a clear indication when new updates are released to your product. In addition to making these updates visible to your team in Timeline, these cue the Fuzy Insight Engine to watch for changes in user behavior and outcomes in order to generate timely, relevant insights. This can help your team validate whether product updates are having the intended effects on both leading and lagging indicators.

πŸ“˜

Requirement

Please contact [email protected] for an API key.

Fuzy can connect to any CI/CD tool integration you use. To implement, you need to invoke our PUT /v3/timeline/cicd/release public api in your build script.

One example command:

curl --request PUT \
     --url https://api.fuzy.ai/v3/timeline/cicd/release \
     --header 'content-type: application/json' \
		 --header 'x-api-key: YOUR_PUBLIC_API_KEY' \
     --data '
{
     "description": "latest-commit-XYZ",
     "vendor": "CircleCi"
}
'