Skip to main content
GET
/
v1
/
edge
/
bootstrap
Returns config entries + automations assigned to this edge
curl --request GET \
  --url http://0.0.0.0:3000/v1/edge/bootstrap \
  --header 'Authorization: Bearer <token>'
{
  "edge_id": 123,
  "org_id": "<string>",
  "user_id": "<string>",
  "location": "<string>",
  "capabilities": {},
  "config_entries": [
    {}
  ],
  "automations": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Bootstrap payload

edge_id
integer
org_id
string | null
user_id
string | null
location
string
capabilities
object
config_entries
object[]
automations
object[]