I am new to JSON and Postman. I think I'm trying to do something very simple.
I have created a POST request which will get a JSON response like the one below.
In the example below from inside of the FieldGroups array I want to get the value of Id but only if the value of Name is General
How can I do it? Thanks in advance.
{
"Id": 1328,
"Name": "AAA Test",
"Owner": {
"Id": 208,
"Name": "The Boss"
},
"FieldGroups": [
{
"Id": "c81376f0-6ac3-4028-8d61-76a0f815dbf8",
"Name": "General",
"FieldDefinitions": [
{
"Id": 1,
"DisplayName": "Product Name"
},
{
"Id": 2,
"DisplayName": "Short Description"
},
{
"Id": 33,
"DisplayName": "Long Description"
},
]
},
{
"Id": "5ed8746b-0fa8-4022-8216-ad3af17db91f",
"Name": "Somethingelse",
"FieldDefinitions": [
{
"Id": 123,
"DisplayName": "Attribution"
},
{
"Id": 1584,
"DisplayName": "FC1"
},
{
"Id": 623,
"DisplayName": "Sizes",
"Owner": {
"Id": 208,
"Name": "The Boss"
},
"Unit": "",
"Options": [
{
"Id": 1,
"Value": "XS"
},
{
"Id": 2,
"Value": "S"
},
{
"Id": 3,
"Value": "M"
},
]
}
]
}
],
},
"Version": 1
}