Need to get Value From Json

Hi,

I have one Json format in that i want “Reimbursement Terms” value(“Formula:= ( Current Amount * 0.98 )”. Attached Format and Snapshot below

[
{
“Information”: [
{
“Name”:“Rishi”
"Age:“24”
}
],
“Master Table”: [
{
“Name”:“Yamini”
"Age:“29”
}
],
“CPT Table”: [
{
“Name”:“Ganguly”
"Age:“54”
}
],
“Reimbursement Table”: [
{
“Service Type”: “All OP”,
“Reimbursement Terms”: “Formula:= ( Current Amount * 0.98 )”
}
]
}
]

Thanks,
Rishi

Attached Snapshot Below

Thanks,
Rishi

@ppr Can You Please Check If Ur Available…Thanks

Hello @Rishik_Chowdary

Please refer to the below post.

Hi @Rishik_Chowdary

Can you please try this

image

Could you please check your json array format, it should be like below.

[
  {
    "Information": [
      {
        "Name": "Rishi",
        "Age": "24"
      }
    ],
    "Master Table": [
      {
        "Name": "Yamini",
        "Age": "29"
      }
    ],
    "CPT Table": [
      {
        "Name": "Ganguly",
        "Age": "54"
      }
    ],
    "Reimbursement Table": [
      {
        "Service Type": "All OP",
        "Reimbursement Terms": "Formula:= ( Current Amount * 0.98 )"
      }
    ]
  }
]

ReadJSON.xaml (5.6 KB)
Input.JSON (461 Bytes)

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.