Get User Statscurl --location --request POST '/apis/v1/users/activity/stats' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"identifier": "email1@test.com",
"identifier_type": "email",
"days": 30
}'{
"status": "success",
"message": "User gamification stats fetched successfully",
"data": {
"user_id": "188055",
"range": {
"start_date": "2025-08-18",
"end_date": "2025-08-18"
},
"totals": {
"messages": 0,
"replies": 1,
"reaction": 0,
"socials": 0
},
"daily_stats": [
{
"date": "2025-08-18",
"messages": 0,
"replies": 1,
"reaction": 0,
"socials": 0
}
]
}
}