Thanks you bro job
2565-05-11 17:58 GMT+07:00,
adwor...@googlegroups.com
<
adwor...@googlegroups.com>:
> =============================================================================
> Today's topic summary
> =============================================================================
>
> Group:
adwor...@googlegroups.com
> Url:
>
>
https://groups.google.com/forum/?utm_source=digest&utm_medium=email#!forum/adwords-api/topics
>
>
> - Cancel/Stop BatchJob stuck in RUNNING state [1 Update]
>
http://groups.google.com/group/adwords-api/t/737913860e3e2685
> - Difference between tROAS fields [1 Update]
>
http://groups.google.com/group/adwords-api/t/d80e25585240c78e
> - Slow [1 Update]
>
http://groups.google.com/group/adwords-api/t/7ba31fadca49764b
> - Generating refresh token [2 Updates]
>
http://groups.google.com/group/adwords-api/t/236dfc1b0cdfc4c1
> - google-ads-php SDK and OAuth OOB deprecation [2 Updates]
>
http://groups.google.com/group/adwords-api/t/571962836ad32315
> - Negative Keyword Conflict [1 Update]
>
http://groups.google.com/group/adwords-api/t/43e21992f509e9f7
> - Batch Jobs stuck on RUNNING state on GoogleAds API [1 Update]
>
http://groups.google.com/group/adwords-api/t/156092b26f1dd270
> - Is there any APIs to check or complete Advertiser Identity Verification
> [1 Update]
>
http://groups.google.com/group/adwords-api/t/8dd3197e13e7e7b8
> - AssetLinkError.EXCLUDED_PARENT_FIELD_TYPE [1 Update]
>
http://groups.google.com/group/adwords-api/t/3bcb157596a1e717
> - How to update a goals with Python? [1 Update]
>
http://groups.google.com/group/adwords-api/t/c3d6cefa25458ea0
> - A GoogleAds API Call is taking long time time execute when creating a
> custom audience using MutateUserListsResponse in Java [1 Update]
>
http://groups.google.com/group/adwords-api/t/f4be56a23c9585b3
> - Facing Resource limit exceeded error for LABELS_PER_CAMPAIGN limit type
> in Google Ads API [1 Update]
>
http://groups.google.com/group/adwords-api/t/3269bbef9ae8ad
> - What is the exact Google Ads API v9 sunset date? [1 Update]
>
http://groups.google.com/group/adwords-api/t/f35d28298bcab97c
> - How to add images to a search ad group? [2 Updates]
>
http://groups.google.com/group/adwords-api/t/444c3c4abeb83a5
> - customer match [1 Update]
>
http://groups.google.com/group/adwords-api/t/c954be3bc268b8b3
> - Extraction proto fields from Ads results [1 Update]
>
http://groups.google.com/group/adwords-api/t/9d74384b1226d564
> - I'm getting OPERATION_NOT_PERMITTED_FOR_CONTEXT when trying to create a
> campaign budget using Google ads api [1 Update]
>
http://groups.google.com/group/adwords-api/t/6f9b83b43891c545
> - Confused about Ads documentation [1 Update]
>
http://groups.google.com/group/adwords-api/t/a55bb93311f20ad3
> - Immutable AppAdInfo [1 Update]
>
http://groups.google.com/group/adwords-api/t/3a8869df3b297c56
> - Account sync not showing every account [1 Update]
>
http://groups.google.com/group/adwords-api/t/dca0d89ab5271fdc
>
>
> =============================================================================
> Topic: Cancel/Stop BatchJob stuck in RUNNING state
> Url:
http://groups.google.com/group/adwords-api/t/737913860e3e2685
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Lorenzo Scortichini <
l.scor...@doveconviene.com>
> Date: May 11 03:19AM -0700
> Url:
http://groups.google.com/group/adwords-api/msg/360dcd12d7bce
>
> Hello,
> like others, we're facing many BatchJobs stuck in RUNNING state for a long
> time.
> At this point, we're looking for a way to stop/cancel a running Batch.
> Looking up the documentation (especially the Usage flow), I wonder if this
> is possible.
> Tried using BatchJobServiceClient's CancelOperation and DeleteOperation on
> the LongRunningOperation I always receive UNIMPLEMENTED.
>
> TLDR :
> Is there a way to abort a BatchJob running?
> If not after how long are those running batches discarded by the API?
>
> Kind regards
>
> Lorenzo
>
>
>
> =============================================================================
> Topic: Difference between tROAS fields
> Url:
http://groups.google.com/group/adwords-api/t/d80e25585240c78e
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Google Ads API Forum Advisor <
ads...@forumsupport.google>
> Date: May 11 10:08AM
> Url:
http://groups.google.com/group/adwords-api/msg/3604bdc586a43
>
> Hi Stephen,
>
> Thank you for the updates.
>
> We're glad that you were able to find the information related to your
> concern. If you have additional questions regarding the topic being
> discussed in this thread, feel free to send those over to our team and we
> would be happy to assist you further.
>
> Best regards,
>
> Heidi
> Google Ads API Team
> ref:_00D1U1174p._5004Q2aRE8a:ref
>
>
>
> =============================================================================
> Topic: Slow
> Url:
http://groups.google.com/group/adwords-api/t/7ba31fadca49764b
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Kubber <
ku...@crowdsteer.com>
> Date: May 11 03:06AM -0700
> Url:
http://groups.google.com/group/adwords-api/msg/3602693b49292
>
> I'm trying to remove CampaignCriterionOperation using BatchJobService.
>
> It used to work quite quick until last Thursday, but now it's very slow it
> can take 30 minutes before it's done, and the amount of data is the very
> same.
> I see the same issue on uploading CampaignCriteria.
>
> How long should it take to delete let's say 20000 criteria?
>
> I'm using code more less like this:
>
>
> batch_job_service = client.get_service("BatchJobService")
> batch_job_operation = client.get_type("BatchJobOperation")
>
> batch_job = client.get_type("BatchJob")
> client.copy_from(batch_job_operation.create, batch_job)
> response = batch_job_service.mutate_batch_job(
> customer_id=customer_id, operation=batch_job_operation
> )
> resource_name = response.result.resource_name
>
> operations = []
> for cbm in chunk:
> campaign_criterion_operation =
> client.get_type("CampaignCriterionOperation")
> campaign_id = cbm.split(',')[0]
> criterion_id = cbm.split(',')[1]
> campaign_criterion_operation.remove =
> f"customers/{customer_id}/campaignCriteria/{campaign_id}~{criterion_id}"
> mutate_operation = client.get_type("MutateOperation")
> client.copy_from(getattr(mutate_operation,
> "campaign_criterion_operation"), campaign_criterion_operation)
> operations.append(mutate_operation)
>
> batch_job_service.add_batch_job_operations(
> resource_name=resource_name,
> mutate_operations=operations,
> )
> response = batch_job_service.run_batch_job(resource_name=resource_name)
>
>
> for i in range(1, 20):
> time.sleep(10*i)
> if response.done():
> ...
>
> Cheers,
> Jakub
>
>
>
> =============================================================================
> Topic: Generating refresh token
> Url:
http://groups.google.com/group/adwords-api/t/236dfc1b0cdfc4c1
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: Google Ads API Forum Advisor <
ads...@forumsupport.google>
> Date: May 11 05:23AM
> Url:
http://groups.google.com/group/adwords-api/msg/350bf87fc1ddf
>
> Hi Katherine,
>
> Thank you for getting back to us.
>
> Moving forward, kindly note that the document that we provided is indeed the
> guide on generating refresh tokens. That said, could you confirm what is
> your concern or what is not clear in the documentation we gave to you so we
> can further assist you?
>
> Regards,
>
> Carmela
> Google Ads API Team
> ref:_00D1U1174p._5004Q2ar2kA:ref
>
>
> ---------- 2 of 2 ----------
> From: Katherine Martin <kath...@aip.media>
> Date: May 11 02:49AM -0700
> Url:
http://groups.google.com/group/adwords-api/msg/35f3c2fcff5ca
>
> Hi Carmela,
>
> Thank you for that. I understand it references refresh tokens, however I am
>
> struggling to follow it and need additional help. Is there someone from
> support who I can have a call with? On the documentation it says: ' The
> authorization sequence begins when your application redirects a browser to
> a Google URL; the URL includes query parameters that indicate the type of
> access being requested.' I don't understand what the URL is, can I have
> some example code that I can run?
>
> Thanks,
> Katherine
>
> On Wednesday, 11 May 2022 at 06:24:07 UTC+1 adsapi wrote:
>
>
>
>
> =============================================================================
> Topic: google-ads-php SDK and OAuth OOB deprecation
> Url:
http://groups.google.com/group/adwords-api/t/571962836ad32315
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: Google Ads API Forum Advisor <
ads...@forumsupport.google>
> Date: May 11 05:28AM
> Url:
http://groups.google.com/group/adwords-api/msg/350fb7f587101
>
> Hi everyone,
>
> Thank you for raising this concern.
>
> Allow me to reach out to the rest of our API support team to clarify this
> communication and discuss what steps to take to avoid issues. We'll reach
> back to you once we have more details.
>
> Best regards,
>
> Peter Laurence
> Google Ads API Team
> ref:_00D1U1174p._5004Q2aQNr2:ref
>
>
> ---------- 2 of 2 ----------
> From: Matteo Medda <
m.m...@doveconviene.com>
> Date: May 11 02:41AM -0700
> Url:
http://groups.google.com/group/adwords-api/msg/35ecb58bc2e91
>
> Hi Peter,
> thank you very much, we look forward to receiving your feedback.
>
> Regards,
> Matteo
> On Wednesday, 11 May 2022 at 07:28:25 UTC+2 adsapi wrote:
>
>
>
>
> =============================================================================
> Topic: Negative Keyword Conflict
> Url:
http://groups.google.com/group/adwords-api/t/43e21992f509e9f7
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: dasgelbevomEi <
adw-kund...@die-formel.de>
> Date: May 11 02:35AM -0700
> Url:
http://groups.google.com/group/adwords-api/msg/35e7d7ce7c4d0
>
> Hello, I am getting errors for this *legacy script* and I don't get it
> working
>
https://developers.google.com/google-ads/scripts-legacy/docs/solutions/negative-keyword-conflicts
>
> *ad_group_criterion.negative IN (TRUE,FALSE) is not a valid condition.
> Dropping condition from query.*
>
> There had been others in the past with the same problem but unfortunately I
>
> am not allowed to ask, answer or get in contact here
>
https://groups.google.com/g/adwords-scripts/c/KkYfHVmYdb4/m/7uLxpqFWAwAJ
>
> Please help me to get the script back to work because it was very useful.
> THX Sascha
>
>
>
> =============================================================================
> Topic: Batch Jobs stuck on RUNNING state on GoogleAds API
> Url:
http://groups.google.com/group/adwords-api/t/156092b26f1dd270
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Matteo Medda <
m.m...@doveconviene.com>
> Date: May 11 01:53AM -0700
> Url:
http://groups.google.com/group/adwords-api/msg/35c2a7fdaa473
>
> Hi,
> the situation is becoming more and more difficult to manage.
>
> Do you have any news on this problem?
>
> Regards,
> Matteo
>
>
>
> =============================================================================
> Topic: Is there any APIs to check or complete Advertiser Identity
> Verification
> Url:
http://groups.google.com/group/adwords-api/t/8dd3197e13e7e7b8
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Thomas <
tlec...@effilab.com>
> Date: May 11 12:51AM -0700
> Url:
http://groups.google.com/group/adwords-api/msg/358c74c6a053d
>
> Hello!
> is there any news on this? Some way to follow the feature request maybe?
>
> many thanks for the help!
>
> On Friday, July 2, 2021 at 6:41:44 PM UTC+2 adsapi wrote:
>
>
>
>
> =============================================================================
> Topic: AssetLinkError.EXCLUDED_PARENT_FIELD_TYPE
> Url:
http://groups.google.com/group/adwords-api/t/3bcb157596a1e717
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Google Ads API Forum Advisor <
ads...@forumsupport.google>
> Date: May 11 07:44AM
> Url:
http://groups.google.com/group/adwords-api/msg/3586d640d29bf
>
> Hi Mariam,
>
>
> Thank you for reaching out to us.
>
>
> With regards to your concern, I tried to impersonate your query and I got
> the same result. For now, allow me to raise this issue to my team for
> further checking. Rest assured that we will provide updates when they become
> available.
>
> Regards,
>
> Darwin
> Google Ads API Team
> ref:_00D1U1174p._5004Q2ar1LI:ref
>
>
>
> =============================================================================
> Topic: How to update a goals with Python?
> Url:
http://groups.google.com/group/adwords-api/t/c3d6cefa25458ea0
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: "
san...@knorex.com" <
san...@knorex.com>
> Date: May 11 12:32AM -0700
> Url:
http://groups.google.com/group/adwords-api/msg/357bee7031c40
>
> I can create customConversionGoal & attach to campaign.
> How to remove/unlink custom conversion goal from that campaign?
> I tried to clear custom_conversion_goal or set custom_conversion_goal=""
> but it give error:
> Body: null
> Failure message: errors {
> error_code {
> field_mask_error: FIELD_MASK_MISSING
> }
> message: "Cannot use empty field mask in update operation."
> location {
> field_path_elements {
> field_name: "operations"
> index: 0
> }
> }
> }
> request_id: "M13bOYnsJhBglV8OdSMxJg"
>
> On Friday, 11 March 2022 at 18:05:15 UTC+7 adsapi wrote:
>
>
>
>
> =============================================================================
> Topic: A GoogleAds API Call is taking long time time execute when creating a
> custom audience using MutateUserListsResponse in Java
> Url:
http://groups.google.com/group/adwords-api/t/f4be56a23c9585b3
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Google Ads API Forum Advisor <
ads...@forumsupport.google>
> Date: May 11 07:12AM
> Url:
http://groups.google.com/group/adwords-api/msg/356b1c86e8ee6
>
> Hi Danilo,
>
> Thanks for reaching out to the Google Ads API Forum.
>
> For us to investigate further on the observed behavior, could you provide us
> with the complete request and response logs with the request-id generated
> for the uploads via Reply privately to author option?
>
> For the client library, logging can be enabled by navigating to the Client
> libraries > Your client library (select Java) > Logging documentation, which
> you can access from this link.
>
> Regards,
>
> Yasar
> Google Ads API Team
> ref:_00D1U1174p._5004Q2arAUA:ref
>
>
>
> =============================================================================
> Topic: Facing Resource limit exceeded error for LABELS_PER_CAMPAIGN limit
> type in Google Ads API
> Url:
http://groups.google.com/group/adwords-api/t/3269bbef9ae8ad
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Google Ads API Forum Advisor <
ads...@forumsupport.google>
> Date: May 11 07:06AM
> Url:
http://groups.google.com/group/adwords-api/msg/3565bf026737f
>
> Hi,
>
> Thank you for raising this concern to the Google Ads API Forum
>
> With regard to your concern, please refer to my answers below:
>
> (1) "We wanted to know the reason of throwing above error because in our
> case we are passing only single label in the request (mutateCampaignLabels
> operations)... And we also observed that this issue was occurred for
> particular campaign instead of all campaigns and also checked for that
> campaign which causing the above error and found that that campaign does not
> contain any label."
>
> For the LABELS_PER_CAMPAIGN, I am afraid that according to the document that
> provided each campaign can have 50 labels only the same as your
> understanding.
>
> (2)" We also wanted to know the reason why this above error was thrown only
> for the particular campaign instead of all the campaigns. Is there any
> setting provided by Google Ads to apply this LABELS_PER_CAMPAIGN limitation
> on specific campaign?"
>
> It would be helpful to check this in our end by providing the complete logs
> without redacting CID, within the format of the request and response logs
> with request-id and login-customer-id that generated on your end. This
> information will help our team to further investigate why this error
> occurred. For security purposes, you can provide it via Reply privately to
> the author option. If this option is not available, then send it instead on
> this email address
googleadsa...@google.com.
>
> Best regards,
>
> Jinky
> Google Ads API Team
> ref:_00D1U1174p._5004Q2ar69S:ref
>
>
>
> =============================================================================
> Topic: What is the exact Google Ads API v9 sunset date?
> Url:
http://groups.google.com/group/adwords-api/t/f35d28298bcab97c
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: "Ершов Александр" <
elektrik...@gmail.com>
> Date: May 10 11:19PM -0700
> Url:
http://groups.google.com/group/adwords-api/msg/353be8c2f78b9
>
> Hello, Jakeia Sabrina!
>
> The v10 library for PHP which we're using contains a couple of big changes
> - requires PHP 7.4
> - requires Composer v2.0
>
> So before deploying it to production, we need to make sure that our
> websites using the Google Ads API php library is fully functional and work
> without any issues.
> It's a big change and requires time to QA and fix some issues that come
> along the way.
>
> That's why it's important for us to know what "June/July 2022" means -
> closer to 1st of June or the 31st of July.
> Since it's only a couple of weeks before the June, we're assuming the worst
>
> case scenario (1st of June is the deadline),
> but wanted to know from the Google Ads API team.
>
> Best wishes,
> Alexander
>
> On Tuesday, May 10, 2022 at 6:51:39 PM UTC+4 adsapi wrote:
>
>
>
>
> =============================================================================
> Topic: How to add images to a search ad group?
> Url:
http://groups.google.com/group/adwords-api/t/444c3c4abeb83a5
> =============================================================================
>
> ---------- 1 of 2 ----------
> From: Google Ads API Forum Advisor <
ads...@forumsupport.google>
> Date: May 11 01:37AM
> Url:
http://groups.google.com/group/adwords-api/msg/344657e8165b9
>
> Hi Dmitriy,
>
> Thank you for posting your concern.
>
> To further check the issue, could you provide the complete request and
> response logs with request ID and request header generated on your end
> without redacted fields?
>
> You can provide it via Reply privately to author option. If this option is
> not available, then send it instead on this email address
>
googleadsa...@google.com.
>
> Regards,
>
> Ernie John
> Google Ads API Team
> ref:_00D1U1174p._5004Q2aqzGG:ref
>
>
> ---------- 2 of 2 ----------
> From: "
lezhne...@gmail.com" <
lezhne...@gmail.com>
> Date: May 10 10:33PM -0700
> Url:
http://groups.google.com/group/adwords-api/msg/3514451906504
>
> request id: xaUKOsYsF9-tkFeomyp4-w
>
> On Wednesday, 11 May 2022 at 06:37:47 UTC+5 adsapi wrote:
>
>
>
>
> =============================================================================
> Topic: customer match
> Url:
http://groups.google.com/group/adwords-api/t/c954be3bc268b8b3
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Alparslan Kapani <
alparsl...@gmail.com>
> Date: May 10 09:23PM -0700
> Url:
http://groups.google.com/group/adwords-api/msg/34d70467cf1c0
>
> Hi,
>
> We're sending userid's through data layer in GTM. Then upload the User ID's
>
> as csv. But the match rate is around 30% all the time after uploading.
> Doesn't it have to be around 100% since all userid's can match with google
> userid's ? What should we check and careful about low match rate?
>
> Thanks,
>
>
>
> =============================================================================
> Topic: Extraction proto fields from Ads results
> Url:
http://groups.google.com/group/adwords-api/t/9d74384b1226d564
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Google Ads API Forum Advisor <
ads...@forumsupport.google>
> Date: May 11 03:44AM
> Url:
http://groups.google.com/group/adwords-api/msg/34b5967104f7f
>
> Hi Bruce,
>
> Thank you for reaching out to our API support team.
>
> Regarding your concern, could you confirm which client library it is you are
> using? I asked because, for code related concerns I would recommend that you
> reach out instead to the client library owners as they should be better
> equipped in determining whether your current approach indeed works or would
> work as intended.
>
> Let me know which client library you are using so that I may then provide
> the Github issues link for you to reach them.
>
> Best regards,
>
> Peter Laurence
> Google Ads API Team
> ref:_00D1U1174p._5004Q2aqwiC:ref
>
>
>
> =============================================================================
> Topic: I'm getting OPERATION_NOT_PERMITTED_FOR_CONTEXT when trying to create
> a campaign budget using Google ads api
> Url:
http://groups.google.com/group/adwords-api/t/6f9b83b43891c545
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Faith Amao <
amaof...@gmail.com>
> Date: May 10 08:16PM -0700
> Url:
http://groups.google.com/group/adwords-api/msg/349c47a230d4a
>
> Hi
>
> I'm getting an error when trying to create a campaign budget using Google
> Ads REST API
>
> Here is my body request:
> operations: [
> {
> create: {
> type: "SMART_CAMPAIGN",
> name: "bib jjghujjgg",
> amountMicros: 5000000,
> },
> },
> ],
> partialFailure: true,
> validateOnly: true,
> responseContentType: "MUTABLE_RESOURCE",
>
> And my header:
> headers: {
> "content-type": "application/json",
> Authorization: `Bearer ${accessToken}`,
> "developer-token": developerToken,
> "login-customer-id": customerId,
> },
>
> And here is the error:
> "partialFailureError": {
> "code": 3,
> "message": "The operation is not allowed for the given context., at
> operations[0]",
> "details": [
> {
> "@type":
> "
type.googleapis.com/google.ads.googleads.v10.errors.GoogleAdsFailure",
> "errors": [
> {
> "errorCode": {
> "contextError": "OPERATION_NOT_PERMITTED_FOR_CONTEXT"
> },
> "message": "The operation is not allowed for the given context.",
> "location": {
> "fieldPathElements": [
> {
> "fieldName": "operations",
> "index": 0
> }
> ]
> }
> }
> ]
> }
> ]
> }
>
> Thanks for your help,
> Faith.
>
>
>
> =============================================================================
> Topic: Confused about Ads documentation
> Url:
http://groups.google.com/group/adwords-api/t/a55bb93311f20ad3
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Google Ads API Forum Advisor <
ads...@forumsupport.google>
> Date: May 11 03:11AM
> Url:
http://groups.google.com/group/adwords-api/msg/34986ba7b7354
>
> Hi Bruce,
>
> Thank you for posting your concern. Allow me to provide support to your
> concern.
>
> Please see my answer below for each question:
> "1. What does the C# code on the "idea generation" page demonstrate Ideas or
> Historical Metrics (are these the same, conceptually, as AdWords' IDEAS and
> STATS respectively?)?"
> -The provided document and the sample code under it is more focused on
> generating keyword ideas but historical statistics such as search volume
> data are also included to help you determine if you want to use the keywords
> for your campaign. Also, I can confirm that the provided document are the
> same concept with AdWords API IDEAS and STATS.
>
> "2. If it is in fact demonstrating Ideas, how would one adapt it for
> Historical Metrics?"
> -I would suggest referring to this document as it discusses further how to
> manage generating historical metrics.
>
> Regards,
>
> Ernie John
> Google Ads API Team
> ref:_00D1U1174p._5004Q2aqwgB:ref
>
>
>
> =============================================================================
> Topic: Immutable AppAdInfo
> Url:
http://groups.google.com/group/adwords-api/t/3a8869df3b297c56
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Jayden Zangari <
jay...@canva.com>
> Date: May 10 06:22PM -0700
> Url:
http://groups.google.com/group/adwords-api/msg/34392f7186992
>
> Thanks for the response Aryeh,
>
> Directly modifying the AppAd rather than the Ad seems to work. I am now
> able to change headlines using the request you gave.
> On Tuesday, May 10, 2022 at 11:58:53 PM UTC+10 adsapi wrote:
>
>> Aryeh
>> Google Ads API Team
>
>> ref:_00D1U1174p._5004Q2aqs5V:ref
>
> --
> **
> ** <
https://www.canva.com/>Empowering the world to design
> We're hiring,
> apply here <
https://www.canva.com/careers/>! Check out the latest news and
> learnings from our team on the Canva Newsroom
> <
https://www.canva.com/newsroom/news/>.
> <
https://twitter.com/canva>
> <
https://facebook.com/canva> <
https://au.linkedin.com/company/canva>
> <
https://twitter.com/canva> <
https://facebook.com/canva>
> <
https://www.linkedin.com/company/canva>
> <
https://instagram.com/canva>
>
>
>
> =============================================================================
> Topic: Account sync not showing every account
> Url:
http://groups.google.com/group/adwords-api/t/dca0d89ab5271fdc
> =============================================================================
>
> ---------- 1 of 1 ----------
> From: Jean-Sebastien Paul <
j...@psquaredpublishing.com>
> Date: May 10 06:06PM -0700
> Url:
http://groups.google.com/group/adwords-api/msg/342ae7d8f061c
>
> I posted the screenshot but haven't heard back, maybe I didn't post it in
> the right spot?
>
> On Friday, May 6, 2022 at 11:29:38 AM UTC-4 adsapi wrote:
>
>
>
>
>
>
>
> --
> You received this digest because you're subscribed to updates for this
> group. You can change your settings on the group membership page:
>
>
https://groups.google.com/forum/?utm_source=digest&utm_medium=email#!forum/adwords-api/join
> .
> To unsubscribe from this group and stop receiving emails from it send an
> email to
adwords-api...@googlegroups.com.
>
>
--
{[[Rungrot Saibudtdee]]}