We’re building an app to integrate vulnerability scan information for our customers who use Jira. We’re attempting to use the jiraSecurityInfoProvider to allow them to select their containers, add them to their project, and then receive vulnerability information.
We’ve successfully integrated actions like fetchWorkspaces
, fetchContainers
, and searchContainers
. Where we are having trouble is when a Jira users associates a container with their project, as far as we can tell, the API doesn’t send us any indication that the container has been associated with the project, so we don’t know WHEN to send the vulnerability data, or for which project or container.
Are we missing some detail about a webhook that notifies our application when a container is associated? How do the existing security integrations know that a container has been associated and trigger the syncing of vulnerability data?
Thanks for any help or direction you can provie.