EmbedService
1. Import the service from our library:
import {EmbedService} from "@selfcommunity/api-services";
2. Create a function and put the service inside it!
The async function `getAllEmbeds` will return the paginated list of embeds.
async getAllEmbeds() {
return await EmbedService.getAllEmbeds();
}
In case of required `params`, just add them inside the brackets.
async getSpecificEmbed(embedId) {
return await EmbedService.getSpecificEmbed(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 EmbedService()
new EmbedService():
EmbedService
Returns
Methods
createEmbed()
static
createEmbed(data
,config
?):Promise
<SCEmbedType
>
Parameters
Parameter | Type |
---|---|
data | SCEmbedType |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCEmbedType
>
Source
getAllEmbeds()
static
getAllEmbeds(params
?,config
?):Promise
<SCPaginatedResponse
<SCEmbedType
>>
Parameters
Parameter | Type |
---|---|
params ? | BaseGetParams |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCPaginatedResponse
<SCEmbedType
>>
Source
getEmbedFeed()
static
getEmbedFeed(embed_type
?,embed_id
?,config
?):Promise
<SCPaginatedResponse
<SCFeedUnitType
>>
Parameters
Parameter | Type |
---|---|
embed_type ? | string |
embed_id ? | string |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCPaginatedResponse
<SCFeedUnitType
>>
Source
getSpecificEmbed()
static
getSpecificEmbed(id
,config
?):Promise
<SCEmbedType
>
Parameters
Parameter | Type |
---|---|
id | string | number |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCEmbedType
>
Source
getSpecificEmbedFeed()
static
getSpecificEmbedFeed(id
,config
?):Promise
<SCPaginatedResponse
<SCFeedUnitType
>>
Parameters
Parameter | Type |
---|---|
id | string | number |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCPaginatedResponse
<SCFeedUnitType
>>
Source
patchASpecificEmbed()
static
patchASpecificEmbed(id
,data
?,config
?):Promise
<SCEmbedType
>
Parameters
Parameter | Type |
---|---|
id | string | number |
data ? | EmbedUpdateParams |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCEmbedType
>
Source
searchEmbed()
static
searchEmbed(params
?,config
?):Promise
<SCPaginatedResponse
<SCEmbedType
>>
Parameters
Parameter | Type |
---|---|
params ? | EmbedSearchParams |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCPaginatedResponse
<SCEmbedType
>>
Source
updateASpecificEmbed()
static
updateASpecificEmbed(id
,data
?,config
?):Promise
<SCEmbedType
>
Parameters
Parameter | Type |
---|---|
id | string | number |
data ? | EmbedUpdateParams |
config ? | AxiosRequestConfig <any > |
Returns
Promise
<SCEmbedType
>