/// <summary> /// Card Limit Check Evaluate card transaction history against spending controls /// </summary> /// <exception cref="Proton.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="cardLimitCheckRequest">Request payload for Card Limit Check</param> /// <returns>Task of Dictionary<string, Object></returns> public async System.Threading.Tasks.Task <Dictionary <string, Object> > CardLimitCheckAsync(CardLimitCheckRequest cardLimitCheckRequest) { ApiResponse <Dictionary <string, Object> > localVarResponse = await CardLimitCheckAsyncWithHttpInfo(cardLimitCheckRequest); return(localVarResponse.Data); }
/// <summary> /// Card Limit Check Evaluate card transaction history against spending controls /// </summary> /// <exception cref="Proton.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="cardLimitCheckRequest">Request payload for Card Limit Check</param> /// <returns>Task of ApiResponse (Dictionary<string, Object>)</returns> public async System.Threading.Tasks.Task <ApiResponse <Dictionary <string, Object> > > CardLimitCheckAsyncWithHttpInfo(CardLimitCheckRequest cardLimitCheckRequest) { // verify the required parameter 'cardLimitCheckRequest' is set if (cardLimitCheckRequest == null) { throw new ApiException(400, "Missing required parameter 'cardLimitCheckRequest' when calling CardsApi->CardLimitCheck"); } var localVarPath = "/card_limit_check"; 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); localVarHeaderParams.Add("Content-Type", localVarHttpHeaderAccept); } if (cardLimitCheckRequest != null && cardLimitCheckRequest.GetType() != typeof(byte[])) { localVarPostBody = this.Configuration.ApiClient.Serialize(cardLimitCheckRequest); // http body (model) parameter } else { localVarPostBody = cardLimitCheckRequest; // byte array } // authentication (oauth2) required // oauth required if (!String.IsNullOrEmpty(this.Configuration.AccessToken)) { localVarHeaderParams["Authorization"] = "Bearer " + this.Configuration.AccessToken; } // 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("CardLimitCheck", localVarResponse); if (exception != null) { throw exception; } } return(new ApiResponse <Dictionary <string, Object> >(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), (Dictionary <string, Object>) this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(Dictionary <string, Object>)))); }
/// <summary> /// Card Limit Check Evaluate card transaction history against spending controls /// </summary> /// <exception cref="Proton.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="cardLimitCheckRequest">Request payload for Card Limit Check</param> /// <returns>Dictionary<string, Object></returns> public Dictionary <string, Object> CardLimitCheck(CardLimitCheckRequest cardLimitCheckRequest) { ApiResponse <Dictionary <string, Object> > localVarResponse = CardLimitCheckWithHttpInfo(cardLimitCheckRequest); return(localVarResponse.Data); }