Re: How to get active account budget?

2019-11-12 Thread Google Ads API Forum Advisor Prod
Hi Min,

The Active status logic on the Google Ads UI is similar to Ended status. If the 
account_budget.approved_end_date_time has not passed its end date and 
account_budget.approved_spending_limit_micros has not been reached, then the 
account budget is considered Active. Our colleagues have raised a feature 
request for the status of active budget and we will update you on this thread 
once we have more information.

Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5001UJaEqC:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"AdWords API and Google Ads 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/a2uGc0Q0V6D400pOmh2py9RISe1qE9_qcuLg%40sfdc.net.


Re: How to get active account budget?

2019-11-11 Thread min jia
Hi Xiaoming,

Thanks for feeding back to me firstly. That's greate you show me the ended 
logic, and could you please tell me the active status logic of account 
bugdet?

Here's my confusion, there is only one active budget in my backend UI, 
but when I do a QAQL to get account budgets like attachemnt showed:

 WHERE account_budget.approved_end_time_type = 'FOREVER'
 AND account_budget.status = 'APPROVED'


I got two results. And one of them at backend UI was already ended. like 

[image: gg2019.png]


Look forward to hearing from you,

Min

 

在 2019年11月12日星期二 UTC+8上午1:48:47,adsapiforumadvisor写道:
>
> Hi Min,
>
> Thanks for reaching out. Unfortunately, the Google Ads API currently does 
> not support the *Active* or *Ended* as seen from the Google Ads UI. The 
> Google Ads UI has a different logic for their statuses Active and Ended. As 
> an example for Ended status, the API status may be *APPROVED* but the 
> account budget account_budget.approved_end_date_time may have passed its 
> end date or account_budget.approved_spending_limit_micros has been reached, 
> which is why the Google UI status is Ended. Please let me know if you have 
> any further concerns.
>
> Thanks and regards,
> Xiaoming, Google Ads API Team
>
>
> ref:_00D1U1174p._5001UJaEqC:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"AdWords API and Google Ads 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/58d746aa-4fae-4640-9ac5-f29bb40b27c1%40googlegroups.com.


RE: How to get active account budget?

2019-11-11 Thread Google Ads API Forum Advisor Prod
Hi Min,

Thanks for reaching out. Unfortunately, the Google Ads API currently does not 
support the Active or Ended as seen from the Google Ads UI. The Google Ads UI 
has a different logic for their statuses Active and Ended. As an example for 
Ended status, the API status may be APPROVED but the account budget 
account_budget.approved_end_date_time may have passed its end date or 
account_budget.approved_spending_limit_micros has been reached, which is why 
the Google UI status is Ended. Please let me know if you have any further 
concerns.

Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5001UJaEqC:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"AdWords API and Google Ads 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/6R-Ic0Q0TG4R00UVunEki0SQaW7xxRi84QVA%40sfdc.net.


How to get active account budget?

2019-11-10 Thread min jia
Hi Team,

As  google-ads api document showes,   account_budget.status 
 is 
in range of ENUM

 [ 
 APPROVED
CANCELLED
PENDING
UNKNOWN
UNSPECIFIED  ]

And now I want to get the "active one" budget as backend UI showed : 


[image: gg1024.png]

as attachment gg1024.png showed.



How can I do a filter query in QAQL to make it work.


Thansks.





-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"AdWords API and Google Ads 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/cbc8a0d3-2bd9-4ea8-b459-abe48bec7e74%40googlegroups.com.