Skip to main content

Cookie Storage

Overview

A non visible component to create, update and delete cookies in cookie storage.

Blocks

Methods

Store Value

Method to store value in the cookie storage by given key and value

loading block...

Input ParamsTypeDescription
keyStringIt's a unique name that helps you identify a specific piece of stored information.
valueStringThe value is the actual content to be stored in the cookie storage.
domainStringDefines under which domain the cookie must be stored. Default to hostname
expiresStringThe date and time at which the cookie should expire. The string format should be in ISO format or UTC format

Get Value

Returns: String

gets the value from the cookie storage for the given key

loading block...

Input ParamsTypeDescription
keyStringThe unique name that is used to store the value by using Store Value block.

Delete Item

removes the given key from the cookie storage

loading block...

Input ParamsTypeDescription
keyStringThe unique name that is used to store the value by using Store Value block.

Delete Item

removes all the data from the cookie storage

loading block...