GroupBy Retail API
This C# SDK is automatically generated by the OpenAPI Generator project:
- API version: 0.0.0
- SDK version: 1.0.0
- Build package: org.openapitools.codegen.languages.CSharpClientCodegen
- RestSharp - 106.13.0 or later
- Json.NET - 13.0.2 or later
- JsonSubTypes - 1.8.0 or later
- System.ComponentModel.Annotations - 5.0.0 or later
The DLLs included in the package may not be the latest version. We recommend using NuGet to obtain the latest version of the packages:
Install-Package RestSharp
Install-Package Newtonsoft.Json
Install-Package JsonSubTypes
Install-Package System.ComponentModel.Annotations
NOTE: RestSharp versions greater than 105.1.0 have a bug which causes file uploads to fail. See RestSharp#742. NOTE: RestSharp for .Net Core creates a new socket for each api call, which can lead to a socket exhaustion problem. See RestSharp#1406.
Run the following command to generate the DLL
- [Mac/Linux]
/bin/sh build.sh - [Windows]
build.bat
Then include the DLL (under the bin folder) in the C# project, and use the namespaces:
using GroupByInc.RetailApi.Client.Api;
using GroupByInc.RetailApi.Client.Client;
using GroupByInc.RetailApi.Client.Model;A .nuspec is included with the project. You can follow the Nuget quickstart to create and publish packages.
This .nuspec uses placeholders from the .csproj, so build the .csproj directly:
nuget pack -Build -OutputDirectory out GroupByInc.RetailApi.Client.csproj
Then, publish to a local feed or other host and consume the new package via Nuget as usual.
To use the API client with a HTTP proxy, setup a System.Net.WebProxy
Configuration c = new Configuration();
System.Net.WebProxy webProxy = new System.Net.WebProxy("http://myProxyUrl:80/");
webProxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
c.Proxy = webProxy;using System.Collections.Generic;
using System.Diagnostics;
using GroupByInc.RetailApi.Client.Api;
using GroupByInc.RetailApi.Client.Client;
using GroupByInc.RetailApi.Client.Model;
namespace Example
{
public class Example
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "http://localhost";
// Configure HTTP basic authorization: GroupByIncEmployee
config.Username = "YOUR_USERNAME";
config.Password = "YOUR_PASSWORD";
// Configure API key authorization: ClientKey
config.ApiKey.Add("Authorization", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// config.ApiKeyPrefix.Add("Authorization", "Bearer");
var apiInstance = new AutocompleteApi(config);
var xGroupbyCustomerId = "xGroupbyCustomerId_example"; // string | Header on incoming HTTP requests that is populated by the API gateway and indicates the customer ID.
var identity = new Identity(); // Identity |
var merchandiser = new Merchandiser(); // Merchandiser |
var request = new Request?(); // Request? | Object which is represent autocomplete request and encapsulate all passed parameters. (optional)
try
{
SearchResults result = apiInstance.Autocompletesearch(xGroupbyCustomerId, identity, merchandiser, request);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling AutocompleteApi.Autocompletesearch: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}All URIs are relative to http://localhost
| Class | Method | HTTP request | Description |
|---|---|---|---|
| AutocompleteApi | Autocompletesearch | GET /api/request | |
| ProductApi | GetByProductIds | GET /api/search/product | Provided product search functionality |
| RecommendationsAPIApi | Predict | POST /api/predict | Provide Recommendations AI functionality. |
| RecommendationsAPIApi | PredictV2 | POST /api/recommendation | Provide Recommendations AI functionality. |
| SearchApi | FacetSearch | POST /api/search/facet | Provided search functionality |
| SearchApi | Search | POST /api/search | Provided search functionality |
- Model.AdditionalInfo
- Model.AttributeSuggestion
- Model.Audience
- Model.BiasDto
- Model.BiasDtoStrengthDto
- Model.BiasingProfileDto
- Model.BoostedProductBucket
- Model.ColorInfo
- Model.CustomParameterDto
- Model.CustomParameterTrigger
- Model.DebugDto
- Model.ErrorDto
- Model.ErrorResponse
- Model.Experiment
- Model.ExperimentVariant
- Model.Facet
- Model.FacetSearchRequestDto
- Model.FacetSearchResponseDto
- Model.FieldMask
- Model.Filter
- Model.FilterParameter
- Model.FulfillmentInfo
- Model.Identity
- Model.Image
- Model.Interval
- Model.Merchandiser
- Model.MessageType
- Model.Metadata
- Model.NavigationDto
- Model.NavigationType
- Model.NavigationTypeDto
- Model.Order
- Model.Overwrites
- Model.PageInfoDto
- Model.PinnedRefinement
- Model.PredictResults
- Model.PriceInfo
- Model.PriceInfoPriceEffectiveTime
- Model.PriceInfoPriceExpireTime
- Model.PriceInfoPriceRange
- Model.PriceInfoPriceRangeOriginalPrice
- Model.PriceInfoPriceRangePrice
- Model.ProductCustomAttribute
- Model.ProductDto
- Model.ProductDtoAudience
- Model.ProductDtoAvailableTime
- Model.ProductDtoColorInfo
- Model.ProductDtoPriceInfo
- Model.ProductDtoPublishTime
- Model.ProductDtoRating
- Model.ProductDtoRetrievableFields
- Model.Promotion
- Model.QueryPatternTrigger
- Model.QueryPatternTriggerType
- Model.Range
- Model.RangeFilter
- Model.Rating
- Model.RecommendationsErrorResponse
- Model.RecommendationsRequest
- Model.RecordDto
- Model.Refinement
- Model.RefinementDto
- Model.Request
- Model.Role
- Model.RuleConfiguration
- Model.RuleTemplate
- Model.RuleTemplateSection
- Model.RuleType
- Model.RuleVariant
- Model.SearchFilter
- Model.SearchMetadataDto
- Model.SearchRequestDto
- Model.SearchRequestDtoOverwrites
- Model.SearchResponseDto
- Model.SearchResults
- Model.SearchResultsStats
- Model.SearchTerms
- Model.SelectedRefinementDto
- Model.SelectedRefinementTrigger
- Model.SelectedRefinementTriggerType
- Model.Sort
- Model.SortDto
- Model.SortDtoOrderDto
- Model.SpellCorrectionMode
- Model.Stats
- Model.TemplateDto
- Model.TemplateDtoTriggerSet
- Model.Timestamp
- Model.TriggerSet
- Model.ValueFilter
- Model.ValueFilterValueFilterType
- Model.ZoneDto
- Model.ZoneDtoType
- Model.ZoneType
Authentication schemes defined for the API:
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header
- Type: HTTP basic authentication