Fetch deployment-wide dashboard branding
curl --request GET \
--url https://harness.example.com/brandingconst options = {method: 'GET'};
fetch('https://harness.example.com/branding', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://harness.example.com/branding"
response = requests.get(url)
print(response.text){
"logo_url": "<string>",
"favicon_url": "<string>"
}System
Fetch deployment-wide dashboard branding
GET
/
branding
Fetch deployment-wide dashboard branding
curl --request GET \
--url https://harness.example.com/brandingconst options = {method: 'GET'};
fetch('https://harness.example.com/branding', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://harness.example.com/branding"
response = requests.get(url)
print(response.text){
"logo_url": "<string>",
"favicon_url": "<string>"
}Response
200 - application/json
Logo and favicon URLs used by authenticated and logged-out pages
