Skip to content
support

Whether the contact-support form is enabled

GET
/v1/support/config
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.

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"
}
}