File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Source/FikaAmazonAPI/Services Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -328,7 +328,7 @@ public static string ListFinancialEventGroups
328
328
public static string ListFinancialEventsByOrderId ( string orderId ) => $ "{ _resourceBaseUrl } /orders/{ orderId } /financialEvents";
329
329
public static string ListFinancialEvents
330
330
{
331
- get => $ "{ _resourceBaseUrl } /listFinancialEvents ";
331
+ get => $ "{ _resourceBaseUrl } /financialEvents ";
332
332
}
333
333
}
334
334
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ public IList<FinancialEvents> ListFinancialEvents(ParameterListFinancialEvents p
75
75
76
76
var parameter = parameterListFinancials . getParameters ( ) ;
77
77
78
- CreateAuthorizedRequest ( FinanceApiUrls . ListFinancialEventGroups , RestSharp . Method . GET , parameter ) ;
78
+ CreateAuthorizedRequest ( FinanceApiUrls . ListFinancialEvents , RestSharp . Method . GET , parameter ) ;
79
79
var response = ExecuteRequest < ListFinancialEventsResponse > ( ) ;
80
80
81
81
list . Add ( response . Payload . FinancialEvents ) ;
@@ -97,7 +97,7 @@ private ListFinancialEventsPayload GetFinancialEventsByNextToken(string nextToke
97
97
queryParameters . Add ( new KeyValuePair < string , string > ( "NextToken" , nextToken ) ) ;
98
98
99
99
100
- CreateAuthorizedRequest ( FinanceApiUrls . ListFinancialEventGroups , RestSharp . Method . GET , queryParameters ) ;
100
+ CreateAuthorizedRequest ( FinanceApiUrls . ListFinancialEvents , RestSharp . Method . GET , queryParameters ) ;
101
101
var response = ExecuteRequest < ListFinancialEventsResponse > ( ) ;
102
102
return response . Payload ;
103
103
}
You can’t perform that action at this time.
0 commit comments