Fullstory

Access session replays and analytics via FullStory API. Debug user experiences.

kbarbel640-del Updated 1 repo stars

File contents

FullStory

Digital experience analytics.

Environment

export FULLSTORY_API_KEY="xxxxxxxxxx"

Search Sessions

curl -X POST "https://api.fullstory.com/v2/sessions/search" \
  -H "Authorization: Basic $FULLSTORY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"filter": {"type": "And", "filters": [{"type": "Event", "name": "Error"}]}}'

Get Session

curl "https://api.fullstory.com/v2/sessions/{sessionId}" \
  -H "Authorization: Basic $FULLSTORY_API_KEY"

Set User Properties

curl -X POST "https://api.fullstory.com/v2/users" \
  -H "Authorization: Basic $FULLSTORY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"uid": "user123", "properties": {"displayName": "John Doe", "email": "john@example.com"}}'

Links

kbarbel640-del/skills/tree/main/skills/mrgoodb/fullstory commit b1781a872e

Frequently asked questions

npx skillmds@latest add kbarbel640-del/fullstory