1.1.14 • Published 6 years ago

@plasma-platform/tm-service-loyalty v1.1.14

Weekly downloads
-
License
CC-BY-4.0
Repository
gitlab
Last release
6 years ago

Documentation

Table of Contents

LoyaltyProgramService

Loyalty Program Micro Service API SDK

Parameters

  • url string service url
  • token (string | null) user access token if available (optional, default null)

getLevels

Get Loyalty Levels

Examples

To use
(async () => {
  const LoyaltyProgramService = new LoyaltyProgramService(url, token);
  const list = await LoyaltyProgramService.getLevels();
})();

Returns Array array of loyalty levels

getLevelsById

Get Loyalty Level by id

Parameters

Examples

To use
(async () => {
  const LoyaltyProgramService = new LoyaltyProgramService(url, token);
  const list = await LoyaltyProgramService.getLevelsById(id);
})();

Returns object object of loyalty level

getUserProfile

Get Loyalty Levels

Examples

To use
(async () => {
  const LoyaltyProgramService = new LoyaltyProgramService(url, token);
  const list = await LoyaltyProgramService.getUserProfile();
})();

Returns Object object of user profile