/// <summary>
        /// This call adds new contact category
        /// </summary>
        /// <exception cref="ARXivarNEXT.Client.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="contactCategoryDTO"></param>
        /// <returns>Task of ApiResponse</returns>
        public async System.Threading.Tasks.Task <ApiResponse <Object> > ContactCategoryInsertCategoriesAsyncWithHttpInfo(ContactCategoryDTO contactCategoryDTO)
        {
            // verify the required parameter 'contactCategoryDTO' is set
            if (contactCategoryDTO == null)
            {
                throw new ApiException(400, "Missing required parameter 'contactCategoryDTO' when calling ContactCategoryApi->ContactCategoryInsertCategories");
            }

            var    localVarPath         = "./api/ContactCategory";
            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",
                "application/xml",
                "text/xml",
                "application/x-www-form-urlencoded"
            };
            String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

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

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

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

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

            // 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("ContactCategoryInsertCategories", localVarResponse);
                if (exception != null)
                {
                    throw exception;
                }
            }

            return(new ApiResponse <Object>(localVarStatusCode,
                                            localVarResponse.Headers.ToDictionary(x => x.Key, x => x.Value.ToString()),
                                            null));
        }
 /// <summary>
 /// This call adds new contact category
 /// </summary>
 /// <exception cref="ARXivarNEXT.Client.Client.ApiException">Thrown when fails to make API call</exception>
 /// <param name="contactCategoryDTO"></param>
 /// <returns></returns>
 public void ContactCategoryInsertCategories(ContactCategoryDTO contactCategoryDTO)
 {
     ContactCategoryInsertCategoriesWithHttpInfo(contactCategoryDTO);
 }
 /// <summary>
 /// This call adds new contact category
 /// </summary>
 /// <exception cref="ARXivarNEXT.Client.Client.ApiException">Thrown when fails to make API call</exception>
 /// <param name="contactCategoryDTO"></param>
 /// <returns>Task of void</returns>
 public async System.Threading.Tasks.Task ContactCategoryInsertCategoriesAsync(ContactCategoryDTO contactCategoryDTO)
 {
     await ContactCategoryInsertCategoriesAsyncWithHttpInfo(contactCategoryDTO);
 }
Exemplo n.º 4
0
 /// <summary>
 /// This call adds new contact category
 /// </summary>
 /// <exception cref="ACUtils.AXRepository.ArxivarNext.Client.ApiException">Thrown when fails to make API call</exception>
 /// <param name="body"></param>
 /// <returns></returns>
 public void ContactCategoryInsertCategories(ContactCategoryDTO body)
 {
     ContactCategoryInsertCategoriesWithHttpInfo(body);
 }