Status Text

Hi
TJSXMLHttpRequest

I found status code of the response but can't find status text that is supplied with the code.
Is there way to get it?
Best regards
Ilia

Try:

procedure TForm1.WebHttpRequest1RequestResponse(Sender: TObject;
  ARequest: TJSXMLHttpRequestRecord; AResponse: string);
begin
  console.log(ARequest.req.StatusText);
end;