Get game round replay
Headers
-
Signature
string -
Public-Key
string
Body
-
brandId
string Required -
gameId
string Required -
gameRoundId
string Required Game round ID to fetch details for
-
locale
string Optional. Please default to the locale of the game round or Locale.ENGLISH if that is not possible
Values are
en
,en_so
,es_so
,da
,nl
,fi
,fr
,de
,el
,it
,no
,nb
,pl
,pt
,pt_br
,ru
,es
,sv
,tr
,zh
,zh_hk
,id
,ja
,ko
,ms
,th
,vi
,lv
,hr
,cs
,hu
,ro
,bg
,sk
,et
,ka
,lt
, oruk
. -
platform
string Optional. Please default to Platform.WEB
Values are
web
ormobile
. -
playerId
string Required
POST
/game/replay
curl \
--request POST 'BASE_URL/game/replay' \
--header "Content-Type: application/json" \
--header "Signature: string" \
--header "Public-Key: string" \
--data '{"brandId":"string","gameId":"string","gameRoundId":"string","locale":"en","platform":"web","playerId":"string"}'
Request examples
# Headers
Signature: string
Public-Key: string
# Payload
{
"brandId": "string",
"gameId": "string",
"gameRoundId": "string",
"locale": "en",
"platform": "web",
"playerId": "string"
}
Response examples (200)
{
"url": "string"
}
Response examples (400)
{
"code": "ERROR_UNKNOWN_ERROR",
"message": "string"
}
Response examples (401)
{
"code": "ERROR_INVALID_SIGNATURE",
"message": "string"
}
Response examples (500)
{
"code": "ERROR_UNKNOWN_ERROR",
"message": "string"
}