GetProductRecommendations

Gets product recommendations

This method gets all product recommendations.

SOAP action: http://apiconnector.com/v2/products/recommendations

📘

Input and output parameters

The input and output parameters for this method are:

Output parameters

  • GetProductRecommendationsResult
    • Id - optional; integer
    • DateLastRefreshed - optional; DateTime
    • DateModified - optional; DateTime
    • DateLastUsed - optional; DateTime
    • Name - optional; string
    • Type - optional; string
    • Status - optional; string ('NotAvailableInThisVersion', 'Ready', 'InProgress', 'Failed',
      'Queued')
    • FallbackRecommendationId - optional; integer
    • Revenue - optional; decimal

Example

using(var client = new ApiServiceClient())
{
 client.ClientCredentials.UserName.UserName = "username";
 client.ClientCredentials.UserName.Password = "password";

 var recommendations = await client.GetProductRecommendations();
}