Files
NowChessSystems/bruno/backcore/game/01-create-game.bru
T
2026-04-15 10:14:48 +02:00

31 lines
363 B
Plaintext

meta {
name: Create game
type: http
seq: 1
}
post {
url: {{baseUrl}}/api/board/game
body: json
auth: none
}
headers {
Accept: application/json
Content-Type: application/json
}
body:json {
{
"white": {
"id": "player1",
"displayName": "Alice"
},
"black": {
"id": "player2",
"displayName": "Bob"
}
}
}