RemoteServiceModule is undefined

Options

Hi,
I have this script

// @input Asset.RemoteServiceModule remoteServiceModule
var request = global.RemoteApiRequest.create();
request.endpoint = "start"
script.remoteServiceModule.performApiRequest(request, function(response){
if(response.statusCode !== 1){
print("Request Failed with code: " + String(response.statusCode))
return
}
})

but "script.remoteServiceModule" is undefined, what can I do to fix this error? I working on Lens Studio 4.55.1
Thanks