Match Aborted
When not all players connect within a certain amout of time, the match has to be aborted and all the missing players (referred to as "afks") must be reported. Whenever that happens, a match abort event must be sent to the Faceit Games API.

The request payload contains an afk array that lists the in-game player ids of players who did not join the match.
Example payload
{
"event_type": "ABORTED",
"payload": {
"afk": [ "s1mple", "badboy" ]
}
}
Autoabort
If Autoabort is enabled, the Match Abort event will be sent automatically when not all expected players have joined within a specified amount of time.
Additionally, game developers may opt to mark the missing players as afk.