/// <summary> /// Requests info about phone numbers /// </summary> /// <exception cref="com.Messente.Api.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="numbersToInvestigate">Numbers for lookup</param> /// <returns>Task of SyncNumberLookupSuccess</returns> public async System.Threading.Tasks.Task <SyncNumberLookupSuccess> FetchInfoAsync(NumbersToInvestigate numbersToInvestigate) { ApiResponse <SyncNumberLookupSuccess> localVarResponse = await FetchInfoAsyncWithHttpInfo(numbersToInvestigate); return(localVarResponse.Data); }
/// <summary> /// Requests info about phone numbers /// </summary> /// <exception cref="com.Messente.Api.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="numbersToInvestigate">Numbers for lookup</param> /// <returns>Task of ApiResponse (SyncNumberLookupSuccess)</returns> public async System.Threading.Tasks.Task <ApiResponse <SyncNumberLookupSuccess> > FetchInfoAsyncWithHttpInfo(NumbersToInvestigate numbersToInvestigate) { // verify the required parameter 'numbersToInvestigate' is set if (numbersToInvestigate == null) { throw new ApiException(400, "Missing required parameter 'numbersToInvestigate' when calling NumberLookupApi->FetchInfo"); } var localVarPath = "./hlr/sync"; 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" }; String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes); // to determine the Accept header String[] localVarHttpHeaderAccepts = new String[] { "application/json" }; String localVarHttpHeaderAccept = this.Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts); if (localVarHttpHeaderAccept != null) { localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept); } if (numbersToInvestigate != null && numbersToInvestigate.GetType() != typeof(byte[])) { localVarPostBody = this.Configuration.ApiClient.Serialize(numbersToInvestigate); // http body (model) parameter } else { localVarPostBody = numbersToInvestigate; // byte array } // authentication (basicAuth) required // http basic authentication required if (!String.IsNullOrEmpty(this.Configuration.Username) || !String.IsNullOrEmpty(this.Configuration.Password)) { localVarHeaderParams["Authorization"] = "Basic " + ApiClient.Base64Encode(this.Configuration.Username + ":" + this.Configuration.Password); } // 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("FetchInfo", localVarResponse); if (exception != null) { throw exception; } } return(new ApiResponse <SyncNumberLookupSuccess>(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Key, x => x.Value.ToString()), (SyncNumberLookupSuccess)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(SyncNumberLookupSuccess)))); }
/// <summary> /// Requests info about phone numbers /// </summary> /// <exception cref="com.Messente.Api.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="numbersToInvestigate">Numbers for lookup</param> /// <returns>SyncNumberLookupSuccess</returns> public SyncNumberLookupSuccess FetchInfo(NumbersToInvestigate numbersToInvestigate) { ApiResponse <SyncNumberLookupSuccess> localVarResponse = FetchInfoWithHttpInfo(numbersToInvestigate); return(localVarResponse.Data); }