$httpRequestStatus
Returns the HTTP status code of the most recent request made using the $httpRequest
function.
Description
This function allows you to check the outcome of your HTTP request, helping you handle success and error scenarios.
Usage
$httpRequestStatus
Example
This example demonstrates how to use $httpRequest
and $httpRequestStatus
to make an API request and check its success.
Explanation:
$let[response;$httpRequest[My API URL]]
: This line makes an HTTP request to the specified "My API URL" using$httpRequest
and stores the response (if any) into theresponse
variable.Request status is $httpRequestStatus
: This retrieves the HTTP status code of the previous$httpRequest
call using$httpRequestStatus
and displays it. In this example, the status code is200
, which typically indicates a successful request.
Important Note
It's highly recommended to check the $httpRequestStatus
immediately after using $httpRequest
. This allows you to verify if the request was successful before proceeding with further actions based on the response. For example, you can use this to conditionally execute code based on whether the API call returned a 200 OK or an error code like 404 or 500.