Objects

This is a preview version of the API intended for early testing and integration. Preview versions are not stable and may include breaking changes before general availability.

Cookie

A description of an HTTP cookie.

domainstring

Domain of the cookie.

httpOnlyboolean

Whether the cookie is set to httpOnly or not.

namestring

Name of the cookie.

pathstring

Path of the cookie.

secureboolean

Whether the cookie is secure or not.

valuestring

Value of the cookie.

Example
{  "domain": ".insurely.com",  "httpOnly": false,  "name": "COOKIE_CONSENT",  "path": "/",  "secure": true,  "value": "1"}