curl --request GET \
--url https://api.hebbianrobotics.com/api/access \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hebbianrobotics.com/api/access"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.hebbianrobotics.com/api/access', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"capabilities": [],
"scope": {
"kind": "public"
},
"writes_require_admin": true
}{
"code": "<string>",
"message": "<string>"
}Effective capabilities of the request's principal.
curl --request GET \
--url https://api.hebbianrobotics.com/api/access \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hebbianrobotics.com/api/access"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.hebbianrobotics.com/api/access', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"capabilities": [],
"scope": {
"kind": "public"
},
"writes_require_admin": true
}{
"code": "<string>",
"message": "<string>"
}Authorizations
Capability-bearing token issued by a squash operator. Required for curation, exports, dataset registration, and job control when the deployment runs in gated mode; public reads stay open. GET /api/access reports the capabilities a given credential actually carries.
Headers
Optional bearer credential
Optional organization selector for the legacy CLI operator
Response
Effective request capabilities
Effective access granted to the principal represented by the request.
Finite wire values returned by GET /api/access.
view_data, view_internals, curate_data, export_data, manage_datasets, manage_jobs The tenant boundary applied to every dataset, job, event, and storage key.
- Option 1
- Option 2
Show child attributes
Show child attributes
true exactly when the server runs in gated mode (an admin token is
configured): privileged endpoints require an authorization bearer token,
while public reads stay open. false in open mode.
