Zoho Creator REST API

Zoho Creator REST API

I'm trying to extract some data from a Zoho Creator App using perl as follows:

#!/usr/bin/perl
use HTTP::Request::Common;
use LWP::UserAgent;
$ua = LWP::UserAgent->new;
my $req = GET 'https://creator.zoho.com/api/slowclay/xml/copy-of-slow-clay-registration/view/student_view', [ 
 authtoken=> 'bd73c9ac318d2fab9f8d89fce9509c29',
 scope=>'creatorapi',
 submit=>'View Records',
]; 
$content = $ua->request($req)->as_string; 

print "Content-type: text/html\n\n"; 
print $content;



But I just get the response ..

The requested URL /api/<user>/xml/<app>/view/<View> was not found on this server.


Any ideas?

Thanks 
Pete