We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a20fc8d commit ce4576cCopy full SHA for ce4576c
Source/FikaAmazonAPI/Services/FbaInventoryService.cs
@@ -28,7 +28,7 @@ public List<InventorySummaries> GetInventorySummaries(ParameterGetInventorySumma
28
var nextToken = response.Pagination.NextToken;
29
while (!string.IsNullOrEmpty(nextToken))
30
{
31
- var getInventorySummaries = GetInventorySummariesByNextToken(nextToken);
+ var getInventorySummaries = GetInventorySummariesByNextToken(nextToken, ParameterGetInventorySummaries);
32
list.Add(getInventorySummaries.Payload.InventorySummaries);
33
nextToken = getInventorySummaries.Pagination?.NextToken;
34
}
0 commit comments