I'm working on a game that interacts with an API. The problem I'm having is how to include a character_id value as a JSON body on my request. The following is what my API is receiving. Notice there is no character_id:
However, when I send the request from Postman, I get the following post, which includes the necessary information:
Here is how I'm building my POST request:
How can I better include the serialized data that my API requires?