Skip to content

Commit 48e7dbb

Browse files
authored
Merge pull request #386 from RenzoF/main
Fixed correct endpoint
2 parents 85994b8 + 51e49da commit 48e7dbb

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
@@ -103,7 +103,7 @@ public GetPrepInstructionsResult GetPrepInstructions(ParameterGetPrepInstruction
103103
public async Task<GetPrepInstructionsResult> GetPrepInstructionsAsync(ParameterGetPrepInstructions parameterGetPrepInstructions)
104104
{
105105
var parameter = parameterGetPrepInstructions.getParameters();
106-
await CreateAuthorizedRequestAsync(FulFillmentInboundApiUrls.GetInboundGuidance, RestSharp.Method.Get, parameter);
106+
await CreateAuthorizedRequestAsync(FulFillmentInboundApiUrls.GetPrepInstructions, RestSharp.Method.Get, parameter);
107107

108108
var response = await ExecuteRequestAsync<GetPrepInstructionsResponse>(RateLimitType.FulFillmentInbound_GetPrepInstructions);
109109
if (response != null && response.Payload != null)

0 commit comments

Comments
 (0)