Fetch data

Fetch data from Bloomreach Engagement using the MAUI SDK

Fetch recommendations

Use the FetchRecommendation method to get personalized recommendations for the current customer from an Engagement recommendation model.

The method returns a list of CustomerRecommendation objects containing the recommendation engine data and recommended item IDs.

Arguments

NameTypeDescription
optionsCustomerRecommendationOptionsRecommendation options (see below for details )

CustomerRecommendationOptions

NameTypeDescription
Id (required)stringID of your recommendation model.
FillWithRandombool?If true, fills the recommendations with random items until size is reached. This is utilized when models cannot recommend enough items.
SizeintSpecifies the upper limit for the number of recommendations to return. Defaults to 10.
ItemsDictionary<string, string>?If present, the recommendations are related not only to a customer, but to products with IDs specified in this array. Item IDs from the catalog used to train the recommendation model must be used. Input product IDs in a dictionary as [product_id: weight], where the value weight determines the preference strength for the given product (bigger number = higher preference).

Example:
["product_id_1": "1", "product_id_2": "2",]
NoTrackbool?Default value: false
CatalogAttributesWhitelistList?Returns only the specified attributes from catalog items. If empty or not set, returns all attributes.

Example:
["item_id", "title", "link", "image_link"]

Example

var recommendations = await Bloomreach.BloomreachSDK.FetchRecommendation(
    new CustomerRecommendationOptions(
        id: recommendationId.Text,
        fillWithRandom: true)
);

Result object

CustomerRecommendation

NameTypeDescription
EngineNamestringName of the recommendation engine used.
ItemIdstringID of the recommended item.
RecommendationIdstringID of the recommendation engine (model) used.
RecommendationVariantIdstring?ID of the recommendation engine variant used.
DataDictionary<string, object>The recommendation engine data and recommended item IDs returned from the server.

Fetch consent categories

Use the FetchConsents method to get a list of your consent categories and their definitions.

Use when you want to get a list of your existing consent categories and their properties, such as sources and translations. This is useful when rendering a consent form.

The method returns a list of Consent objects.

Example

var consents = await Bloomreach.BloomreachSDK.FetchConsents();

Result object

Consent

NameTypeDescription
IdstringName of the consent category.
LegitimateInterestboolIf the user has legitimate interest.
SourcesConsentSourcesThe sources of this consent.
TranslationsDictionary<string, Dictionary<string, string>>Contains the translations for the consent.

Keys of this dictionary are the short ISO language codes (eg. "en", "cz", "sk"...) and the values are dictionaries containing the translation key as the dictionary key and translation value as the dictionary value.

ConsentSources

NameTypeDescription
CreatedFromCRMboolManually created from the web application.
ImportedboolImported from the importing wizard.
FromConsentPageboolTracked from the consent page.
PrivateApiboolAPI which uses basic authentication.
PublicApiboolAPI which only uses public token for authentication.
TrackedFromScenarioboolTracked from the scenario from event node.