Discover Control API and OAuth device-flow settings
curl --request GET \
--url https://harness.example.com/.well-known/metaharnessconst options = {method: 'GET'};
fetch('https://harness.example.com/.well-known/metaharness', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://harness.example.com/.well-known/metaharness"
response = requests.get(url)
print(response.text){
"version": 1,
"control_api_url": "<string>",
"oauth": {
"issuer": "<string>",
"client_id": "<string>",
"scopes": [
"<string>"
]
}
}System
Discover Control API and OAuth device-flow settings
Public, versioned bootstrap metadata containing no credentials or organization policy.
GET
/
.well-known
/
metaharness
Discover Control API and OAuth device-flow settings
curl --request GET \
--url https://harness.example.com/.well-known/metaharnessconst options = {method: 'GET'};
fetch('https://harness.example.com/.well-known/metaharness', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://harness.example.com/.well-known/metaharness"
response = requests.get(url)
print(response.text){
"version": 1,
"control_api_url": "<string>",
"oauth": {
"issuer": "<string>",
"client_id": "<string>",
"scopes": [
"<string>"
]
}
}