I'd like to get a YouTube Reporting Sample Bulk Report - youtube-analytics-api

I'm using YouTube Reporting API.
According to this API's feature, I must wait 2 days to get the result.
So I'd like to know data structures and contents in advance.
I appreciate if anyone has or know sample bulk reports.
Thanks

Related

Difference in data between Google Analytics 4 API and UI

I'm automating the data collection from a Google Analytics 4 property.
However, whenever i'm trying to match the API data with the property data I get slight differences.
For example, when I get these fields (see image below) for february and march. The total sessions from the API data is: 188.213, while the Google Analytics UI shows 189.042.
When I make the API query, really simple, by just pulling the sessions between february and march then I get the 189.042 totally perfect. Why do I get a difference when I add some dimensions?
I hope somebody can explain. Business users need to trust the data, so it must match in my opinion. Thanks for answering in advance!

Pentaho Data Integration - REST Client Step

I'm trying to make a request to an API. I have tested it on Postman, and it's working fine. What a I would like to achieve is make a similar process on Pentaho Data Integration, I guess I should use the REST Cliente step.
I have seen a couple of videos and asked question on forums about this step. I had a running request on other free access API using this step on Pentaho, but now I'm trying to do the same with this new one. Anyone may help to do it?
I attached screenshots about how I have tested it on Postman. Thank's in advanced.enter image description here
From the image you have shared looks like you are trying to do a post.
Either way the below setup could help you achieve that.
You can probably have below approach.
Generate Rows > Rest Client > Table
And with that, you can have API URL and auth info on generate row step, define fields on the REST Client Step and insert the data into a table.

Created System Column Blank In API Call

I am making REST calls against the Reports API endpoint, and pulling that data into a separate application. I am able to pull all of the report columns with its data, with the exception of the Created (System Column), which always returns nothing/null.
To rule out the application being the issue, I used the built in Smartsheet connector in Power BI and am getting the same blank results there.
Are there any known limitation about pulling date system columns out of the API?
It looks like you discovered a bug in the Smartsheet API! Thanks for drawing attention to this. I've submitted a bug report to the dev team at Smartsheet.
Apologies for the inconvenience. What are you trying to accomplish with your application? I might be able to help you come up with a work-around.

Execl VBA: Any tips and/or suggestions for migrating from MSSOAPLib to MSXML2?

I am migrating some spreadsheets from Excel 2003/WinXP to Excel 2010/Win7.
Some spreadsheets use the MS SOAP toolkit to retrieve data. MS drops the support of SOAP toolkit in Excel 2010. I am forced to move to MSXML2 library.
Anyone has done this sort of migration before? Is there any tips, suggestion or best practice?
Honestly, It's been ages since I used SOAP (Either in programming or other wise. I use GEL! LOL)
Ok Jokes apart! You are quite right that the SOAP toolkit is obsolete now. Since SOAP calls to web service are just a POST with some XML, you should be able to do convert it easily.
I would recommend going through this blog by jpsanders.
Topic: How to Send SOAP call using MSXML (replace STK)
Link: http://blogs.msdn.com/b/jpsanders/archive/2007/06/14/how-to-send-soap-call-using-msxml-replace-stk.aspx
Do let me know if you are still stuck. Simply post the code with which you are stuck and we will take it from there.
HTH
Sid

database from spreadsheet online

I'm creating an iPhone app which is going to have an online spreadsheet to download information from, problem is i have no idea how to do this. I'm not sure how many rows there will be, but there will be 6 columns. How do I access information from this spreadsheet?
Links to tutorials would be nice
Your best bet is to make some sort of API call on the server to output the spreadsheet in CSV format, then use a CSV parser on the device once you fetch the data. A Google search turn up several solutions for a parser.