List all incident sources available for use in the organization
GET
/v1/incidents/sources
const url = 'https://api.adversarial.com/api/v1/incidents/sources';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/incidents/sourcesResponses
Section titled “Responses”List of incident sources
Media typeapplication/json
object
sources
required
Array<object>
object
description
string | null
name
required
string
Examplegenerated
{ "sources": [ { "description": "example", "name": "example" } ]}