Can we query all UPS Shipments at once using API - api

I know, we have dedicated API documentation for Shipping and different services.
But there is no endpoint to get all UPS Shipments at once using API.
Can anyone provide me the endpoint with example?
Thank you in advance.

I had the same question and after a long email thread with UPS Support they confirmed there is no way to grab historical shipment information.
The only option they gave is maybe using QVM which also has it's limitations.
That would be correct, Quantum View Manage and Quantum View Data would be your best available option to view the outbound information. You can have it build a report with address, name and tracking number. Contact your local UPS Account Representative for in depth details if you would like to explore that option. There is a Quantum View API however it would first need to be setup via your local Rep with the website. You are still manually searching the docs however for the information at hand when reviewing the reports. It will not pull it up or give a simple error if what you are looking for is not found. They just pull information all or nothing.

Related

Accessing Amazon Pay Transaction Report via API

I am currently trying to create a report of all amazon pay transactions. All data I need is included the "Amazon Pay Transaction Reports" which can be generated for a desired time period in the sellercentral interface. The report can then be downloaded as a CSV.
The amazon API documentation makes it seem like there is also the option to create and access this report programatically. (https://developer.amazon.com/docs/amazon-pay-checkout/set-up-reports.html)
Unfortunately the link in the documentation for further details seems to be broken.
Does anyone know how to access this endpoint or whether there is any other way to get the data for all transactions within given time period?
I was also looking at the other endpoints but unfortunately it seems like it is not possible to query multiple charges at the same time but only by a specific chargeId.
the documentation link in that page should be corrected, but you can also access the Reporting API Integration Guide here.

How to get a rout information with trafic flow information included for a past date?

I am trying to use Azure Maps API. It will be nice to have route information which should include the locations of course and a speed profile. As you can understand speed profile is not an east one. Free flow speed profile is ok. But we want to simulate real-world conditions meaning that we want to select date and time of departure to get accurate speed information as close to as possible to a real world traffic influence.
Is there any feature that Azure provide this? If not, which API can provide this
I don't have any code at this moment to show since ı don't know which API to use.
Historical traffic data is not currently available in Azure Maps but is being investigated as a potential future feature.

Connecting to an API using Power Bi

I am trying to connect to an API using Power BI. I am doing this by clicking on the Get Data then choosing Web, typing the URL address of the site. It comes with the list of API links created when I drill to any of them I cannot see anything. Is this the correct way of doing it? Many Thanks for your help
For querying REST APIs, that's the correct way of doing it yes. But in your case, it might be an issue with the API itself or that you need more details in the query? It's hard to troubleshoot without vieweing the API documentations.
If you then press on Advanced, you can then include further details for your request if needed.
I will include some screenshots below of how to choose the Web connector.

iTunes Connect reports

I have a few questions:
Do the “Sales and Trends report” provides info about in-app purchase and organic traffic?
How can I upload the data from “Sales and Trends report”?
I’ve heard about method through using java classes?
The reports you can download from the Sales & Trends section of iTunes Connect do give you aggregate transactional information about in-app purchases but not about organic traffic. Apple doesn't expose that at all.
Do you mean export? If so you'll want to look into the Auto Ingest tool. It's not an API but it will allow you to access your last 30 daily reports programatically.
Alternatively, you can use a service like appFigures which syncs with iTunes Connect automatically and provides a very simple API to access sales data and much more.
Full disclosure, I'm on the appFigures team
I will be happy to answer those questions.
Question 1) Sales And Trends show you just the money made (so yes to the In-App Purchases), but not the organic traffic. There is just some information that Apple likes to keep a secret, but we don't know why.
Question 2) Import means you put information into that section. You can't do that, but you can export the information, which means you get the information and download it.
This is what "Sales and Trends" should look like, but there should be more information. I blocked out that information by slightly edited it. I put the download button in the black box. Then, you can choose the format you download it.
I hope this helped you get your answers!

How To Get Started Working with the Google AdWords API?

I'm a student working on a project related to SEO; I need to write an optimization tool, so I'm writing an application using C# and Windows Forms. The main part of the application is for keyword selection, and I want to use the Google AdWords API to obtain a list of keywords.
I downloaded the C# client library, but can't understand how to set up the project: I am getting the error:
"An API exception has occurred. See ApiExecption and InnerException fields for more details".
Maybe I have made a mistake when I edited the App.config file as I haven't changed anything else. Can anyone advise me where I should begin? I would be grateful to hear your ideas.
Unfortunatley, the AdWords API isn't as open as you might think: It's meant for ad agencies managing large accounts, or software vendors who want to build ad management platforms. You need to apply to Google for an API key to gain access; they used to give them out to nearly anyone with an account, and it took about 14 days to process the application. However, Google has got very strict about their terms and conditions over the past 12 months, and to put it simply, you probably won't meet them if you're building an SEO tool; even if you apply to build a full platform, you'll need to wait six to ten weeks for approval as they've got a huge backlog of applications to process at the moment.
As this is just a student project, you should actually be able to get away with just using the AdWords API sandbox, which is open to anyone with a Google account. This won't give you real keywords or stats, but would demonstrate your understanding of the platform.
Another option would be to check out the Ad Intelligence Service of the adCenter API; you'd still need to open an adCenter account (with a $5 activation fee), but you should be able to get an adCenter API key without waiting too long. The stats available from Microsoft won't be as extensive as what Google has to offer, but will still be relevant to the at least the US market. Also, being Microsoft, they've got a good range of C# examples.
You could use the sandbox, but it is good only for testing purposes. You won't get real values for traffic estimation and keyword ideas.
To use the sandbox, what you need is a Google account (your gmail account for instance). To initialize the sandbox,
In your App.config, put email/password/developerToken as your email / your password / youremail++USD (e.g. john.doe#gmail.com++USD)
Run the GetCampaigns.cs code example. It is under v201109/BasicOperations folder in the C# examples project. This will initialize the sandbox.
Run the GetAccountHierarchy.cs code example. It is under v201109/AccountManagement folder. This will give you 5 client emails and their customer ids.
Use one of these customerIds in the ClientCustomerId field of App.config.
Run any other code example.
The video is a bit outdated, due to recent changes in AdWords API, I need to update it.
you can find a very good article series about adwords api there: Google Adwords API
it is not that hard to learn how to use it! I think the API itself is very good documented and there is a good suppo from google.