31 lines
363 B
Plaintext
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"
|
|
}
|
|
}
|
|
}
|
|
|