Working with ZOHO rest API for adding records using Postman

Working with ZOHO rest API for adding records using Postman

Hello,
Im using android studio to create an app for one of my tasks in zoho, for this mean I have to use ZOHO APIs to insert and edit records.

Beforehand, im trying to configure and see how the api would respond and for this mean im using Postman as; 
POST
URL: https://creator.zoho.com/api/<ownername>/json/<application_name>/Report/FormReport/record/add
and parameters as;
scope -> creatorapi

and here is the response i Received:
<!-- $Id$ -->

< script type = "text/javascript" >
    function getCookie(keyName)
{
if (document.cookie.length>0)
{
cookieBegin=document.cookie.indexOf(keyName + "="); //No I18N
if (cookieBegin!=-1)
{
cookieBegin=cookieBegin + keyName.length+1;
cookieEnd=document.cookie.indexOf(";",cookieBegin); //No I18N
if (cookieEnd==-1) cookieEnd=document.cookie.length;
{
return unescape(document.cookie.substring(cookieBegin,cookieEnd));
}
}
}
return ""; //No I18N
}
</ script >
< script type = "text/javascript" >
    var c = getCookie('ZCNEWLIVEUI');if(c == '' && true && location.host === 'creator.zohopublic.com' && true)
{location.href = location.href.replace(location.host, "creatorl.zohopublic.com");}if(c != null && c != undefined && c == 'true')
{location.href = location.href.replace(location.host, "app.zohocreator.com");}
</ script >
< div style = "text-align: center;vertical-align: middle;font-size: 14px;margin-top:150px;" > There is no such view in < a
         href = '/' >< strong > Zoho Creator </ strong ></ a ></ div >
I dont know if anything is missing or wrongly entered or do I have to add an Auth method and if yes how should I do it.

Thanks in advance for your guidances.