cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Return policy issue

Hello,

 

I'm having trouble to set a return policy on an offer, it's seems to not setting the one I send when doing the createOffer.
Does anyone have the same issue ?

Message 1 of 3
latest reply
2 REPLIES 2

Return policy issue

Could you please share your payload/code?

C# wrapper for eBay REST API
https://github.com/CMS365-PTY-LTD/EbaySharp
Message 2 of 3
latest reply

Return policy issue

I send

{
    "sku": "V456226",
    "format": "FIXED_PRICE",
    "listingDuration": "GTC",
    "marketplaceId": "EBAY_FR",
    "availableQuantity": "1",
    "categoryId": "11233",
    "pricingSummary": {
        "price": {
            "value": "115.00",
            "currency": "EUR"
        }
    },
    "merchantLocationKey": "Default-EBAY_FR",
    "tax": {
        "vatPercentage": "20",
        "applyTax": true
    },
    "listingPolicies": {
        "paymentPolicyId": "177813320024",
        "fulfillmentPolicyId": "103377283024",
        "returnPolicyId ": "169207605024"
    }
}

but the offer is created with no returnPolicyId

{
    "total": 1,
    "size": 1,
    "href": "/sell/inventory/v1/offer?offset=0&limit=20",
    "limit": 20,
    "offers": [
        {
            "offerId": "333328484013",
            "sku": "V456226",
            "marketplaceId": "EBAY_FR",
            "format": "FIXED_PRICE",
            "availableQuantity": 1,
            "pricingSummary": {
                "price": {
                    "value": "115.0",
                    "currency": "EUR"
                }
            },
            "listingPolicies": {
                "paymentPolicyId": "177813320024",
                "fulfillmentPolicyId": "103377283024",
                "eBayPlusIfEligible": false
            },
            "categoryId": "11233",
            "merchantLocationKey": "Default-EBAY_FR",
            "tax": {
                "vatPercentage": 20.0,
                "applyTax": true
            },
            "listing": {
                "listingId": "285831669643",
                "listingStatus": "ACTIVE",
                "soldQuantity": 0
            },
            "status": "PUBLISHED",
            "listingDuration": "GTC",
            "includeCatalogProductDetails": true,
            "hideBuyerDetails": false
        }
    ]
}
Message 3 of 3
latest reply