Skip to main content

get_rule_list

Get all automation rule configurations for this tenant. Rules define automatic actions triggered by events.
Property
Read-onlyYes

Parameters

None.

Returns

A list of ConfigRule objects with rule details including ID, name, trigger configuration, and actions.

add_endpoint_action

Attach a webhook-style POST action to an existing rule. When the rule fires, Ekso POSTs the rule-fire envelope to the given URL. Fire-and-forget — Ekso does not inspect the response.
Property
Read-onlyNo

Parameters

NameTypeDescription
ruleIdstringID of an existing rule (see get_rule_list).
urlstringHTTPS target URL. HTTP is allowed in development only. Private, loopback, link-local, and cloud metadata targets are blocked.
headersstring[]Admin-configured headers as "Name: value" strings. Parsed on the first colon only, so values containing colons (e.g. "Authorization: Bearer abc:xyz") are preserved.

Returns

The updated ConfigRule with the new endpoint action appended to actionEndpoint.

See also

Rule endpoint integrations — envelope shape, URL restrictions, and receiver examples in Node and C#.