Match Update
This event can be used for any meaningful update on the match that will not trigger a particular Match status change on FACEIT. It can be used to enrich the matchroom on FACEIT with real-time events. This event is not mandatory, so the configuration of this endpoint is optional.

The request payload can contain any meaningful information about the match - e.g.: score updates, player disconnected, end of round etc...
Example payload
{
"event_type": "UPDATED",
"payload": {
"round": 1,
"leavers" : [
"Steam|888",
"Steam|999"
],
"score" : {
"faction1" : 1,
"faction2" : 2
},
"asc_score": true,
"afk" : [
"Steam|111"
],
"players_to_release": [
123
]
}
}