Skip to content

Commit

Permalink
Revert "LCSD-7153: Update GET to POST for /process_transaction.asp" (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
gary-jipp committed Jul 24, 2024
1 parent 92d5f03 commit aa1a1ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cllc-interfaces/BCEP/BCEPService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ public async Task<Dictionary<string, string>> ProcessPaymentResponse(string orde
try
{
// this is a status request to Bambora, and can be repeated multiple times
var request = new HttpRequestMessage(HttpMethod.Post, query_url);
var request = new HttpRequestMessage(HttpMethod.Get, query_url);
var response = await client.SendAsync(request);
if (response.IsSuccessStatusCode)
{
Expand Down

0 comments on commit aa1a1ce

Please sign in to comment.