如何根据POSTMAN中的日期项过滤出JSON响应

如何根据POSTMAN中的日期项过滤出JSON响应,json,get,postman,date-range,Json,Get,Postman,Date Range,我想根据数据范围过滤掉JSON响应中的对象。我在POSTMAN中的JSON响应如下所示-- 我想根据日期范围筛选出对象,即那些_last_update_date_time介于10月12日至10月17日之间的对象,即筛选出后,我想在我的回复中包含以下内容-- POSTMAN GET请求的测试选项卡中的js是什么,我应该使用它来获得上述结果。您已经尝试了什么?请分享你的代码。你面临哪些具体问题?谢谢你的考虑?和。 { "officeLocation": &

我想根据数据范围过滤掉JSON响应中的对象。我在POSTMAN中的JSON响应如下所示--

我想根据日期范围筛选出对象,即那些_last_update_date_time介于10月12日至10月17日之间的对象,即筛选出后,我想在我的回复中包含以下内容--


POSTMAN GET请求的测试选项卡中的js是什么,我应该使用它来获得上述结果。

您已经尝试了什么?请分享你的代码。你面临哪些具体问题?谢谢你的考虑?和。
    {
        "officeLocation": "GUO",
        "employmentType": {
            "_last_update_date_time": "2020-10-15T16:44:33+00:00",
            "primaryName": "Internal",
            "id": 1
        },
        "firstName": "ABC",
        "lastName": "XYZ",
        "functionName": "DML",
        "email": "abc.xyz@website.com",
        "status": "Active",
        "orgUnit": "L3DML",
        "profile": "SA"
    },
    {
        "officeLocation": "GUO",
        "employmentType": {
            "_last_update_date_time": "2020-09-26T16:44:33+00:00",
            "primaryName": "Internal",
            "id": 1
        },
        "firstName": "DEF",
        "lastName": "PQR",
        "functionName": "MIM",
        "email": "def.pqr@website.com",
        "status": "Active",
        "orgUnit": "CDO",
        "profile": "A",
    },
    {
        "officeLocation": "OLS",
        "employmentType": {
            "_last_update_date_time": "2020-09-23T16:44:33+00:00",
            "primaryName": "Internal",
            "id": 1
        },
        "firstName": "RST",
        "lastName": "QRV",
        "email": "rst.qrv@website.com",
        "status": "Active",
        "orgUnit": "GPCT",
        "profile": "WU",
        
    }
    {
        "officeLocation": "GUO",
        "employmentType": {
            "_last_update_date_time": "2020-10-15T16:44:33+00:00",
            "primaryName": "Internal",
            "id": 1
        },
        "firstName": "ABC",
        "lastName": "XYZ",
        "functionName": "DML",
        "email": "abc.xyz@website.com",
        "status": "Active",
        "orgUnit": "L3DML",
        "profile": "SA"
    }