List the domains associated with the users organization
GET
/v1/organizations/domains
const url = 'https://api.adversarial.com/api/v1/organizations/domains';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/organizations/domainsResponses
Section titled “Responses”List all domains for the organization
Media typeapplication/json
object
domains
required
Array<object>
Provides information about a domain
object
name
required
string
verified
required
boolean
Examplegenerated
{ "domains": [ { "name": "example", "verified": true } ]}Organization not found