BigQuery API [HELP] - api

My spreadsheet was working normally, but this error started to appear. My account is business, so I did not activate the charge.
I've done some spreadsheets and none of them needed it.
Can someone help me?
This error

The error message states that you do not have a billing account attached to this project and therefore you will not be able to perform querying in BigQuery of your own data until you attach a billing account. If you are saying that everything works from the UI of the Google Cloud Platform Console, you are probably using a different project there.

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.

Big Query - Adwords - AuthenticationError.NOT_ADS_USER

I am trying to set up a data extract in BigQuery to pull data from a Google Ads Account. But I keep getting Auth errors (AuthenticationError.NOT_ADS_USER) when the extract tries starting pulling data.
<ApiError><type>AuthenticationError.NOT_ADS_USER</type><trigge
What did I do?-
Set up Big Query and the data extract (as depicted here: https://cloud.google.com/bigquery-transfer/docs/adwords-transfer)
Invited and added the same email address that big query is using to the Google Ads account with read access level (at first) and then standard access level when the problem persisted.
Is there something that I missed, that I have to enable/accept/configure in order for Big query extract to be able to pull the data from Google Ads?
Thanks,
p.s I have another extract in the same big query account with a different Google Ads account that is working, I recall have followed the same steps.
I would recommend to remove and add the user account that you are using to access Google Ads. It's usually related to permissions related issue. Have you followed the steps mentioned here?
https://cloud.google.com/bigquery-transfer/docs/adwords-transfer#required_permissions
If yes, try remove and add again as suggested on both Google Ads and GCP. If it's not working, try creating a case with Google Cloud support team if you have that service enabled if not your marketing folks might have connections with Google to help you out.

Zendesk App - Agent Call Activity

I'm trying to create an app for my Zendesk that I can put into the ticket_sidebar that will show which of my agents are available on the phones.
The information that I need is already in Zendesk under Admin/channels/voice/Call Activity. Ideally, I would like to have a cut down version of the Agent Activity, Last 24hours section so that in the app it will show the Agents who are on phone support and then the status.
There are three status that I would like to use, they are:
Available
Offline
On Call
I have made a start with just getting the app created and doing a simple hello function to great the current users.
I am new to this, and any help or guidance that anyone can provide would be greatly appreciated
After a lot of trial and error I finally got this work.
It refreshes upon clicking on the app, and shows if my agents are available, on a call or offline

Google BigQuery worked for me without billing until Yesterday. Was i just lucky so far?

I have been using Google BigQuery without billing enabled until yesterday for the past 3 weeks (Until Jun 4th Australian Time). But today it gives me error stating "You have to enable Billing".
My Question is :
Was i just got lucky so far? Or something changed recently ?.
I started using Browser tool with public data then i created few tables and it all worked and then started using command line tool yesterday and today it gave me error.
Anybody faced similar issue ?
Google BigQuery is a premium service, and we started billing on June 1, 2012. We sent a reminder about this on our bigquery-announce mailing list (which is the list to subscribe to for announcements about new features) but here is the same information:
The BigQuery API allows up to 100GB/mo of free query processing.
After exceeding the free tier of query processing, your project must be signed up for billing. See our pricing page for more details. This is also required to be able to load data into the system.
If you haven't activated billing on your project, and exceed the free quota, the BigQuery API will return a 403 "billingNotEnabled" error with the message: "Billing has not been enabled for this project."
To enable billing on your project, you must register a credit card with Google Checkout.
For more information, see this link for an overview of the Google API Console. Then see this page for steps to enable billing.
Your first billing statement will arrive at the end of June, 2012.
Thanks,
Michael

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.