display_webpage
Internal beta โ config shape is being migrated
The Automation API is an internal beta and is not released yet โ endpoints and payloads may change or be
withdrawn without notice. This action's config is being migrated to a typed schema; the fields below reflect that
in-progress shape. Always read the authoritative, live shape from
GET /v1/automation/meta/action before building against it.
Display webpage โ renders an HTML webpage to the user. group: "action". Requires the weblink_clicked trigger context.
Part of the Automation calls & weblinks family. This page
documents the typed config; for how an action sits inside an automation definition, see
Actions and Action examples.
Configโ
| Key | Type | Required | Description |
|---|---|---|---|
join_type | enum | no | How the webpage joins any previously displayed webpage. Default add_below. |
fullscreen | boolean | no | Whether the webpage is displayed fullscreen. Carried through only when set. |
remove_branding | boolean | no | Whether Tape branding is removed. Carried through only when set. |
webpage_body | template value | no | HTML template string rendered as the webpage body. Empty when omitted. |
join_type tokens (lower-case): add_below, add_above, replace_previous. Omitted โ the editor seeds and the
mapper fills add_below.
Exampleโ
An action entry inside an automation definition's actions[]:
{
"type": "display_webpage",
"config": {
"join_type": "add_below",
"fullscreen": true,
"remove_branding": false,
"webpage_body": ["<h1>Hello ", { "kind": "variable", "source": "meta", "meta_type": "app_record_id" }, "</h1>"]
}
}
Validation & behaviorโ
- No member is required โ an omitting caller still yields a complete internal action.
join_typehas no public default, but the editor seedsadd_belowand the mapper fills it, so an omittedjoin_typebehaves asadd_below.webpage_bodydefaults to empty when omitted;fullscreenandremove_brandingare carried through only when the caller supplies them.- This action needs the
weblink_clickedtrigger context to run.
See alsoโ
- Dynamic values โ template values and references
- Action examples ยท Actions catalog