Webhooks management
In this section, you will find information about webhooks management.
Webhooks are triggered when they receive a new analysis on Horusec’s database. After you have inserted this analysis, Horusec verifies if there is some configured webhook to the selected repository and send the analysis via HTTP to the configured place.
On the webhook configuration, you have to choose:
- URL;
- Method (for now, it is POST);
- Headers (5 max);
- Description (optional);
- Repository.
See the a configuration example below:
After configuring the webhook, your API you receive a JSON with the format below:
{
"analysisVulnerabilities": [
{
"analysisID": "string",
"createdAt": "string",
"vulnerabilities": {
"code": "string",
"column": "string",
"commitAuthor": "string",
"commitDate": "string",
"commitEmail": "string",
"commitHash": "string",
"commitMessage": "string",
"confidence": "string",
"details": "string",
"file": "string",
"language": "string",
"line": "string",
"securityTool": "string",
"severity": "string",
"type": "string",
"vulnHash": "string",
"vulnerabilityID": "string"
},
"vulnerabilityID": "string"
}
],
"companyID": "string",
"companyName": "string",
"createdAt": "string",
"errors": "string",
"finishedAt": "string",
"id": "string",
"repositoryID": "string",
"repositoryName": "string",
"status": "string"
}
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.
Last modified May 20, 2021: Horusec v2 (#59) (8b86c28f)