Skip to content

Commit

Permalink
LCSD-7153: Update GET to POST for /process_transaction.asp (#4206)
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-warren authored and gary-jipp committed Jul 24, 2024
1 parent 6c09162 commit 92d5f03
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.Get, query_url);
var request = new HttpRequestMessage(HttpMethod.Post, query_url);
var response = await client.SendAsync(request);
if (response.IsSuccessStatusCode)
{
Expand Down

0 comments on commit 92d5f03

Please sign in to comment.