Getting all public configuration
(introduced: version 2026.1)
This endpoint will return all server configuration that is publicly accessible in a single object. This endpoint does not require authentication.
The following configurations are publicly accessible:
- login-appearance
- logo
- hero-image
The following configuration is not publicly accessible and requires authentication to access:
- analytics
For configuration that stores binary data (e.g., logo), this endpoint only returns metadata about the configuration (e.g., when the configuration was last set). To retrieve the binary data, you can use the corresponding endpoint described above (e.g., /v1/config/logo). If the configuration is publicly accessible, you can access the binary data without providing authentication via /v1/config/public/:key (e.g., /v1/config/public/logo).
Response
OK
Example response
{
"login-appearance": {
"key": "login-appearance",
"setAt": "2018-01-06T00:32:52.787Z",
"value": {
"title": "Better Data, Better Cocoa"
}
},
"logo": {
"key": "logo",
"setAt": "2018-01-06T00:32:52.787Z",
"blobExists": true
},
"hero-image": {
"key": "hero-image",
"setAt": "2018-01-06T00:32:52.787Z",
"blobExists": true
}
}