Skip to main content
Version: 4.10.1

SetCookie component

In Dovetail you can authenticate with almost any web api available, now you can also authenticate using session cookies. With the SetCookie component you can set cookies in a Cookie Store that is available throughout the flow, for as long as it is installed. This Cookie Store will be added to every single HTTP Component called in the flow. You can remove a cookie from the Cookie Store by using the RemoveCookie Component.

The SetCookie component can be used to authenticate with web API's using Sessions. You can overwrite a cookie by it's name and domain.

Configuration

The SetCookie component has the following configuration options:

PropertyDescription
NameThe name of the desired cookie.
ValueThe value you wish to set on the cookie.
DomainThe domain for which the cookie should be valid. (Optional)
PathThe path for which the cookie should be valid. (Optional)
Is SecureOnly allow this cookie for encrypted connections (HTTPS).

Remarks

  • All properties can contain ${header.<key>} and ${headers.<key>} values.