Esempio n. 1
0
        /// <summary>
        /// Enrich an input lead with additional fields of data
        /// </summary>
        /// <exception cref="Cloudmersive.APIClient.NET.Validate.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="request">Input lead with known fields set, and unknown fields left blank (null)</param>
        /// <returns>Task of LeadEnrichmentResponse</returns>
        public async System.Threading.Tasks.Task <LeadEnrichmentResponse> LeadEnrichmentEnrichLeadAsync(LeadEnrichmentRequest request)
        {
            ApiResponse <LeadEnrichmentResponse> localVarResponse = await LeadEnrichmentEnrichLeadAsyncWithHttpInfo(request);

            return(localVarResponse.Data);
        }
Esempio n. 2
0
        /// <summary>
        /// Enrich an input lead with additional fields of data
        /// </summary>
        /// <exception cref="Cloudmersive.APIClient.NET.Validate.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="request">Input lead with known fields set, and unknown fields left blank (null)</param>
        /// <returns>Task of ApiResponse (LeadEnrichmentResponse)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <LeadEnrichmentResponse> > LeadEnrichmentEnrichLeadAsyncWithHttpInfo(LeadEnrichmentRequest request)
        {
            // verify the required parameter 'request' is set
            if (request == null)
            {
                throw new ApiException(400, "Missing required parameter 'request' when calling LeadEnrichmentApi->LeadEnrichmentEnrichLead");
            }

            var    localVarPath         = "/validate/lead-enrichment/lead/enrich";
            var    localVarPathParams   = new Dictionary <String, String>();
            var    localVarQueryParams  = new List <KeyValuePair <String, String> >();
            var    localVarHeaderParams = new Dictionary <String, String>(this.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",
                "text/json"
            };
            String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

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

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

            if (request != null && request.GetType() != typeof(byte[]))
            {
                localVarPostBody = this.Configuration.ApiClient.Serialize(request); // http body (model) parameter
            }
            else
            {
                localVarPostBody = request; // byte array
            }

            // authentication (Apikey) required
            if (!String.IsNullOrEmpty(this.Configuration.GetApiKeyWithPrefix("Apikey")))
            {
                localVarHeaderParams["Apikey"] = this.Configuration.GetApiKeyWithPrefix("Apikey");
            }

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

            int localVarStatusCode = (int)localVarResponse.StatusCode;

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

            return(new ApiResponse <LeadEnrichmentResponse>(localVarStatusCode,
                                                            localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                            (LeadEnrichmentResponse)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(LeadEnrichmentResponse))));
        }
Esempio n. 3
0
        /// <summary>
        /// Enrich an input lead with additional fields of data
        /// </summary>
        /// <exception cref="Cloudmersive.APIClient.NET.Validate.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="request">Input lead with known fields set, and unknown fields left blank (null)</param>
        /// <returns>LeadEnrichmentResponse</returns>
        public LeadEnrichmentResponse LeadEnrichmentEnrichLead(LeadEnrichmentRequest request)
        {
            ApiResponse <LeadEnrichmentResponse> localVarResponse = LeadEnrichmentEnrichLeadWithHttpInfo(request);

            return(localVarResponse.Data);
        }