BadRequest (21400)

Hey, I’m trying to use the matchmaker, but when I create a backfill ticket I get this response:

[Matchmaker]: BadRequest (21400)
Title: Bad Request
Errors:
{"source":["Value cannot be null. (Parameter 'source')"]}

I’ve tried looking around but cannot find the “source” parameter that it is referring to.

The code creating the ticket looks like this:

            BackfillTicketId = await MatchmakerService.Instance.CreateBackfillTicketAsync(new ()
            {
                Connection = $"{transport.ConnectionData.Address}:{transport.ConnectionData.Port}",
                Properties = new BackfillTicketProperties(new MatchProperties(players: currentPlayers)),
                QueueName = payload.QueueName,
                MatchId = payload.MatchId,
                PoolId = payload.PoolId,
            });

Any help getting this resolved would be great!

Turns out removing the MatchId and PoolId makes it work :face_with_spiral_eyes: