/// <inheritdoc /> /// <summary> /// Create a payment token that should be used to forward the user to Xsolla so they can complete payment <b>Permissions Needed:</b> XSOLLA_ADMIN or owner /// </summary> /// <param name="request">The payment request to be sent to XSolla</param> public void CreateXsollaTokenUrl(XsollaPaymentRequest request) { mWebCallEvent.WebPath = "/payment/provider/xsolla/payment"; if (!string.IsNullOrEmpty(mWebCallEvent.WebPath)) { mWebCallEvent.WebPath = mWebCallEvent.WebPath.Replace("{format}", "json"); } mWebCallEvent.HeaderParams.Clear(); mWebCallEvent.QueryParams.Clear(); mWebCallEvent.AuthSettings.Clear(); mWebCallEvent.PostBody = null; mWebCallEvent.PostBody = KnetikClient.Serialize(request); // http body (model) parameter // authentication settings mWebCallEvent.AuthSettings.Add("oauth2_client_credentials_grant"); // authentication settings mWebCallEvent.AuthSettings.Add("oauth2_password_grant"); // make the HTTP request mCreateXsollaTokenUrlStartTime = DateTime.Now; mWebCallEvent.Context = mCreateXsollaTokenUrlResponseContext; mWebCallEvent.RequestType = KnetikRequestType.POST; KnetikLogger.LogRequest(mCreateXsollaTokenUrlStartTime, "CreateXsollaTokenUrl", "Sending server request..."); KnetikGlobalEventSystem.Publish(mWebCallEvent); }
/// <summary> /// Create a payment token that should be used to forward the user to Xsolla so they can complete payment <b>Permissions Needed:</b> XSOLLA_ADMIN or owner /// </summary> /// <exception cref="com.knetikcloud.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="request">The payment request to be sent to XSolla (optional)</param> /// <returns>ApiResponse of string</returns> public ApiResponse <string> CreateXsollaTokenUrlWithHttpInfo(XsollaPaymentRequest request = null) { var localVarPath = "/payment/provider/xsolla/payment"; var localVarPathParams = new Dictionary <String, String>(); var localVarQueryParams = new List <KeyValuePair <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 (request != null && request.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(request); // http body (model) parameter } else { localVarPostBody = request; // byte array } // authentication (oauth2_client_credentials_grant) required // oauth required if (!String.IsNullOrEmpty(Configuration.AccessToken)) { localVarHeaderParams["Authorization"] = "Bearer " + Configuration.AccessToken; } // authentication (oauth2_password_grant) required // oauth required if (!String.IsNullOrEmpty(Configuration.AccessToken)) { localVarHeaderParams["Authorization"] = "Bearer " + Configuration.AccessToken; } // make the HTTP request IRestResponse localVarResponse = (IRestResponse)Configuration.ApiClient.CallApi(localVarPath, Method.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams, localVarPathParams, localVarHttpContentType); int localVarStatusCode = (int)localVarResponse.StatusCode; if (ExceptionFactory != null) { Exception exception = ExceptionFactory("CreateXsollaTokenUrl", localVarResponse); if (exception != null) { throw exception; } } return(new ApiResponse <string>(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), (string)Configuration.ApiClient.Deserialize(localVarResponse, typeof(string)))); }
/// <summary> /// Create a payment token that should be used to forward the user to Xsolla so they can complete payment <b>Permissions Needed:</b> XSOLLA_ADMIN or owner /// </summary> /// <exception cref="com.knetikcloud.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="request">The payment request to be sent to XSolla (optional)</param> /// <returns>string</returns> public string CreateXsollaTokenUrl(XsollaPaymentRequest request = null) { ApiResponse <string> localVarResponse = CreateXsollaTokenUrlWithHttpInfo(request); return(localVarResponse.Data); }