InsightService
1. Import the service from our library:
import {InsightService} from "@selfcommunity/api-services";
2. Create a function and put the service inside it!
The async function `getBestContributionInsight` will return the paginated list of contribution insights.
async getBestContributionInsight() {
return await InsightService.getBestContributionInsight();
}
In case of required `params`, just add them inside the brackets.
async getEmbedsInsightCounters(embedType, embedId) {
return await InsightService.getEmbedsInsightCounters(embedType, embedId);
}
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
new InsightService()
new InsightService():
InsightService
Returns
Methods
getBestContributionInsight()
static
getBestContributionInsight(params
?,config
?):Promise
<SCPaginatedResponse
<SCContributionInsightType
>>
Parameters
Parameter | Type |
---|---|
params ? | InsightContributionParams |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCPaginatedResponse
<SCContributionInsightType
>>
Source
getBestEmbedInsight()
static
getBestEmbedInsight(params
?,config
?):Promise
<SCPaginatedResponse
<SCEmbedInsightType
>>
Parameters
Parameter | Type |
---|---|
params ? | InsightEmbedParams |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCPaginatedResponse
<SCEmbedInsightType
>>
Source
getBestUsersInsight()
static
getBestUsersInsight(params
?,config
?):Promise
<SCPaginatedResponse
<SCUsersInsightType
>>
Parameters
Parameter | Type |
---|---|
params ? | InsightUserParams |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCPaginatedResponse
<SCUsersInsightType
>>
Source
getContributionsInsightCounters()
static
getContributionsInsightCounters(id
,config
?):Promise
<SCContributionInsightCountersType
>
Parameters
Parameter | Type |
---|---|
id | string | number |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCContributionInsightCountersType
>
Source
getEmbedsInsightCounters()
static
getEmbedsInsightCounters(type
,id
,config
?):Promise
<SCEmbedInsightCountersType
>
Parameters
Parameter | Type |
---|---|
type | string |
id | string | number |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCEmbedInsightCountersType
>
Source
getUsersInsightCounters()
static
getUsersInsightCounters(id
,config
?):Promise
<SCUsersInsightCountersType
>
Parameters
Parameter | Type |
---|---|
id | string | number |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCUsersInsightCountersType
>