Get User Gamification Logs
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"user": "johndoe@gmail.com",
"date": {
"gte": "2025-01-01",
"lte": "2025-12-31"
},
"time": {
"gte": "00:00",
"lte": "23:59"
},
"action": [
"Send message"
],
"limit": 100,
"page": 1
}
Request Code Samples
curl --location --request POST 'https://integration.returning.ai/apis/v1/gamifications/logs' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"user": "johndoe@gmail.com",
"date": {
"gte": "2025-01-01",
"lte": "2025-12-31"
},
"time": {
"gte": "00:00",
"lte": "23:59"
},
"action": [
"Send message"
],
"limit": 100,
"page": 1
}'
Responses
application/json Modified at 2025-12-16 17:13:05