Fullstory

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

modbender Updated 12 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

modbender/skill-library-mcp/tree/main/data/fullstory commit 624d9977de

Frequently asked questions

npx skillmds@latest add modbender/fullstory