/// <summary> /// Create new webhook Create a new webhook /// </summary> /// <exception cref="org.egoi.client.api.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="webhook">Parameters for the webhook</param> /// <returns>Task of ApiResponse (Webhook)</returns> public async System.Threading.Tasks.Task <ApiResponse <Webhook> > CreateWebhookAsyncWithHttpInfo(Webhook webhook) { // verify the required parameter 'webhook' is set if (webhook == null) { throw new ApiException(400, "Missing required parameter 'webhook' when calling WebHooksApi->CreateWebhook"); } var localVarPath = "/webhooks"; 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 (webhook != null && webhook.GetType() != typeof(byte[])) { localVarPostBody = this.Configuration.ApiClient.Serialize(webhook); // http body (model) parameter } else { localVarPostBody = webhook; // 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("CreateWebhook", localVarResponse); if (exception != null) { throw exception; } } return(new ApiResponse <Webhook>(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), (Webhook)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(Webhook)))); }