This is the method ``` def parse_response(self,...
# singer-tap-development
m
This is the method
Copy code
def parse_response(self, response: requests.Response) -> Iterable[dict]:
        """Parse the response and return an iterator of result rows."""
        result = response.json()
        data_result = result.get('data_response', None)
        yield from data_result
        self.finalize_state_progress_markers(
            {"bookmarks": {self.name: {"replication_key_value": data_result[-1].get('issuedAt')}}}
        )