I'm looking to create a test in Postman to validate the presence of JSON keys in the server response I've received.
Here is the response:
{
"Result": 0,
"ResponseStatus": {
"ErrorCode": null,
"Message": null,
"StackTrace": null,
"Errors": null
},
"ResponseHeader": {
"Succeeded": true,
"Errors": null
},
"SessionId": "XXX-XXX-XXX"
}
I aim to verify if "Results, Errorcode, Message, Succeeded" are included.
Appreciate your help!