I'm completely new to postman. I'm able to GET the following results below.
How would I go about defining my output from the array. So for example, the call output should only list the Real_name,Title and emailaddress fields?
{
    "ok": true,
    "offset": "DDGGDFRDFG",
    "members": [
        {
            "id": "100",
            "real_name": "First Surname",
            "tz": "Europe/London",
            "profile": {
                "title": "Sales",
                ],
                "email": "First.Surname@test.com",
            },
            "is_admin": False,
                ]
            }
        },
        {
            "id": "101",
            "real_name": "First1 Surname1",
            "tz": "Europe/London",
            "profile": {
                "title": "Acccounts",
                ],
                "email": "First1.Surname1@test.com",
            },
            "is_admin": False,
                ]
            }
        },
 
    

