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

After hitting order api we dont get blank order list in response (we have orders in our dashboard)

api url - https://api.ebay.com/sell/fulfillment/v1/order
its response-

{
"total": 0,
"limit": 50,
"offset": 0,
"orders": []
}
 
After hitting order api we got this response in which we get blank list of orders , but we have list of orders in our dashboard
would you please su
ggest/guide me what's wrong in this

 

Message 1 of 10
latest reply
9 REPLIES 9

After hitting order api we dont get blank order list in response (we have orders in our dashboard)

Working for me

 

zntswholesaleglobal_0-1713515252332.png

 

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

After hitting order api we dont get blank order list in response (we have orders in our dashboard)

Please share the steps how can I do this

Message 3 of 10
latest reply

After hitting order api we dont get blank order list in response (we have orders in our dashboard)

Please can you share the cURL request?

Message 4 of 10
latest reply

After hitting order api we dont get blank order list in response (we have orders in our dashboard)

curl --location --globoff 'https://api.ebay.com/sell/fulfillment/v1/order?filter=orderfulfillmentstatus%3A{NOT_STARTED%7CIN_PROGRESS}&limit=50' \
--header 'Authorization: Bearer YOUR TOEKN HERE' \
C# wrapper for eBay REST API
https://github.com/CMS365-PTY-LTD/EbaySharp
Message 5 of 10
latest reply

After hitting order api we dont get blank order list in response (we have orders in our dashboard)

 
Im try to hit the POST Api for https://api.sandbox.ebay.com/sell/inventory/v1/bulk_migrate_listing,

**the listingId can be made manually or we need to get from docuementation/outside.?

Payload = {
    "requests": [
        {
            "listingId": "133859066147"
        }
    ]
}

response = {
    "errors": [
        {
            "errorId": 2003,
            "domain": "ACCESS",
            "category": "APPLICATION",
            "message": "Internal error",
            "longMessage": "There was a problem with an eBay internal system or process. Contact eBay developer support for assistance",
            "parameters": [
                {
                    "name": "reason",
                    "value": "Failed to transform underlying error response, see logs."
                }
            ]
        }
    ]
}

But i received an error as shows in the response. 

here is the link of documentation i followed , url_link = https://developer.ebay.com/api-docs/sell/inventory/resources/listing/methods/bulkMigrateListing#h2-e...

Message 6 of 10
latest reply

After hitting order api we dont get blank order list in response (we have orders in our dashboard)

Try on PRODUCTION server, listing ID must match an existing item in your store.

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

After hitting order api we dont get blank order list in response (we have orders in our dashboard)

@znts-wholesale-global  can you share documention for php, laravel

Message 8 of 10
latest reply

After hitting order api we dont get blank order list in response (we have orders in our dashboard)

You should get it working in postman first.

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

After hitting order api we dont get blank order list in response (we have orders in our dashboard)

@znts-wholesale-global 

I am getting empty API response

getorders api response

{
"total": 0,
"limit": 50,
"offset": 0,
"orders": []
}

get inventory_item response
{
"total": 0,
"size": 0
}


Message 10 of 10
latest reply