eBay Trading API - How to get shipping label for an order to be shipped? - ebay-api

I am able to get the orders for a seller through eBay GetSellerList (Trading API) and GetOrders (Fulfillment API) calls. I also found an API
CompleteSale for processing the orders but could not find any API for generating the shipping label like this sample Label.
Any help is appreciated.
TIA

Related

I want to update Ebay product price using Ebay API

I am searching and trying to update the eBay store price using the eBay API. I have the App ID DevID and cart ID. I have been trying to update the price using the API. I went through the documentation of eBay API. But couldn't find any proper solution.
Is there any script in PHP that can help me?
The easiest way ito update price and quantity s to use ReviseInventoryStatus API.
Just need to supply ItemID and price
Then to build procedure you can browse SO:
How to change product quantity with Ebay API
If you only need to update price/quantity Isuggest you not to use any SDK.

eBay REST API getOffers no results but returns order array in Trading API

I am stuck on this issue for weeks and I didn't have any replies on the eBay forum.
I searched many places on web and found some people having the same problem as mine but no one got an answer to solution.
Just wondering if anyone is using eBay REST API and you are getting some results through the getOffers API, maybe you can see if I missed anything.
Things I confirmed through the Inventory API (REST)
I successfully created a couple of hundreds of inventory items through Inventory API.
I successfully created offers for all my items on eBay.
All items on eBay are showing the correct quantity and price.
Things I have done manually through the eBay website as a general customer
I searched my items and opened one of them
I purchased a few items.
I marked all purchases as payment sent.
Things I have done through the Fulfillment API (REST)
I sent the request to get all orders in the last 10 day.
The response header contains: rlogid:t6pithqauq%60%28ciudbq%60anng%7Fu2h%3F%3Cwk%7Dukqjtcpse*1423455-15fb2623e27-0xb8
The response body contains:
{
"href": "https://api.sandbox.ebay.com/sell/fulfillment/v1/order?filter=creationdate:%5B2017-10-01T08:25:43.511Z..%5D&limit=50&offset=0",
"total": 0,
"limit": 50,
"offset": 0,
"orders": []
}
Things I have done to find out if items are sold
I refreshed the item page and confirm that eBay website is displaying 2 sold just after I marked payment send on my purchase page.
I can see that all orders appear through the Trading API (XML).
"Note: The Fulfillment API covers only the transactions that have completed the checkout process. This includes both paid purchases and purchases that do not require upfront payment (such as COD). However, the API does not cover pending payment purchases that require upfront payment before shipment."
Copied from here: https://developer.ebay.com/api-docs/sell/fulfillment/overview.html
So PayPal is covered, COD or prepayment are not...
Better use Trading API.

Need to modify Shopify products API BY Shopify team then return back to me

It is necessary to modify Shopify products API as per my client requirement.
For example the below products API is available in Shopify API reference document.
GET /admin/products.json
I am able to get list of products from above API. But i want to filter products based on price by sending price as input parameter and get related products as a response.
For that post API is needed. Do shopify team provide Products API for filtering products by sending input parameter as that is not available in API reference?
Kindly give me the information. Thanks in advance
No, there is no way to filter on a price range using /admin/products.json. You can page through all of the products, 250 at a time, and find the products that meet your criteria that way.

Shopify: Get turnover/revenue total using API

I'm at a loss.
Using the API:
How do I fetch my revenue/sales/turnover for this day / week / month?
Additional info:
I cannot find any API functionality that will do this job,
but I know that Shopify has various API 'namespaces' / 'scopes', some which seem to be undocumented, that they can provide access to, which would surely have the data I need:
admin_notifications
apps
channels
content
customers
disputes
fulfillments
gift_card_adjustments
gift_cards
inventory
meta_tags
orders
products
public_customers
script_tags
scripts
shipping
social_network_accounts
taxes
themes

eBay Trading API - GetMyeBaySelling vs GetOrders for getting my sold items

I need to get the items I sold at eBay and the detailed information about each sale (who bought it, their exactly shipping address, email and so on).
I'm wondering, what should I use for that: GetMyeBaySelling and GetOrders? They seem to be exactly the same!
Use GetOrders, it is made to retrieve all relevant order information. But make sure to use the Pagination-Attribute, otherwise the call will only return 100 orders.