Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 579 Bytes

File metadata and controls

27 lines (18 loc) · 579 Bytes

🚀 Fetching Data

Bloomreach Maui SDK has some methods to retrieve your data from the Bloomreach web application.

Get customer recommendation

Get items recommended for a customer.

💻 Usage

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

Consent Categories

Fetch the list of your existing consent categories.

💻 Usage

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