Try using [FromForm]
instead of [FromBody]
.
public IActionResult Post([FromForm] PlayerPackage playerPackage)
-
FromBody
> Bind from JSON -
FromForm
> Bind from Form parameters
You can also remove [FromBody]
altogether and trial it then. Because you are expecting form-urlencoded should tell it to bind to object.