Re: google ads api

2023-07-17 Thread maxcode ITSolutions
Thank you for your response.
Its really helpful.

On Mon, Jul 17, 2023 at 4:38 PM Google Ads API Forum Advisor
 wrote:

> Hi,
>
> Thank you for reaching out to Google Ads API Forum.
>
> Please note *segments.device*
> 
>  has
> a data type of *ENUM*. Can you confirm if this number value is returned
> in the API response while using the client library? If yes, you may check
> on this *device.proto*
> 
>  guide
> describing the devices. As per the guide, *TABLET = 3* and *DESKTOP = 4*.
>
> If you have further clarifications regarding these enum values, I
> recommend reaching out to the respective client library owner by filing an
> issue on the issue tracker on the *Issues* tab of your chosen *client
> library*  on
> the github, so that they can provide guidance regarding these enum values.
>
> This message is in relation to case "ref:_00D1U1174p._5004Q2n8NPx:ref"
>
> Thanks,
>
> [image: Google Logo] Google Ads API Team
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/CACqmN4uxnpx13dGsiuXpfaiqQSxeAY7M8wSE_CfczBnK1JKxNw%40mail.gmail.com.


Google ads api

2023-07-17 Thread maxcode ITSolutions
What does it mean by device=4 or device=3

I am using this query 
"SELECT 
segments.date,segments.device,metrics.cost_micros,metrics.clicks,metrics.impressions
 
FROM campaign WHERE segments.date BETWEEN '2022-07-17' AND '2023-07-17'"

and response is like 
[ {
segments: { date: '2022-09-28', device: 4 },
metrics: { cost_micros: 1290, clicks: 2, impressions: 44 }
  },
  {
segments: { date: '2022-09-29', device: 4 },
metrics: { cost_micros: 1102, clicks: 2, impressions: 34 }
  }]

I am trying to make a graph like device.png attached below.




-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/bb9f5481-b940-4168-a58f-9cb272d6218dn%40googlegroups.com.


Re: Campaigns retrieve status for specific day "2023-05-01"

2023-06-06 Thread maxcode ITSolutions
I am facing the same issue.

On Tuesday, June 6, 2023 at 12:15:24 PM UTC+5:30 Jakub Banik wrote:

> SELECT segments.date, campaign.name, campaign.id, campaign.status FROM 
> campaign WHERE segments.date BETWEEN '2023-04-01' AND '2023-04-01' ORDER BY 
> segments.date, campaign.name
> This query above returns 0. 
>
> SELECT campaign.name, campaign.id, campaign.status FROM campaign WHERE 
> segments.date BETWEEN '2023-04-01' AND '2023-04-01' ORDER BY campaign.name
>
> this query above returns 28 results. 
>
> I have no idea why i could not retrieve it with segments.date. 
> May I ask you for a help? Why it is happening.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/48790cce-039c-4475-a173-1653d8036aaen%40googlegroups.com.


Performance metrix

2023-06-06 Thread maxcode ITSolutions
Hi,

I have two queries to now about
1) I need to get campaigns clicks, cost etc. for today(or a particular 
date) on hourly basis something like the below image performancegraph.png, 
I have attached.

2) How I can I get total cost , total clicks of a campaign between two 
dates?


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/91a2638e-d035-43da-a737-2c589f2f7ad5n%40googlegroups.com.


Performance graph

2023-05-29 Thread maxcode ITSolutions
Hi,

I am trying to create a graph like below image using google ads api

[image: image.png]

How to get data by day, weekly and monthly . I need data like this:
Date Clicks Impressions Avg. CPC Cost
Thu, May 11, 2023 0 0 $0.00 $0.00
Fri, May 12, 2023 0 0 $0.00 $0.00
Sat, May 13, 2023 0 0 $0.00 $0.00
Sun, May 14, 2023 0 0 $0.00 $0.00
Mon, May 15, 2023 0 0 $0.00 $0.00
Tue, May 16, 2023 0 0 $0.00 $0.00
Wed, May 17, 2023 0 0 $0.00 $0.00
Thu, May 18, 2023 0 0 $0.00 $0.00
Fri, May 19, 2023 0 0 $0.00 $0.00
Sat, May 20, 2023 0 0 $0.00 $0.00
Sun, May 21, 2023 0 0 $0.00 $0.00
Mon, May 22, 2023 0 0 $0.00 $0.00
Tue, May 23, 2023 0 0 $0.00 $0.00

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/CACqmN4uzht6tj9iRC-aPJm-Ko0Gtv3en90CXKj5Xyoo9WJ0t7g%40mail.gmail.com.


Re: Request For basic access

2023-05-15 Thread maxcode ITSolutions
here the case Id:
Case ID 8-878534153

On Mon, May 15, 2023 at 2:47 PM maxcode ITSolutions <
maxcodeitsoluti...@gmail.com> wrote:

> Hello ,
>
> I have submitted a form to request basic access for my developer token
> Please let me know about the status. Is it approved for basic access?
>
> *Google Ads manager account (MCC) ID:  *425-717-8984
> Thanks.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/CACqmN4vcDQaemzJWFCJOoZWbLp_fTBFNuywR-36y8z5tbabPxA%40mail.gmail.com.


google ads api query

2023-05-15 Thread maxcode ITSolutions
Hi,

How to create a manager account under a MCC account using google ads api?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/CACqmN4s151eKpiLiL24-MWJx2sx%3DgMjQ0g69jsHMQkLoiEQYBA%40mail.gmail.com.


Request For basic access

2023-05-15 Thread maxcode ITSolutions
Hello ,

I have submitted a form to request basic access for my developer token
Please let me know about the status. Is it approved for basic access?

*Google Ads manager account (MCC) ID:  *425-717-8984
Thanks.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/CACqmN4s%2BULCvGLRi3dP4bNZB-Vv5%2BwnDZ7M6hsDv6nsS%3Dhgb-g%40mail.gmail.com.