Пример #1
0
        /// <summary>
        /// Send post letter Send post letter
        /// </summary>
        /// <exception cref="IO.ClickSend.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="postLetter">PostLetter model</param>
        /// <returns>Task of string</returns>
        public async System.Threading.Tasks.Task <string> PostLettersSendPostAsync(PostLetter postLetter)
        {
            ApiResponse <string> localVarResponse = await PostLettersSendPostAsyncWithHttpInfo(postLetter);

            return(localVarResponse.Data);
        }
Пример #2
0
        /// <summary>
        /// Send post letter Send post letter
        /// </summary>
        /// <exception cref="IO.ClickSend.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="postLetter">PostLetter model</param>
        /// <returns>Task of ApiResponse (string)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <string> > PostLettersSendPostAsyncWithHttpInfo(PostLetter postLetter)
        {
            // verify the required parameter 'postLetter' is set
            if (postLetter == null)
            {
                throw new ApiException(400, "Missing required parameter 'postLetter' when calling PostLetterApi->PostLettersSendPost");
            }

            var    localVarPath         = "/post/letters/send";
            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 (postLetter != null && postLetter.GetType() != typeof(byte[]))
            {
                localVarPostBody = this.Configuration.ApiClient.Serialize(postLetter); // http body (model) parameter
            }
            else
            {
                localVarPostBody = postLetter; // 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("PostLettersSendPost", 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))));
        }
Пример #3
0
        /// <summary>
        /// Send post letter Send post letter
        /// </summary>
        /// <exception cref="IO.ClickSend.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="postLetter">PostLetter model</param>
        /// <returns>string</returns>
        public string PostLettersSendPost(PostLetter postLetter)
        {
            ApiResponse <string> localVarResponse = PostLettersSendPostWithHttpInfo(postLetter);

            return(localVarResponse.Data);
        }