Skip to main content
Version: Streamsheets 2.5

WEBPAGE

Creates a webpage at the given URL. This uses a special REST feeder internally.

Syntax

=WEBPAGE(URL, HTML, Refresh)

Arguments

NameDescription
URLA URL suffix which is appended to the base url provided by internally used feeder.
HTMLA String which defines the webpage to create.
RefreshThe http refresh rate in seconds

Return Value

TRUE on success or error code otherwise.

Example

We assume that the used REST feeder provides following base URL: https://dev.cedalo.com/rest/v1.0/webpages

FunctionResultComment
=WEBPAGE(“test1/test2”,“<html><body><h1>HELLO</h1></body></html>”, 5)TRUECreates a webpage with a single HELLO title. The webpage is accessable at: https://dev.cedalo.com/rest/v1.0/webpages/test1/test2