{ "message": "Foo request failed", "errors": [ "Error converting value {null} to type 'System.Boolean'. Path '[43].Group_Is_Full', line 1, position 30730.", "Null object cannot be converted to a value type." ] }
My goal is to narrow down the exact piece of code in which this error occurred. I cannot step through it easily in prod for a variety of reasons.
So, does Path '[43] , line 1, position 30730
provide me with anything that can help in that regard (I don't know what any of those numbers refer to and that's my question).
P.S. This is coming from a .NET C# Web API 2
backend. It's a response to a POST
request that comes back with a 400
.
Edit:
This is the body of the json being sent, I am looking into it more, stand by for more updates:
{
"contactId": 999999,
"address": {
"addressLine1": "9999 Foo ave",
"addressLine2": null,
"city": "Phoenix",
"state": "AZ",
"zip": "43127"
},
"isHomeAddress": true,
"contactNumber": "513-123-4568",
"groupDescription": "Lol join this, its awesome"
}