get_rule_list
Get all automation rule configurations for this tenant. Rules define automatic actions triggered by events.| Property | |
|---|---|
| Read-only | Yes |
Parameters
None.Returns
A list ofConfigRule 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-only | No |
Parameters
| Name | Type | Description |
|---|---|---|
ruleId | string | ID of an existing rule (see get_rule_list). |
url | string | HTTPS target URL. HTTP is allowed in development only. Private, loopback, link-local, and cloud metadata targets are blocked. |
headers | string[] | 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 updatedConfigRule with the new endpoint action appended to actionEndpoint.