presence_session_attach
Attach real browser session cookies to a Presence identity, enabling authenticated actions. Export cookies from DevTools → Application → Cookies → copy as JSON array [{name,value,domain,path},...]. Cookies are encrypted with AES-256-GCM before storage. CALL FORMAT: presence_session_attach({ identity_id: 'uuid', cookies_json: '[{...}]', user_agent: 'Mozilla/...' })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_agent | No | Browser user-agent string (optional). | |
| identity_id | Yes | UUID of the identity to attach cookies to. | |
| cookies_json | Yes | JSON array of cookie objects from DevTools. |