Exemple #1
0
        /// <summary>
        /// Get channel catalog products related to these channel catalogs
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="productId">The product identifier</param>
        /// <param name="request"> (optional)</param>
        /// <returns>Task of ChannelCatalogProductByChannelCatalogResponse</returns>
        public async System.Threading.Tasks.Task <ChannelCatalogProductByChannelCatalogResponse> GetChannelCatalogProductByChannelCatalogAsync(string productId, ChannelCatalogProductByChannelCatalogRequest request = null)
        {
            ApiResponse <ChannelCatalogProductByChannelCatalogResponse> localVarResponse = await GetChannelCatalogProductByChannelCatalogAsyncWithHttpInfo(productId, request);

            return(localVarResponse.Data);
        }
Exemple #2
0
        /// <summary>
        /// Get channel catalog products related to these channel catalogs
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="productId">The product identifier</param>
        /// <param name="request"> (optional)</param>
        /// <returns>Task of ApiResponse (ChannelCatalogProductByChannelCatalogResponse)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <ChannelCatalogProductByChannelCatalogResponse> > GetChannelCatalogProductByChannelCatalogAsyncWithHttpInfo(string productId, ChannelCatalogProductByChannelCatalogRequest request = null)
        {
            // verify the required parameter 'productId' is set
            if (productId == null)
            {
                throw new ApiException(400, "Missing required parameter 'productId' when calling ChannelCatalogsProductsApi->GetChannelCatalogProductByChannelCatalog");
            }

            var    localVarPath         = "/user/channelCatalogs/products/{productId}";
            var    localVarPathParams   = new Dictionary <String, String>();
            var    localVarQueryParams  = new Dictionary <String, String>();
            var    localVarHeaderParams = new Dictionary <String, String>(Configuration.DefaultHeader);
            var    localVarFormParams   = new Dictionary <String, String>();
            var    localVarFileParams   = new Dictionary <String, FileParameter>();
            Object localVarPostBody     = null;

            // to determine the Content-Type header
            String[] localVarHttpContentTypes = new String[] {
                "application/json"
            };
            String localVarHttpContentType = Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

            // to determine the Accept header
            String[] localVarHttpHeaderAccepts = new String[] {
                "application/json"
            };
            String localVarHttpHeaderAccept = Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts);

            if (localVarHttpHeaderAccept != null)
            {
                localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept);
            }

            // set "format" to json by default
            // e.g. /pet/{petId}.{format} becomes /pet/{petId}.json
            localVarPathParams.Add("format", "json");
            if (productId != null)
            {
                localVarPathParams.Add("productId", Configuration.ApiClient.ParameterToString(productId));                    // path parameter
            }
            if (request != null && request.GetType() != typeof(byte[]))
            {
                localVarPostBody = Configuration.ApiClient.Serialize(request); // http body (model) parameter
            }
            else
            {
                localVarPostBody = request; // byte array
            }

            // authentication (api_key) required
            if (!String.IsNullOrEmpty(Configuration.GetApiKeyWithPrefix("Ocp-Apim-Subscription-Key")))
            {
                localVarHeaderParams["Ocp-Apim-Subscription-Key"] = Configuration.GetApiKeyWithPrefix("Ocp-Apim-Subscription-Key");
            }

            // make the HTTP request
            IRestResponse localVarResponse = (IRestResponse)await Configuration.ApiClient.CallApiAsync(localVarPath,
                                                                                                       Method.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
                                                                                                       localVarPathParams, localVarHttpContentType);

            int localVarStatusCode = (int)localVarResponse.StatusCode;

            if (ExceptionFactory != null)
            {
                Exception exception = ExceptionFactory("GetChannelCatalogProductByChannelCatalog", localVarResponse);
                if (exception != null)
                {
                    throw exception;
                }
            }

            return(new ApiResponse <ChannelCatalogProductByChannelCatalogResponse>(localVarStatusCode,
                                                                                   localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                                                   (ChannelCatalogProductByChannelCatalogResponse)Configuration.ApiClient.Deserialize(localVarResponse, typeof(ChannelCatalogProductByChannelCatalogResponse))));
        }
Exemple #3
0
        /// <summary>
        /// Get channel catalog products related to these channel catalogs
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="productId">The product identifier</param>
        /// <param name="request"> (optional)</param>
        /// <returns>ChannelCatalogProductByChannelCatalogResponse</returns>
        public ChannelCatalogProductByChannelCatalogResponse GetChannelCatalogProductByChannelCatalog(string productId, ChannelCatalogProductByChannelCatalogRequest request = null)
        {
            ApiResponse <ChannelCatalogProductByChannelCatalogResponse> localVarResponse = GetChannelCatalogProductByChannelCatalogWithHttpInfo(productId, request);

            return(localVarResponse.Data);
        }