curl -X POST https://api.datakund.com:5000/run_bot -H "Content-Type: application/json" -d "{"bot":"profile_superbot_2","user":"user_id","outputdata":{"first_name": "first_name", "last_name": "last_name", "password": "password", "email": "email", "website_address": "website_address", "https_website_address": "https_website_address", "gmail_password": "gmail_password", "birth_year": "birth_year", "birth_day": "birth_day", "gmail_address": "gmail_address", "bio": "bio", "gender": "gender", "company_name": "company_name", "birth_month_number": "birth_month_number", "username": "username"}}"
Bot Studio
from bot_studio import *
dk=bot_studio.new()
res=dk.profile_superbot_2(first_name='first_name',last_name='last_name',password='password',email='email',website_address='website_address',https_website_address='https_website_address',gmail_password='gmail_password',birth_year='birth_year',birth_day='birth_day',gmail_address='gmail_address',bio='bio',gender='gender',company_name='company_name',birth_month_number='birth_month_number',username='username')
#res={"body":{data},"errors":{},"success_score":100}
DataKund
var datakund=require("datakund");
datakund.profile_superbot_2('first_name','last_name','password','email','website_address','https_website_address','gmail_password','birth_year','birth_day','gmail_address','bio','gender','company_name','birth_month_number','username',function(response){
console.log(response);
})