Skip to main content

InsightService

Insight service can be used in the following way:
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

InsightService

Methods

getBestContributionInsight()

static getBestContributionInsight(params?, config?): Promise <SCPaginatedResponse<SCContributionInsightType>>

Parameters

ParameterType
params?InsightContributionParams
config?AxiosRequestConfig<any>

Returns

Promise <SCPaginatedResponse<SCContributionInsightType>>

Source

services/insight/index.ts:133


getBestEmbedInsight()

static getBestEmbedInsight(params?, config?): Promise <SCPaginatedResponse<SCEmbedInsightType>>

Parameters

ParameterType
params?InsightEmbedParams
config?AxiosRequestConfig<any>

Returns

Promise <SCPaginatedResponse<SCEmbedInsightType>>

Source

services/insight/index.ts:140


getBestUsersInsight()

static getBestUsersInsight(params?, config?): Promise <SCPaginatedResponse<SCUsersInsightType>>

Parameters

ParameterType
params?InsightUserParams
config?AxiosRequestConfig<any>

Returns

Promise <SCPaginatedResponse<SCUsersInsightType>>

Source

services/insight/index.ts:144


getContributionsInsightCounters()

static getContributionsInsightCounters(id, config?): Promise<SCContributionInsightCountersType>

Parameters

ParameterType
idstring | number
config?AxiosRequestConfig<any>

Returns

Promise<SCContributionInsightCountersType>

Source

services/insight/index.ts:148


getEmbedsInsightCounters()

static getEmbedsInsightCounters(type, id, config?): Promise<SCEmbedInsightCountersType>

Parameters

ParameterType
typestring
idstring | number
config?AxiosRequestConfig<any>

Returns

Promise<SCEmbedInsightCountersType>

Source

services/insight/index.ts:152


getUsersInsightCounters()

static getUsersInsightCounters(id, config?): Promise<SCUsersInsightCountersType>

Parameters

ParameterType
idstring | number
config?AxiosRequestConfig<any>

Returns

Promise<SCUsersInsightCountersType>

Source

services/insight/index.ts:156