Hi,
Could you pls help to parse below response and get topic category name ? I am getting blank value because I have "dot" in the response attribute name. I tried putting double underscore still no luck. Is there a way to parse this ?
Note : we are not getting topic_category as a object.
{
"result": [
{
"number": "12345687",
"sys_id": "fjdhfkhlfdlsafdsa",
"topic_category.name": "Test",
}
]
}
Response Contract Json:
{
"type": "object",
"properties": {
"number": {
"type": "string"
},
"name": {
"type": "string"
}
},
"additionalProperties": true
}
Response Translation:
{
"translationMap": {
"number": "$.result[0].number",
"name": "$.result[0].topic_category__name"
},
"translationMapDefaults": {
"name": """"
},
"successTemplate": "{\r\n"number": ${number},\r\n"name": ${name}}"
}