Retrieves a list of profile features based on the provided parameters.
Optional
parameters: FeaturesParametersOptional query parameters for the request.
A Promise that resolves to the retrieved list of profile features.
if the HTTP request fails.
featuresService.get({ limit: 10, offset: 1 })
.then((response) => {
console.log(response);
})
.catch((error) => {
console.error('Error retrieving profile features.');
});
Static
getRetrieves the singleton instance of the FeaturesService class.
The singleton instance of the FeaturesService class.
// Usage:
const featuresService = FeaturesService.getInstance();
Service class for managing customer features related operations.