Skip to content

Commit 458fb11

Browse files
committed
fix #320
1 parent d96284d commit 458fb11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/FikaAmazonAPI/Services/ApiUrls.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public static string GetItemEligibilityPreview
5252
}
5353
protected class FulFillmentOutboundApiUrls
5454
{
55-
private readonly static string _resourceBaseUrl = "/ba/outbound/2020-07-01";
55+
private readonly static string _resourceBaseUrl = "/fba/outbound/2020-07-01";
5656
public static string GetFulfillmentPreview
5757
{
5858
get => $"{_resourceBaseUrl}/fulfillmentOrders/preview";
@@ -159,7 +159,7 @@ public static string PurchaseShipment
159159
}
160160
public static string GetTracking(string carrierId, string trackingId) => $"{_resourceBaseUrl}/tracking?carrierId={carrierId}&trackingId={trackingId}";
161161
public static string GetShipmentDocuments(string shipmentId, string packageClientReferenceId, string format) => $"{_resourceBaseUrl}/shipments/{shipmentId}/documents?packageClientReferenceId={packageClientReferenceId}&format={format}";
162-
public static string CancelShipment(string shipmentId) => $"{_resourceBaseUrl}/shipments/{shipmentId}/cancel";
162+
public static string CancelShipment(string shipmentId) => $"{_resourceBaseUrl}/shipments/{shipmentId}/cancel";
163163
}
164164
protected class MessaginApiUrls
165165
{

0 commit comments

Comments
 (0)