Get integration configuration
GET
/v1/integrations/{name}
const url = 'https://api.adversarial.com/api/v1/integrations/example';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.adversarial.com/api/v1/integrations/exampleParameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”name
required
string
Integration vendor short name (e.g. ‘jira’, ‘wiz’, ‘bugcrowd’)
Responses
Section titled “Responses”Get config
Media typeapplication/json
Examplegenerated
exampleGet config not found