support
Whether the contact-support form is enabled
GET
/v1/support/config
const url = 'https://aggregator.example.com/v1/support/config';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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://aggregator.example.com/v1/support/config \ --header 'Authorization: Bearer <token>'Reports whether SUPPORT_EMAIL is configured on this instance. The web app hides the “Contact support” entry point when false.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Default Response
Media typeapplication/json
object
enabled
required
boolean
Examplegenerated
{ "enabled": true}Default Response
Media typeapplication/json
object
error
required
object
code
required
string
title
required
string
detail
required
string
docs
string
fields
object
key
additional properties
requestId
required
string
timestamp
required
string
key
additional properties
any
key
additional properties
any
Examplegenerated
{ "error": { "code": "example", "title": "example", "detail": "example", "docs": "example", "fields": { "additionalProperty": "example" }, "requestId": "example", "timestamp": "example" }}
