Esempio n. 1
0
        /// <summary>
        /// Update a specific sms campaign Update sms campaign
        /// </summary>
        /// <exception cref="org.egoi.client.api.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="campaignHash">ID of the Campaign</param>
        /// <param name="smsCampaignPatchRequest">Parameters for the Sms Campaign</param>
        /// <param name="cancellationToken">Cancellation Token to cancel request (optional) </param>
        /// <returns>Task of ApiResponse (HashcodeCampaign)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <HashcodeCampaign> > PatchSmsCampaignWithHttpInfoAsync(string campaignHash, SmsCampaignPatchRequest smsCampaignPatchRequest, CancellationToken cancellationToken = default(CancellationToken))
        {
            // verify the required parameter 'campaignHash' is set
            if (campaignHash == null)
            {
                throw new ApiException(400, "Missing required parameter 'campaignHash' when calling SmsApi->PatchSmsCampaign");
            }
            // verify the required parameter 'smsCampaignPatchRequest' is set
            if (smsCampaignPatchRequest == null)
            {
                throw new ApiException(400, "Missing required parameter 'smsCampaignPatchRequest' when calling SmsApi->PatchSmsCampaign");
            }

            var    localVarPath         = "/campaigns/sms/{campaign_hash}";
            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 (campaignHash != null)
            {
                localVarPathParams.Add("campaign_hash", this.Configuration.ApiClient.ParameterToString(campaignHash));                       // path parameter
            }
            if (smsCampaignPatchRequest != null && smsCampaignPatchRequest.GetType() != typeof(byte[]))
            {
                localVarPostBody = this.Configuration.ApiClient.Serialize(smsCampaignPatchRequest); // http body (model) parameter
            }
            else
            {
                localVarPostBody = smsCampaignPatchRequest; // 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.PATCH, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
                                                                                                            localVarPathParams, localVarHttpContentType, cancellationToken);

            int localVarStatusCode = (int)localVarResponse.StatusCode;

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

            return(new ApiResponse <HashcodeCampaign>(localVarStatusCode,
                                                      localVarResponse.Headers.ToDictionary(x => x.Name, x => string.Join(",", x.Value)),
                                                      (HashcodeCampaign)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(HashcodeCampaign))));
        }
Esempio n. 2
0
        /// <summary>
        /// Update a specific sms campaign Update sms campaign
        /// </summary>
        /// <exception cref="org.egoi.client.api.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="campaignHash">ID of the Campaign</param>
        /// <param name="smsCampaignPatchRequest">Parameters for the Sms Campaign</param>
        /// <returns>HashcodeCampaign</returns>
        public HashcodeCampaign PatchSmsCampaign(string campaignHash, SmsCampaignPatchRequest smsCampaignPatchRequest)
        {
            ApiResponse <HashcodeCampaign> localVarResponse = PatchSmsCampaignWithHttpInfo(campaignHash, smsCampaignPatchRequest);

            return(localVarResponse.Data);
        }
Esempio n. 3
0
        /// <summary>
        /// Update a specific sms campaign Update sms campaign
        /// </summary>
        /// <exception cref="org.egoi.client.api.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="campaignHash">ID of the Campaign</param>
        /// <param name="smsCampaignPatchRequest">Parameters for the Sms Campaign</param>
        /// <param name="cancellationToken">Cancellation Token to cancel request (optional) </param>
        /// <returns>Task of HashcodeCampaign</returns>
        public async System.Threading.Tasks.Task <HashcodeCampaign> PatchSmsCampaignAsync(string campaignHash, SmsCampaignPatchRequest smsCampaignPatchRequest, CancellationToken cancellationToken = default(CancellationToken))
        {
            ApiResponse <HashcodeCampaign> localVarResponse = await PatchSmsCampaignWithHttpInfoAsync(campaignHash, smsCampaignPatchRequest, cancellationToken);

            return(localVarResponse.Data);
        }
Esempio n. 4
0
        /// <summary>
        /// Update a specific sms campaign Update sms campaign
        /// </summary>
        /// <exception cref="org.egoi.client.api.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="campaignHash">ID of the Campaign</param>
        /// <param name="smsCampaignPatchRequest">Parameters for the Sms Campaign</param>
        /// <returns>Task of HashcodeCampaign</returns>
        public async System.Threading.Tasks.Task <HashcodeCampaign> PatchSmsCampaignAsync(string campaignHash, SmsCampaignPatchRequest smsCampaignPatchRequest)
        {
            ApiResponse <HashcodeCampaign> localVarResponse = await PatchSmsCampaignAsyncWithHttpInfo(campaignHash, smsCampaignPatchRequest);

            return(localVarResponse.Data);
        }