Skip to main content

SWebResponse

Index

Properties Index

Property Name
string Error
string Response

Properties

Error

string Error get

Any error, will be empty or null if the request was successful

function ResponseFunction(responseData)
stringError = responseData.Error
end
Space.WebServices.Get('aURL', ResponseFunction)

Response

string Response get

The body text of the webpage response if error is empty or null

function ResponseFunction(responseData)
stringResponse = responseData.Response
end
Space.WebServices.Get('aURL', ResponseFunction)