Hello,
I hope you are well.
I am sending you this message because I have a serious problem with the use of Make, and I hope to find a solution because it is decisive for the rest of my use.
Here is the context:
I make an HTTP request that returns a lot of data in text form, far too much data for the entire response to be recorded in the module output (we are talking about 1000 records containing +/- 30 fields each). So, thanks to the structure of the response, I can activate the Parse response parameter and there I receive 1000 entries in an Array. For information, the request may loop several times if the response contains +1000 entries (hence the repeater module).
Following this HTTP request, I would like to check for each collection, for each operation: if a predefined list of keys is present. If so, I want to retrieve the key-value pair, otherwise do nothing.
And this is where I have a serious problem: before when I do not parse the response of the HTTP request, I could transform the response into json and perform a Match Pattern on all the keys I wanted without problem. But I realized that the json was not complete (information of this kind is written at the end of the text: End of data sample, string was originally 461943 characters long.)
So I went through the solution I told you about just before (enable parsing of the HTTP response), but the problem I have is: how can I check in each returned collection if keys are present? Without a Match pattern, because my response is too long to put it in a text?
Thank you very much for your help! Really, the rest of the use of the Make tool for my job depends on it…