When a contact add or edit to Infusionsoft after save the data Infusionsoft calling the hookUrl page with some data.
When I am grabbing the data on the hookUrl page then I am seeing that a bunch of contacts array with json format not individually contact.
My question is why a bunch of array return on hookUrl page like below code:
{"event_key":"contact.edit","object_type":"contact","object_keys":[{"apiUrl":"","id":17738,"timestamp":"2018-03-29T10:55:37Z"},{"apiUrl":"","id":183754,"timestamp":"2018-03-29T10:55:27Z"},{"apiUrl":"","id":135369,"timestamp":"2018-03-29T10:55:22Z"},{"apiUrl":"","id":18786,"timestamp":"2018-03-29T10:55:22Z"}],"api_url":""}
Here (above code) you can see 4 contacts in one array(json format), but I need each contact with individual array like below code:
{"event_key":"contact.edit","object_type":"contact","object_keys":[{"apiUrl":"","id":17738,"timestamp":"2018-03-29T10:55:37Z"}],"api_url":""}
{"event_key":"contact.edit","object_type":"contact","object_keys":[{"apiUrl":"","id":183754,"timestamp":"2018-03-29T10:55:27Z"}],"api_url":""}
{"event_key":"contact.edit","object_type":"contact","object_keys":[{"apiUrl":"","id":135369,"timestamp":"2018-03-29T10:55:22Z"}],"api_url":""}
{"event_key":"contact.edit","object_type":"contact","object_keys":[{"apiUrl":"","id":18786,"timestamp":"2018-03-29T10:55:22Z"}],"api_url":""}
How it’s possible?