Пример #1
0
        /// <summary>
        /// Cancel Guarantee A Guarantee can be canceled for orders that no longer require a guarantee fraud protection. Example: Your customer cancels the order and you issue a refund, you run out of stock for the ordered item, or you cancel the order. This is equivalent to clicking the “cancel guarantee request” button in the case console. Before canceling a guarantee request you should check the Guarantee Disposition using GET a Case. In some instances the Guarantee may have a declined decision, in which case it does not need to be cancelled.
        /// </summary>
        /// <exception cref="AspDotNetStorefront.Signifyd.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="caseId">The id for the case whose guarantee is being cancelled.</param>
        /// <param name="body"></param>
        /// <returns>Task of GuaranteeRequest</returns>
        public async System.Threading.Tasks.Task <GuaranteeRequest> CancelGuaranteeAsync(int?caseId, CancelGuaranteeRequest body)
        {
            ApiResponse <GuaranteeRequest> localVarResponse = await CancelGuaranteeAsyncWithHttpInfo(caseId, body);

            return(localVarResponse.Data);
        }
Пример #2
0
        /// <summary>
        /// Cancel Guarantee A Guarantee can be canceled for orders that no longer require a guarantee fraud protection. Example: Your customer cancels the order and you issue a refund, you run out of stock for the ordered item, or you cancel the order. This is equivalent to clicking the “cancel guarantee request” button in the case console. Before canceling a guarantee request you should check the Guarantee Disposition using GET a Case. In some instances the Guarantee may have a declined decision, in which case it does not need to be cancelled.
        /// </summary>
        /// <exception cref="AspDotNetStorefront.Signifyd.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="caseId">The id for the case whose guarantee is being cancelled.</param>
        /// <param name="body"></param>
        /// <returns>Task of ApiResponse (GuaranteeRequest)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <GuaranteeRequest> > CancelGuaranteeAsyncWithHttpInfo(int?caseId, CancelGuaranteeRequest body)
        {
            // verify the required parameter 'caseId' is set
            if (caseId == null)
            {
                throw new ApiException(400, "Missing required parameter 'caseId' when calling GuaranteesApi->CancelGuarantee");
            }
            // verify the required parameter 'body' is set
            if (body == null)
            {
                throw new ApiException(400, "Missing required parameter 'body' when calling GuaranteesApi->CancelGuarantee");
            }

            var    localVarPath         = "/cases/{caseId}/guarantee";
            var    localVarPathParams   = new Dictionary <String, String>();
            var    localVarQueryParams  = new Dictionary <String, String>();
            var    localVarHeaderParams = new Dictionary <String, String>(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 = Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

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

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

            if (caseId != null)
            {
                localVarPathParams.Add("caseId", Configuration.ApiClient.ParameterToString(caseId));                            // path parameter
            }
            if (body != null && body.GetType() != typeof(byte[]))
            {
                localVarPostBody = Configuration.ApiClient.Serialize(body);                 // http body (model) parameter
            }
            else
            {
                localVarPostBody = body;                 // byte array
            }


            // make the HTTP request
            IRestResponse localVarResponse = (IRestResponse)await Configuration.ApiClient.CallApiAsync(localVarPath,
                                                                                                       Method.PUT, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
                                                                                                       localVarPathParams, localVarHttpContentType);

            int localVarStatusCode = (int)localVarResponse.StatusCode;

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

            return(new ApiResponse <GuaranteeRequest>(localVarStatusCode,
                                                      localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                      (GuaranteeRequest)Configuration.ApiClient.Deserialize(localVarResponse, typeof(GuaranteeRequest))));
        }
Пример #3
0
        /// <summary>
        /// Cancel Guarantee A Guarantee can be canceled for orders that no longer require a guarantee fraud protection. Example: Your customer cancels the order and you issue a refund, you run out of stock for the ordered item, or you cancel the order. This is equivalent to clicking the “cancel guarantee request” button in the case console. Before canceling a guarantee request you should check the Guarantee Disposition using GET a Case. In some instances the Guarantee may have a declined decision, in which case it does not need to be cancelled.
        /// </summary>
        /// <exception cref="AspDotNetStorefront.Signifyd.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="caseId">The id for the case whose guarantee is being cancelled.</param>
        /// <param name="body"></param>
        /// <returns>GuaranteeRequest</returns>
        public GuaranteeRequest CancelGuarantee(int?caseId, CancelGuaranteeRequest body)
        {
            ApiResponse <GuaranteeRequest> localVarResponse = CancelGuaranteeWithHttpInfo(caseId, body);

            return(localVarResponse.Data);
        }