Fulfillment policy Error.
I am facing an issue related to shipping. I am sending product via inventory api.
I am sending dimenstions like this
"packageWeightAndSize":{"dimensions":{"height":"25.00","length":"29.00","unit":"INCH","width":"12.00"},"weight":{"unit":"POUND","value":"75.00"}},
and I am getting the following error.
"errors":[
{"errorId":25007,"domain":"API_INVENTORY","subdomain":"Selling","category":"REQUEST",
"message":"The eBay listing associated with the inventory item, or the unpublished offer has invalid data in the associated Fulfillment policy. Package weight is over the weight limit for service USPS Priority Mail International. The maximum weight is 70 lbs.",
"parameters":[
{"name":"0","value":"USPS Priority Mail International"},
{"name":"1","value":"70 lbs"},
{"name":"2","value":"70"},
{"name":"3","value":"IMPERIAL"}
]
}
Can you please help me out, How I can handle this situation?
for simple products we want USPS shipping and for over wight products we want to use USP.
interloper-com
OP2 years agoI have create a new fulfillment_policy
{
"name": "Heavy Items Shipping Policy",
"description": "Default shipping policy for heavy items",
"marketplaceId": "EBAY_US",
"categoryTypes": [
{
"name": "ALL_EXCLUDING_MOTORS_VEHICLES",
"default": false
}
],
"handlingTime": {
"value": 5,
"unit": "DAY"
},
"shipToLocations": {
"regionExcluded": [
{
"regionName": "Alaska/Hawaii"
},
{
"regionName": "APO/FPO"
},
{
"regionName": "PO Box"
},
{
"regionName": "US Protectorates"
}
]
},
"shippingOptions": [
{
"optionType": "DOMESTIC",
"costType": "FLAT_RATE",
"shippingServices": [
{
"sortOrder": 1,
"shippingCarrierCode": "UPS",
"shippingServiceCode": "US_UPSSurePost",
"shippingCost": {
"value": "0.0",
"currency": "USD"
},
"additionalShippingCost": {
"value": "0.0",
"currency": "USD"
},
"freeShipping": true,
"buyerResponsibleForShipping": false,
"buyerResponsibleForPickup": false
}
],
"shippingDiscountProfileId": "0",
"shippingPromotionOffered": false
}
],
"globalShipping": false,
"pickupDropOff": false,
"freightShipping": false,
"fulfillmentPolicyId": "241021583017"
}
I sending this new ID for over weight products.
{"requests":[{"availableQuantity":2,"categoryId":20564,"extendedProducerResponsibility":{},"format":"FIXED_PRICE","hideBuyerDetails":false,"includeCatalogProductDetails":true,"listingPolicies":{"bestOfferTerms":{"bestOfferEnabled":false},"fulfillmentPolicyId":"231563197017","paymentPolicyId":"241021583017","returnPolicyId":"228239810017"},"marketplaceId":"EBAY_US","merchantLocationKey":"19722450340_2","pricingSummary":{"price":{"currency":"USD","value":1654.52}},"sku":"354334"}]}
Still getting the same error.
'The eBay listing associated with the inventory item, or the unpublished offer has invalid data in the associated Fulfillment policy. Package weight is over the weight limit for service USPS Priority Mail International. The maximum weight is 70 lbs.","parameters'
shipscript
·2 years agoIf you are creating an offer and are using shipping policies, you may be using a shipping policy that is not appropriate for the weight of your item. You may need to create a new shipping policy for overweight items.
https://developer.ebay.com/api-docs/sell/inventory/resources/offer/methods/createOffer
interloper-com
OP2 years agoI have create a new fulfillment_policy
{
"name": "Heavy Items Shipping Policy",
"description": "Default shipping policy for heavy items",
"marketplaceId": "EBAY_US",
"categoryTypes": [
{
"name": "ALL_EXCLUDING_MOTORS_VEHICLES",
"default": false
}
],
"handlingTime": {
"value": 5,
"unit": "DAY"
},
"shipToLocations": {
"regionExcluded": [
{
"regionName": "Alaska/Hawaii"
},
{
"regionName": "APO/FPO"
},
{
"regionName": "PO Box"
},
{
"regionName": "US Protectorates"
}
]
},
"shippingOptions": [
{
"optionType": "DOMESTIC",
"costType": "FLAT_RATE",
"shippingServices": [
{
"sortOrder": 1,
"shippingCarrierCode": "UPS",
"shippingServiceCode": "US_UPSSurePost",
"shippingCost": {
"value": "0.0",
"currency": "USD"
},
"additionalShippingCost": {
"value": "0.0",
"currency": "USD"
},
"freeShipping": true,
"buyerResponsibleForShipping": false,
"buyerResponsibleForPickup": false
}
],
"shippingDiscountProfileId": "0",
"shippingPromotionOffered": false
}
],
"globalShipping": false,
"pickupDropOff": false,
"freightShipping": false,
"fulfillmentPolicyId": "241021583017"
}
I sending this new ID for over weight products.
{"requests":[{"availableQuantity":2,"categoryId":20564,"extendedProducerResponsibility":{},"format":"FIXED_PRICE","hideBuyerDetails":false,"includeCatalogProductDetails":true,"listingPolicies":{"bestOfferTerms":{"bestOfferEnabled":false},"fulfillmentPolicyId":"231563197017","paymentPolicyId":"241021583017","returnPolicyId":"228239810017"},"marketplaceId":"EBAY_US","merchantLocationKey":"19722450340_2","pricingSummary":{"price":{"currency":"USD","value":1654.52}},"sku":"354334"}]}
Still getting the same error.
'The eBay listing associated with the inventory item, or the unpublished offer has invalid data in the associated Fulfillment policy. Package weight is over the weight limit for service USPS Priority Mail International. The maximum weight is 70 lbs.","parameters'