We are trying to configure a webhook from Harness Code Repository to an Argo CD instance using the standard Argo CD webhook endpoint: https://argocd-instance/api/webhook The request reaches Argo CD successfully, but Argo CD rejects it with: HTTP 400 Unknown webhook event From our investigation, Argo CD expects webhook requests in one of the SCM formats it supports, such as GitHub, GitLab or Bitbucket. Harness Code currently sends its own webhook payload format, for example: { "trigger": "branch_created", "repo": { "id": 68, "identifier": "OCM", "default_branch": "main", "git_url": " https://MY_GIT_URL.git " }, "ref": { "name": "refs/heads/argocd-test" }, "sha": "aaa0c10789f206ffdfa312e8226a443dcd028123", "old_sha": "0000000000000000000000000000000000000000" } Argo CD does not recognize this payload and therefore returns Unknown webhook event. Would it be possible to configure Harness Code Repository webhooks to send an Argo CD-compatible payload, for example by using the GitHub or GitLab webhook format?