This Tetris game is controlled by the API. Each API invocation adds 1 block to the queue. Pieces automatically appear on the board from the queue, colored based on the category color. Use arrow keys to move pieces (←→↓) and rotate (↑). Click PLAY NEXT MOVE to drop the current piece immediately.
curl -X POST https://tetris.dimescheduler.com/api/webhook \ -H "Content-Type: application/json" \ -d @test-data.json
Invoke-RestMethod -Uri "https://tetris.dimescheduler.com/api/webhook" \
-Method POST -ContentType "application/json" \
-Body '{"message": "Hello Tetris!"}'