What are the possible reasons why certain keys are being passed with null values from the frontend to the backend in a running project?

This discrepancy is leading to incomplete or incorrect processing, which significantly affects the user experience. What can be the root causes ?

4 Likes

@Ritik_Dixit Can you check ?

3 Likes

@Neeraj_Kumar Please explain a bit more with some examples or scenarios (If have) ?

1 Like

@Ritik_Dixit Suppose there are three APIs: A, B, and C.
API A returns a response that is used as input(request body) in both APIs B and C.

The response from A is correctly passed to B, but in the case of C, the same data is passed as null in the request body.

3 Likes