Last updated 10 months ago
Report the score for the match with the specified matchId.
matchId
"92ea871e-7084-4087-b58a-391763b41ffe"
Report Match Score
const response = await fetch('https://dubbz.com/api/v1/partner/pvp/matches/{matchId}/report', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "teams": [ { "id": "92ea871e-7084-4087-b58a-391763b41ffe", "score": 100 }, { "id": "01551edd-744b-43c2-8f57-8afeb18b5c5b", "score": 150 } ], "winnerTeamId": "92ea871e-7084-4087-b58a-391763b41ffe" }), }); const data = await response.json();