Skip to content

Commit b0fc935

Browse files
committed
fix method
1 parent 60ec599 commit b0fc935

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/FikaAmazonAPI/Services/FulFillmentInboundService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public async Task<ConfirmPreorderResult> ConfirmPreorderAsync(string shipmentId,
8989
queryParameters.Add(new KeyValuePair<string, string>("MarketplaceId", AmazonCredential.MarketPlace.ID));
9090
queryParameters.Add(new KeyValuePair<string, string>("NeedByDate", NeedByDate.ToString("YYYY-MM-DD")));
9191

92-
await CreateAuthorizedRequestAsync(FulFillmentInboundApiUrls.ConfirmPreorder(shipmentId), RestSharp.Method.Get, queryParameters);
92+
await CreateAuthorizedRequestAsync(FulFillmentInboundApiUrls.ConfirmPreorder(shipmentId), RestSharp.Method.Put, queryParameters);
9393

9494
var response = await ExecuteRequestAsync<ConfirmPreorderResponse>(RateLimitType.FulFillmentInbound_ConfirmPreorder);
9595
if (response != null && response.Payload != null)

0 commit comments

Comments
 (0)