Skip to main content

Class: PromoService

services/promo.PromoService

Promo service can be used in the following way:
1. Import the service from our library:

import {PromoService} from "@selfcommunity/api-services";
2. Create a function and put the service inside it!
The async function `create` will return the paginated list of categories.

async getSpecificPromoCode() {
return await PromoService.getSpecificPromo();
}
In case of required `params`, just add them inside the brackets.

async create(data) {
return await PromoService.getSpecificPromo(code);
}
If you need to customize the request, you can add optional config params (`AxiosRequestConfig` type).

1. Declare it(or declare them, it is possible to add multiple params)

const headers = headers: {Authorization: `Bearer ${yourToken}`}

2. Add it inside the brackets and pass it to the function, as shown in the previous example!

Constructors

constructor

new PromoService(): PromoService

Returns

PromoService

Methods

getSpecificPromo

getSpecificPromo(code, config?): Promise<SCPromoType>

Parameters

NameType
codestring
config?AxiosRequestConfig<any>

Returns

Promise<SCPromoType>

Defined in

services/promo/index.ts:59