Loading...

Community Marketing

Community marketing involves building and nurturing relationships with a brand's existing customers and fans, fostering a sense of loyalty and engagement through shared interests and values, rather than solely focusing on acquiring new customers.

Contact Us
Developer SDK'S

Cosume Api Key From The Code Below Given, To Get AIMS (AI Marketing Simulator's) Access Code

.Net


HttpClient client =
new HttpClient();
var responce = client
.GetStringAsync
("http://aimsaccesskey
.syragapps.com
/api/values/{Api Key}")
.Result;
var Sunrise =
JsonSerializer.Deserialize
(responce.
ToString()).Results.Sunrise;
return Sunrise;

Ajax


$(document).ready(function () {
$("#Getaccess").click(function ()
{
$.getJSON("http://aimsaccesskey.
syragapps.com
/api/values/{Api Key}")
,
function( data ) {
alert(data.accessid);
});
});
});

Python


import requests
URL = "http://aimsaccesskey.
syragapps.com/api/values"
AccessKey = "AccessKey"
PARAMS = {'id':AccessKey}
r = requests.get(url = URL,
params = PARAMS)
data = r.json()

Java


HttpRequest request =
HttpRequest.newBuilder()
.GET() .uri(URI.create("http://
aimsaccesskey.syragapps.
com/api/values/{ApiKey}"))
.build();
HttpResponse
response = HttpClient
.newHttpClient() .send(request, HttpResponse
.BodyHandlers.ofString()); System.out.println
(response.statusCode()); System.out.println
(response.body());

End Point's

Get Community Campaign
http://aimsaccesskey.syragapps.com/api/community
Share Url of Your Campaign
http://aimsaccesskey.syragapps.com/api/community/{url}
Earned Credit Points
http://aimsaccesskey.syragapps.com/api/communityearnedpoints/{Access Key}
Consumed Credit Points
http://aimsaccesskey.syragapps.com/api/communityusedpoints/{Access Key}
Top Credit Point Holders
http://aimsaccesskey.syragapps.com/api/communitytopholders/{Access Key}