What is the 360 API?
It provides access to the customer loyalty features of the Avomark 360 solution.
This API enables the exchange between the Avomark ecosystem and external solutions such as POS systems, kiosks, e-commerce platforms, ERP, CRM, payment terminals, and more.
As part of this offer, we provide you with a free developer access to all of our services.
How do I use our API?
You can use our API from one of your existing solutions, develop your own interface, or query it directly from Postman. It will give you access to our loyalty solutions.
After filling in our form, you will receive your login, password, and terminal number by email, allowing you to generate a token and access all routes of our API. You will then be able to assign cards to consumers, process transactions, and generate and use a loyalty balance.
You will find documentation covering all endpoints, as well as a user guide to get started.
var client = new RestClient("https://api360.avomark.fr/api/token");
client.Timeout = -1;
var request = new RestRequest(METHOD.POST);
request.AddParameter("username", "");
request.AddParameter("password", "");
request.AddParameter("terminal", "");
IRestResponse reponse = client.Execute(request);
Console.WriteLine(response.Content);
var client = new RestClient("https://api360.avomark.fr/api/v1/customer/{customerd}");
client.Timeout = -1;
var request = new RestRequest(METHOD.GET);
IRestResponse reponse = client.Execute(request);
Console.WriteLine(response.Content);
var client = new RestClient("https://api360.avomark.fr/api/v1/cards/{numberCard}");
client.Timeout = -1;
var request = new RestRequest(METHOD.GET);
IRestResponse reponse = client.Execute(request);
Console.WriteLine(response.Content);
Are you a developer? Fill in the form to get access to Avomark solutions
Are you a customer of a brand and have questions about its Loyalty Program?
Unfortunately, we are unable to help you — please do not fill in this form and contact your favourite store directly.