Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use a Jenkins shell step to call the Cloudgeni scan API directly and keep your pipeline integration explicit.
pipeline { agent any stages { stage('Cloudgeni Static Analysis') { steps { sh ''' curl --fail --silent --show-error \ -X POST \ -H "Content-Type: application/json" \ -H "X-CLOUDGENI-API-KEY: ${CLOUDGENI_API_KEY}" \ "${CLOUDGENI_API_URL}/api/v1/organizations/${CLOUDGENI_ORG_ID}/workspaces/${CLOUDGENI_WORKSPACE_ID}/repositories/${CLOUDGENI_REPO_ID}/static-analysis" \ -d '{"analysisEngine":"checkov","excludedPaths":[]}' ''' } } } }