Forum Discussion
Based on that error message, it sounds like the content coming back is not valid JSON? Can you inspect the response from POSTMAN and check it for json validity? A copy/paste of the response from postman and/or the RAW tab (if applicable) in ReadyAPI may help as well.
Verified response from POSTMAN is a valid JSON.
Response from POSTMAN:
{
"displayCatalogMembers": [{
"displayTypeQualifier": "DisplayOfferingGroup",
"id": "123456789",
"name": "Region",
"sequence": 1,
"members": [],
"displayOfferingGroupFilters": []
}]
}
RAW response from Ready API:
{
"displayCatalogMembers": [{
"displayTypeQualifier": "DisplayOfferingGroup",
"id": "123456789",
"name": "Region",
"displayTypeQualifier": "DisplayOfferingGroup",
"sequence": 1,
"members": [],
"displayOfferingGroupFilters": []
}]
}
In RAW response of Ready API we are getting attribute "displayTypeQualifier" twice but not sure why? Why is POSTMAN and Ready API giving different response for the same endpoint and same request. Does the POSTMAN remove the duplicate attributes automatically?