Handling the Response
After you make the request, the API sends back: - Status code — a number indicating success or failure (200 = success, 404 = not found, 401 = unauthorized, etc.) - Response body — usually JSON with the data you requested or confirmation of the action
The HTTP module captures both. You can see them in your execution logs. Then you map the response data into downstream steps.