MySYS GLOBAL API
Sisteme üye olan depoların listesinin alınması.
Example Request:
GET /warehouse/list HTTP/1.1
Host:BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
Example Response:
[
{
"id": "1",
"name": "UK PreFulfillment",
"addressLine1": "5 Viking Self Storage,",
"addressLine2": "5 Turnpike Close",
"city": "Norwich",
"state": null,
"postal": "NR6 5BD",
"countryCode": "GB",
"defaultCurrency": "GBP"
},
{
"id": "3",
"name": "SHIPPING GARAGE",
"addressLine1": "1663 S Mount Prospect Rd",
"addressLine2": "5 Turnpike Close",
"city": "Des Plaines",
"state": "ILLINOIS",
"postal": "60018",
"countryCode": "US",
"defaultCurrency": "USD"
}
]
Deponun ekstra olarak verdiği hizmetler.
Example Request:
POST /servicePlanItems/listHTTP/1.1
Host:BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
{
"warehouseId": 1
}
Example Response:
[
{
"Id": 30025,
"Name": "Outbound Box (each extra order)",
"Name_TR": "Depodan Çikis (her bir ek sipariş)",
"Description": null,
"Description_TR": null,
"Price": 0.57,
"Type": "perproduct",
"ShipmentType": [
"COLLECTION",
"TRANSIT",
"FBM"
],
"IsRequired": true
},
{
"Id": 30028,
"Name": "Boxing 353 x 250 x 50 mm",
"Name_TR": "Zarflama/Paketleme 353 x 250 x 50 mm",
"Description": null,
"Description_TR": null,
"Price": 0.69,
"Type": "perproduct",
"ShipmentType": [
"FBA",
"FBM",
"TRANSIT",
"COLLECTION"
],
"IsRequired": false
},
…
]
Deponun ekstra olarak verdiği FBM (Depoya Ürün Gönderme) hizmetleri.
Example Request:
GET /servicePlanItems/fbmlist HTTP/1.1
Host: BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
{
"warehouseId": 1
}
Example Response:
[
{
"Id": 30025,
"Name": "Outbound Box (each extra order)",
"Name_TR": "Depodan Çikis (her bir ek sipariş)",
"Description": null,
"Description_TR": null,
"Price": 0.57,
"Type": "perproduct",
"ShipmentType": [
"FBM"
],
"IsRequired": true
},
{
"Id": 30028,
"Name": "Boxing 353 x 250 x 50 mm",
"Name_TR": "Zarflama/Paketleme 353 x 250 x 50 mm",
"Description": null,
"Description_TR": null,
"Price": 0.69,
"Type": "perproduct",
"ShipmentType": [
"FBM"
],
"IsRequired": false
},
…
]
Deponun ekstra olarak verdiği FBM hizmetleri.
Example Request:
GET /servicePlanItems/fbalist HTTP/1.1
Host: BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
{
"warehouseId": 1
}
Example Response:
[
{
"Id": 30028,
"Name": "Boxing 353 x 250 x 50 mm",
"Name_TR": "Zarflama/Paketleme 353 x 250 x 50 mm",
"Description": null,
"Description_TR": null,
"Price": 0.69,
"Type": "perproduct",
"ShipmentType": [
"FBA"
],
"IsRequired": false
},
{
"Id": 30029,
"Name": "Boxing 250 x 250 x 130 mm",
"Name_TR": "Koli Fiyatı 250 x 250 x 130 mm",
"Description": null,
"Description_TR": null,
"Price": 0.92,
"Type": "perpackage",
"ShipmentType": [
"FBA"
],
"IsRequired": false
},
…
]
Deponun ekstra olarak verdiği Transit sevkiyat hizmetleri.
Example Request:
GET /servicePlanItems/transitlist HTTP/1.1
Host: BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
{
"warehouseId": 1
}
Example Response:
[
{
"Id": 30060,
"Name": "Poly Bag",
"Name_TR": "Poly Bag(Kargo Poşeti)",
"Description": null,
"Description_TR": null,
"Price": 0.36,
"Type": "perpackage",
"ShipmentType": [
"TRANSIT"
],
"IsRequired": false
},
{
"Id": 30065,
"Name": "Outbound (Oversize box order 1 SKU)",
"Name_TR": "Depodan Çikis( 8 kg/desi üzeri sipariş)",
"Description": null,
"Description_TR": null,
"Price": 2.88,
"Type": "perpackage",
"ShipmentType": [
"TRANSIT"
],
"IsRequired": false
}
…
]
Deponun ekstra olarak verdiği Transit sevkiyat hizmetleri.
Example Request:
GET /servicePlanItems/collectionlist HTTP/1.1
Host: BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
{
"warehouseId": 1
}
Example Response:
[
{
"Id": 30060,
"Name": "Poly Bag",
"Name_TR": "Poly Bag(Kargo Poşeti)",
"Description": null,
"Description_TR": null,
"Price": 0.36,
"Type": "perpackage",
"ShipmentType": [
"COLLECTION"
],
"IsRequired": false
},
{
"Id": 30065,
"Name": "Outbound (Oversize box order 1 SKU)",
"Name_TR": "Depodan Çikis( 8 kg/desi üzeri sipariş)",
"Description": null,
"Description_TR": null,
"Price": 2.88,
"Type": "perpackage",
"ShipmentType": ["COLLECTION"],
"IsRequired": false
}
…
]
Kullanıcıların sisteme üye yapılması.
Example Request:
POST /user/addUpdate HTTP/1.1
Host:BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
{
"id": null, // id verilirse update edilir
"email": "test@test.com", // update edilemez alan
"name": "Halil",
"lastname": "YILMAZ",
"phone": "+90 542 232 23 22",
"defaultWarehouseId": null,
"isActive": true // pasife çekmek için false verilir
}
Example Response:
{
"IsSuccess": true,
"Id": 1121,
"Error": null
}
Kullanıcı listesini verir.
Example Request:
GET /user/list?warehouseId=4 HTTP/1.1
Host:BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
Example Response:
[
{
"Id": 173,
"Email": "email.test@asd.com",
"Name": "Halill",
"LastName": "YILMAZ",
"Phone": "0555554443333",
"DefaultWarehouseId": 4,
"IsActive": false
}
]
Kullanıcı bilgisini verir. (UserId ye göre)
Example Request:
GET /user/get?userId=173 HTTP/1.1
Host:BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
Example Response:
{
"Id": 173,
"Email": "email.test@asd.com",
"Name": "Halill",
"LastName": "YILMAZ",
"Phone": "0555554443333",
"DefaultWarehouseId": 4,
"IsActive": false
}
Depoya gönderilecek olan ürünlerin sisteme tanımlanması.
Example Request:
POST /product/addUpdate HTTP/1.1
Host:BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
{
"id": null,
"warehouseId": 4, // update edilemez
"userId": 173, // update edilemez
"title": "Drawing coloured pencils",
"marketplaceId": "A1F83G8C2ARO7P", // amazon ürünlerinde
"ASIN": "B01212112", // amazon ürünlerinde
"SKU": "SKU-1223324",
"barcode": "4444333223",
"imageUrl": "https://m.media-amazon.com/images/I/Ewocn_SL75_.jpg",
"weight": 1.2,
"weightUnit": "kg", // kg, lb
"height": 12.10,
"width": 8.50,
"length": 14.50,
"dimensionUnit": "cm", // cm, in
"price": 99.90,
"currency": "GBP", // USD, GBP, EUR (warehouse default currency)
"expirationDate": "2023-02-21",
"isActive": true
}
Example Response:
{
"IsSuccess": true,
"Id": 312221,
"Error": null
}
Kullanıcıya tanımlanmış olan ürünlerin listesini verir.
Example Request:
GET /product/list?userId=173&warehouseId=4 HTTP/1.1
Host:BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
Example Response:
[
{
"Id": 66,
"WarehouseId": 4,
"UserId": 173,
"Title": "Drawing coloured pencils",
"MarketplaceId": "A1F83G8C2ARO7P",
"ASIN": "B01212112",
"SKU": "SKU-1223324",
"Barcode": "4444333223",
"ImageUrl": "https://m.media-amazon.com/images/I/Ewocn_SL75_.jpg",
"Weight": 1.2,
"WeightUnit": "kg",
"Length": 14.5,
"Width": 8.5,
"Height": 12.1,
"DimensionUnit": "cm",
"Price": 99.9,
"Currency": "GBP",
"IsActive": true
}
]
Ürün Id sine göre ürün bilgisini verir.
Example Request:
GET /product/get?productId=66 HTTP/1.1
Host:BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
Example Response:
{
"Id": 66,
"WarehouseId": 4,
"UserId": 173,
"Title": "Drawing coloured pencils",
"MarketplaceId": "A1F83G8C2ARO7P",
"ASIN": "B01212112",
"SKU": "SKU-1223324",
"Barcode": "4444333223",
"ImageUrl": "https://m.media-amazon.com/images/I/Ewocn_SL75_.jpg",
"Weight": 1.2,
"WeightUnit": "kg",
"Length": 14.5,
"Width": 8.5,
"Height": 12.1,
"DimensionUnit": "cm",
"Price": 99.9,
"Currency": "GBP",
"IsActive": true
}
Ürünleri depoya göndermek için yeni sevkiyat oluşturma.
Example Request:
POST/fbm/addUpdateHTTP/1.1
Host:BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
{
"id": null, //yeni sevkiyat için null, güncelleme için Id verisi yazılmalıdır
"warehouseId": 1,
"userId": 1251,
"packages":
[
{
"carrierName": "Fedex",
"trackNumber": "TK12312323233",
"packageItems": [
{
"productId": 121234,
"quantity": 10
},
{
"productId": 121235,
"quantity": 20
}
]
}
]
}
Example Response:
{
"IsSuccess": true,
"Id": 31223,
"Address": "5 Viking Self Storage,5 Turnpike Close #1001 # INV 1001 Norwich NR6 5BDUnited
Kingdom",
"Error": null
}
Depoya ürün gönderme işlemini iptali eder. (Sadece Status= NewShipment durumunda)
Example Request:
POST /fbm/cancel/{{fbmId}} HTTP/1.1
Host: BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
Example Response:
{
"IsSuccess": true,
"Id": 122122,
"Error": null
}
Depoya gönderilen sevkiyatın ayrıntılı bilgilerini getirir.
Example Request:
GET /fbm/get/{{fbmId}} HTTP/1.1
Host: BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
Example Response:
{
"Id": 65,
"WarehouseId": 4,
"UserId": 174,
"FbmNumber": "INV 1030",
"Status": "WHCancel",
"Packages": [
{
"PackageItems": [
{
"ProductId": 84,
"Quantity": 1
}
],
"TrackNumber": null,
"CarrierName": ""
}
]
}
Kullanıcıların depoya gönderim sevkiyatlarının listesini
Example Request:
GET /fbm/list?userId=172&warehouseId=4 HTTP/1.1
Host: BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
Example Response:
[
{
"Id": 47,
"ShipmentNumber": "INV 1047",
"UserId": 172,
"WarehouseId": 4,
"Status": "Paid",
"AddDate": "0001-01-01T00:00:00"
},
{
"Id": 48,
"ShipmentNumber": "INV 1048",
"UserId": 172,
"WarehouseId": 4,
"Status": "NewShipment",
"AddDate": "0001-01-01T00:00:00"
}
]
Envanterden veya envanter dışı FBA sevkiyatı oluşturulması veya sevkiyat bilgilerinin güncellenmesi (yalnızca NewShipment durumundaki sevkiyatlar için).
Example Request:
POST /fba/addUpdate HTTP/1.1
Host: BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
{
"id": null, //yeni sevkiyat için null, güncelleme için Id verisi yazılacak
"warehouseId": 4,
"userId": 172,
"WarehouseCarrierId": 0, //varsa warehouseCarrierId yazılır
"toCountryCode":"CA",
"packages": [
{
"servicePlanItems":[
{
"quantity": 1,
"servicePlanItemId":30018
},
{
"quantity": 1,
"servicePlanItemId":30042
},
{
"quantity": 1,
"servicePlanItemId":30043
}
],
"quantity": 1,
"carrierName": "DHL",
"trackNumber": "D2266554477",
"packageItems": [
{
"productId": 88,
"quantity": 17,
"productSource":"stock", //envanterden olmayan ürünler için nonstock girilir
"servicePlanItems":[
{
"quantity": 17,
"servicePlanItemId":30054
}
]
},
{
"productId": 152,
"quantity": 9,
"productSource":"stock",
"servicePlanItems":[
{
"quantity": 9,
"servicePlanItemId":30054
}
]
}
]
}
]
}
FBA sevkiyatını iptal eder. (Sadece Status= NewShipment durumunda)
Example Request:
POST /fba/cancel/{{fbaId}} HTTP/1.1
Host: BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
Example Response:
{
"IsSuccess": true,
"Id": 122122,
"Error": null
}
FBA sevkiyatın ayrıntılı bilgilerini getirir.
Example Request:
GET /fba/get/{{fbaId}} HTTP/1.1
Host: BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
Example Response:
{
"Id": 65,
"WarehouseId": 4,
"UserId": 174,
"FbmNumber": "FBA 1030",
"Status": "WHCancel",
"Packages": [
{
"PackageItems": [
{
"ProductId": 84,
"Quantity": 1
}
],
"TrackNumber": null,
"CarrierName": ""
}
]
}
Kullanıcıya ait FBA sevkiyat listesini getirir.
Example Request:
GET /fba//list?userId={{userId}}&warehouseId=4 HTTP/1.1
Host: BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
Example Response:
[
{
"Id": 41,
"ShipmentNumber": "FBA 1020",
"UserId": 172,
"WarehouseId": 4,
"Status": "Delivered",
"AddDate": "2021-08-28T10:41:08.25"
},
{
"Id": 49,
"ShipmentNumber": "FBA 1024",
"UserId": 172,
"WarehouseId": 4,
"Status": "WHCancel",
"AddDate": "2021-09-01T13:13:08.973"
}
]
FBA yapılacak ülke listesini getirir(toCountryCode değeri için).
Example Request:
GET /fba/getcountrylist HTTP/1.1
Host: BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
Example Response:
{
"US": "USA",
"CA": "Canada",
"GB": "United Kingdom",
"AU": "Australia",
"AE": "United Arab Emirates",
"DE": "Germany",
"FR": "France",
"MX": "Mexico"
}
FBA için kullanılacak carrier listesini getirir(toCountryCode değeri için).
Example Request:
GET /fba/getcountrylist HTTP/1.1
Host: BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
Example Response:
[
{
"WarehouseCarrierId": 0,
"CarrierServiceTypeId": 0,
"ServiceName": "string",
"CarrierId": 0,
"CarrierName": "string"
}
]
Kullanıcıların depoya gönderdikleri ürünlerin listelerini sorgulanması.
Example Request:
POST/inventory/list HTTP/1.1
Host:BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
{
"warehouseId": 1,
"userId": 1251,
}
Example Response:
[
{
"productId": 1121,
"inventoryId": 31223,
"section": "KTX-12",
"title": "Pencil 3 pieces",
"asin": "B0121212",
"sku": "sku-123123",
"barcode": "121621726",
"parcelType": "Palett",
"stock": 12,
"inventoryStatus": "ok"
},
{
"productId": 1121,
"inventoryId": 31224,
"title": "Pencil 3 pieces",
"asin": "B0121212",
"sku": "sku-123123",
"barcode": "121621726",
"parcelType": "Palett",
"section": "KTX-12",
"stock": 1,
"inventoryStatus": "damaged"
},
{
"productId": 1123,
"inventoryId": 31225,
"asin": null,
"title": "Erasers 3 pieces",
"sku": "sku-123123",
"barcode": null,
"parcelType": "Box",
"section": "KTB-22",
"stock": 24,
"inventoryStatus": "ok"
}
]
Kullanıcıların depodaki ürünlerinin depodan çıkışının yapılması. Ekstra hizmetler alınacaksa çıkış emrine girilecek.
Example Request:
POST/shipment/add HTTP/1.1
Host:BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
{
"warehouseId": 1,
"userId": 1251,
"latestDeliveryDate": "2021-10-23",
"userNote": "kullanıcı notu….",
"products": [
{
"inventoryId": null,
"productId": 67,
"quantity": 2
},
{
"inventoryId": 31224,
"productId": 68,
"quantity": 2
}
],
"extraServices": [
{
"inventoryId": null,
"productId": 67,
"servicePlanItemId ": 1232
},
{
"inventoryId": null,
"productId": 68,
"servicePlanItemId ": 1232
},
{
"inventoryId": null,
"productId": null,
"servicePlanItemId": 1233
}
],
"shipTo": {
"name": "Michael Kors",
"email": "kors@gmail.com",
"company": "US Govt",
"address1": "1600 Pennsylvania Ave",
"address2": "Oval Office",
"city": "Washington",
"state": "DC",
"postalCode": "20500",
"countryCode": "US",
"phone": null
},
"labelPdf": "{{varsa base64 formatında string yoksa null geçilecek}}"
}
Example Response:
{
"IsSuccess": true,
"Id": 122122, // ShipmentId
"ShipmentNumber": "#PF 10023",
"Status": "NewShipment",
"Error": null
}
Kullanıcıların transit/dropship tarzı stokta olmayan ürünlerinin gönderilmesi. Ekstra hizmetler alınacaksa çıkış emrine girilecek.
Example Request:
POST/shipment/add HTTP/1.1
Host:BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
{
"warehouseId": 1,
"type": [
"nonstock",
"collection"
],
"userId": 1251,
"latestDeliveryDate": "2021-10-23",
"userNote": "kullanıcı notu….",
"products": [
{
"inventoryId": null,
"productId": 67,
"quantity": 2
},
{
"inventoryId": 31224,
"productId": 68,
"quantity": 2
}
],
"extraServices": [
{
"inventoryId": null,
"productId": 67,
"servicePlanItemId ": 1232
},
{
"inventoryId": null,
"productId": 68,
"servicePlanItemId ": 1232
},
{
"inventoryId": null,
"productId": null,
"servicePlanItemId": 1233
}
],
"shipTo": {
"name": "Michael Kors",
"email": "kors@gmail.com",
"company": "US Govt",
"address1": "1600 Pennsylvania Ave",
"address2": "Oval Office",
"city": "Washington",
"state": "DC",
"postalCode": "20500",
"countryCode": "US",
"phone": null
},
"labelPdf": "{{varsa base64 formatında string yoksa null geçilecek}}"
}
Example Response:
{
"Type": "nonstock",
"CustomerNumber": "1295",
"SendToAddress": {
"Name": "UKprefulfillment",
"Company": "UKprefulfillment",
"Phone": "+44 7380427172",
"Email": "noreply@ukprefulfillment.com",
"Address1": "K Shed Warehouse,",
"Address2": "Zone 3i Longships Road",
"City": "Cardiff",
"State": "England",
"Postal": "CF10 4RP",
"CountryCode": "GB",
"FullAddress": "UKprefulfillment K Shed Warehouse, Zone 3i Longships Road #1295 #PF-10601
Cardiff England GB CF10 4RP"
},
"Description": "These products must first be sent to the warehouse. Please send the products to the
specified address. (with the customer number and shipment number)",
"IsSuccess": true,
"Id": 122122, // ShipmentId
"ShipmentNumber": "#PF 10023",
"Status": "NewShipment",
"Error": null
}
Collection olarak gönderilmiş gönderiye daha sonradan kullanıcı etiketinin yüklenebilmesi amacıyla eklenmiştir.
Example Request:
POST/shipment/update HTTP/1.1
Host:BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
{
"id": 1800, // shipment id
"labelPdf": // base64 pdf, jpg, docs …
"JVBERi0xLjcNCiWhs8XXDQoxIDAgb2JqDQo8PC9QYWdlcyAyIDAgUiAvVHlwZS9DY
XRhbG9nPj4NCmVuZG9iag0KMiAwIG9iag0KPDwvQ291bnQgMjEvS2lkc1sgNCAwIFIgID
E1IDAgUiAgMTkgMCBSICAyMyAwIFIgIDI3IDAgUiAgMzEgMCBSICAzNSAwIFIgIDM
5IDAgUiAgNDMgMCBSICA1MiAwIFIgIDU2IDAgUiAgNjEgMCBSICA2NSAwIFIgIDY5I
DAgUiAgNzMgMCBSICA3NyAwIFIgIDgyIDAgUiAgODYgMCBSICA5MCAwIFIgIDk0ID
AgUiAgOT…………………"
}
Example Response:
{
"IsSuccess": true,
"Id": 1800,
"Error": null,
"Status": null
}
Depo çıkış emrinin iptal edilmesi. Çıkış emirleri Status=InProcess durumuna kadar canceledilebilir.
Example Request:
GET/shipment/cancel/{{shipmentId}} HTTP/1.1
Host:BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
Example Response:
{
"IsSuccess": true,
"Id": 122122,
"Error": null
}
Gönderi durumlarının sorgulanması. Track no, label pdf bilgilerinin alınması.
Example Request:
POST/shipment/get HTTP/1.1
Host:BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
{
"shipmentId": 122122,
"labelPdf ": false,
}
Example Response:
{
"IsSuccess": true,
"Id": 122122,
"ShipmentNumber": "#PF 10023",
"Status": "Sended",
"CarrierName": "Royal Mail",
"CarrierServiceType": "Royal Mail 1 st Class 24 Hours",
"TrackNumber": "TK121221827182",
"TotalPrice": 12.45,
"PriceDetails": [
{
"Name": "Shipment",
"Price": 4.45,
"Quantity": 1
},
{
"Name": "Sticker Removal ",
"Price": 6.00,
"Quantity": 2
},
{
"Name": "Stretch Wrapping ",
"Price": 4.00,
"Quantity": 1
}
],
"LabelPdf": "{{varsa base64 formatında string e dönüştürülmüş pdf dosyasıgönderilir}},",
"Error": null
}
Gönderi durumlarının sorgulanması.
Example Request:
GET/shipment/getStatus/{{shipmentId}} HTTP/1.1
Host:BASE_DOMAIN
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json
Example Response:
{
"IsSuccess": true,
"Id": 122122,
"ShipmentNumber": "#PF 10023",
"Status": "Sended",
"CarrierName": "Royal Mail",
"CarrierServiceType": "Royal Mail 1 st Class 24 Hours",
"TrackNumber": "TK121221827182",
}
- ÖdemelerAPI kullanıcısının tanımlı hesabından otomatik çekilecektir.
- FBA in kendine ait süreçleri olduğundan API üzerinden yönetilmemektedir.
- Transit gönderiler (depoda stokta olmayan ürünlerin gönderilmesi) API üzerinden yapılmayacaktır.
- Aylık depo barındırma ücretleri API kullanıcısının tanımlı hesaplarından otomatik çekilecektir. (API’
de bulunmayacaktır)
- Ürünlerin nihai kargo fiyatı deponun belirlediği kargo firmasına göre belirlenecektir.