I might not even be using the proper terminology, so I apologize in advance.
I am using Postman to run API calls to collect data for clients and my own research and I need to filter the request by a "sub object" (again not sure about the terminology)
This is the call I used to get the below response:
https://apicfa.convirza.com/v2/call/dni?filter=group_id=8361&limit=10
{
"result": "success",
"err": null,
"data": [
{
"call_id": "6834916",
"call_flow_id": 22830,
"group_id": 8361,
"disposition": "ANSWERED",
"duration": 27,
"caller_id": "5551234545",
"tracking_number": "5551234545",
"ring_to": "5551234545",
"repeat_call": false,
"call_started": "2018-05-03T21:30:35.000Z",
"dni_data": {
"browser": "Chrome/(Android; Android 7.1.1)",
"created_at": "2018-05-03T21:30:10.000Z",
"custom_params": {},
"destination_url": "",
"dni_vid": "",
"first_page": "",
"ga_cid": "",
"ip_host": "",
"last_page": "",
"log_date": "2018-05-03 21:30:10 UTC",
"location_details": {
},
"ref_param": {
"utm_medium": "cpc",
"utm_campaign": "GT:Tampa",
"utm_source": "google"
},
"master_node_id": 8361,
"organizational_unit_id": 8361,
"referring": "https://google.com",
"referring_type": "Paid",
"referring_url": "",
"search_words": "Not Provided",
"session_id": "",
"updated_at": "",
"gclid": "EwE",
"gclsrc": "",
"phone_numbers": {
"id": 60270626,
"dni_log_id": "5aeb7f628a95c63fe500055b",
"dni_id": "3798",
"phone_number": "5551234545",
"element": "cfa_eps",
"phone_number_id": "",
"pool_id": "6118",
"number_last_used": "2018-05-03 21:30:10 UTC",
"provisioned_route_id": "22830"
}
}
},
What I would like to do is filter by "custom_params" or "utm_medium" but I can not fiqure out how to get to that level. Any help would be greatly appretiated.