Skip to content
This repository has been archived by the owner on Jun 2, 2020. It is now read-only.

Commit

Permalink
Merge pull request #59 from klarna/om_fix_release_remaining_auth_endp…
Browse files Browse the repository at this point in the history
…oint

Fix #56: Order management: Fix typo in the release remaining authorization endpoint.
  • Loading branch information
Alexander Zinovyev committed Aug 8, 2019
2 parents 76c5388 + 49a5ce2 commit 4f9e85f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Klarna.Rest/Klarna.Rest.Core/Store/OrderManagementStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class OrderManagementStore : BaseStore
/// <returns></returns>
public Task ReleaseRemainingAuthorization(string orderId)
{
var url = ApiUrlHelper.GetApiUrlForController(ApiSession.ApiUrl, ApiControllerUri, $"{orderId}/release-remaining_authorization");
var url = ApiUrlHelper.GetApiUrlForController(ApiSession.ApiUrl, ApiControllerUri, $"{orderId}/release-remaining-authorization");
return Post(url);
}

Expand Down

0 comments on commit 4f9e85f

Please sign in to comment.