When using the Bubble bulk update feature using the API connector the body result is like below
{"status":"success","id":"1733913905142x811143959183261800"}
{"status":"success","id":"1733913905151x339436221332704900"}
This doesn’t make it easy to work with as it is not valid JSON and really all we want is the IDs so we can find the relevant entries.
To extract the IDs we can use this regex pattern
(?<="id":")[^"]+
The above pattern will provide a list of texts that are the IDs of the data entries.
You can use it to find the entries via a search … use a constraint unique ID is in and then the result of the API call (I recommend using the result of previous step) followed by the extract with regex and using the pattern above.