/// <summary> /// /// </summary> /// <exception cref="Voicify.Sdk.Cms.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="request"> (optional)</param> /// <returns>Task of ApiResponse (string)</returns> public async System.Threading.Tasks.Task <ApiResponse <string> > DeleteContentInBulkAsyncWithHttpInfo(BulkContentRequest request = null) { var localVarPath = "/api/BulkContent/Delete"; 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-patch+json", "application/json", "text/json", "application/_*+json" }; String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes); // to determine the Accept header String[] localVarHttpHeaderAccepts = new String[] { "text/plain", "application/json", "text/json" }; 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 (Bearer) 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.PUT, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams, localVarPathParams, localVarHttpContentType); int localVarStatusCode = (int)localVarResponse.StatusCode; if (ExceptionFactory != null) { Exception exception = ExceptionFactory("DeleteContentInBulk", localVarResponse); if (exception != null) { throw exception; } } return(new ApiResponse <string>(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), (string)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(string)))); }
/// <summary> /// /// </summary> /// <exception cref="Voicify.Sdk.Cms.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="request"> (optional)</param> /// <returns>Task of string</returns> public async System.Threading.Tasks.Task <string> DeleteContentInBulkAsync(BulkContentRequest request = null) { ApiResponse <string> localVarResponse = await DeleteContentInBulkAsyncWithHttpInfo(request); return(localVarResponse.Data); }
/// <summary> /// /// </summary> /// <exception cref="Voicify.Sdk.Cms.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="request"> (optional)</param> /// <returns>string</returns> public string DeleteContentInBulk(BulkContentRequest request = null) { ApiResponse <string> localVarResponse = DeleteContentInBulkWithHttpInfo(request); return(localVarResponse.Data); }
/// <summary> /// /// </summary> /// <exception cref="Voicify.Sdk.Cms.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="applicationFeatureId"></param> /// <param name="request"> (optional)</param> /// <returns>Task of string</returns> public async System.Threading.Tasks.Task <string> BulkMoveContentToApplicationFeatureAsync(string applicationFeatureId, BulkContentRequest request = null) { ApiResponse <string> localVarResponse = await BulkMoveContentToApplicationFeatureAsyncWithHttpInfo(applicationFeatureId, request); return(localVarResponse.Data); }
/// <summary> /// /// </summary> /// <exception cref="Voicify.Sdk.Cms.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="applicationFeatureId"></param> /// <param name="request"> (optional)</param> /// <returns>ApiResponse of string</returns> public ApiResponse <string> BulkMoveContentToApplicationFeatureWithHttpInfo(string applicationFeatureId, BulkContentRequest request = null) { // verify the required parameter 'applicationFeatureId' is set if (applicationFeatureId == null) { throw new ApiException(400, "Missing required parameter 'applicationFeatureId' when calling BulkContentApi->BulkMoveContentToApplicationFeature"); } var localVarPath = "/api/BulkContent/MoveToFeature/{applicationFeatureId}"; 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-patch+json", "application/json", "text/json", "application/_*+json" }; String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes); // to determine the Accept header String[] localVarHttpHeaderAccepts = new String[] { "text/plain", "application/json", "text/json" }; String localVarHttpHeaderAccept = this.Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts); if (localVarHttpHeaderAccept != null) { localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept); } if (applicationFeatureId != null) { localVarPathParams.Add("applicationFeatureId", this.Configuration.ApiClient.ParameterToString(applicationFeatureId)); // path parameter } if (request != null && request.GetType() != typeof(byte[])) { localVarPostBody = this.Configuration.ApiClient.Serialize(request); // http body (model) parameter } else { localVarPostBody = request; // byte array } // authentication (Bearer) required if (!String.IsNullOrEmpty(this.Configuration.GetApiKeyWithPrefix("Authorization"))) { localVarHeaderParams["Authorization"] = this.Configuration.GetApiKeyWithPrefix("Authorization"); } // make the HTTP request IRestResponse localVarResponse = (IRestResponse)this.Configuration.ApiClient.CallApi(localVarPath, Method.PUT, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams, localVarPathParams, localVarHttpContentType); int localVarStatusCode = (int)localVarResponse.StatusCode; if (ExceptionFactory != null) { Exception exception = ExceptionFactory("BulkMoveContentToApplicationFeature", localVarResponse); if (exception != null) { throw exception; } } return(new ApiResponse <string>(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), (string)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(string)))); }
/// <summary> /// /// </summary> /// <exception cref="Voicify.Sdk.Cms.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="applicationFeatureId"></param> /// <param name="request"> (optional)</param> /// <returns>string</returns> public string BulkMoveContentToApplicationFeature(string applicationFeatureId, BulkContentRequest request = null) { ApiResponse <string> localVarResponse = BulkMoveContentToApplicationFeatureWithHttpInfo(applicationFeatureId, request); return(localVarResponse.Data); }