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