Interaction Controller

Interaction Filter By Category, Item, And Date Range

Path: /api/interaction

Method: GET

Example Http Request

GET /api/interaction?from=2025-11-02T00%3A09%3A13.233Z&to=2025-11-06T00%3A09%3A23.277Z&category=category2&item=item2 HTTP/1.1
X-WAL: 0x1234567890123456789012345678901234567890
X-SIG: 0xmockedsignature
X-MES: VGVzdCBtZXNzYWdl
Host: localhost:8080

Example Http Response

HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Access-Control-Allow-Headers: Origin, Content-Type, Accept, Authorization, Accept-Language, connection, Cache-Control, Access-Control-Request-Method, Access-Control-Request-Headers, X-SIG, X-WAL, X-MES
Access-Control-Allow-Credentials: true
Access-Control-Allow-Methods: GET, POST, PUT, PATCH, DELETE, OPTIONS, HEAD
Access-Control-Expose-Headers: Access-Control-Allow-Origin, Access-Control-Allow-Credentials
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-Frame-Options: DENY
Content-Length: 392

[{"created":1762128563233,"logEventType":"Interaction","sessionId":"sessionId2","channelId":"channel2","sceneId":"scene2","category":"category2","item":"item2","action":"action2","playerId":"playerId2","message":"message2","playerMovement":{"timestamp":null,"playerId":"playerId2","position":null,"velocity":null,"rotation":0.0,"jumpTime":0.0,"lookTarget":null},"displayName":"displayName2"}]

Example Curl Request

$ curl 'http://localhost:8080/api/interaction?from=2025-11-02T00%3A09%3A13.233Z&to=2025-11-06T00%3A09%3A23.277Z&category=category2&item=item2' -i -X GET \
    -H 'X-WAL: 0x1234567890123456789012345678901234567890' \
    -H 'X-SIG: 0xmockedsignature' \
    -H 'X-MES: VGVzdCBtZXNzYWdl'

Interaction Controller