Docs navigation
Orchestrations

Get Orchestration Secrets

Get Orchestration Secrets

GET/v2/orchestrations/{orchestration_id}/secrets

The NAMES of this orchestration's secrets. Values are never returned. A deployment without the feature answers 200 with ``enabled=false`` rather than 404: the client renders an explanatory empty state, and a 404 would be indistinguishable from a mistyped orchestration id.

Path Parameters

orchestration_idstring · uuidrequired
Request
curl --request GET \
  --url https://api.brainbaselabs.com/v2/orchestrations/{orchestration_id}/secrets \
  --header 'Authorization: Bearer YOUR_API_KEY'
Response
json
{
  "keys": [
    "string"
  ],
  "enabled": true,
  "updated_at": "2019-08-24T14:15:22Z"
}