Hi Yasar, Thanks for your quick reply.
I could solve the issue based on your advice. Thanks a lot. Best regards, Ryo 2022年12月27日火曜日 19:18:41 UTC+9 adsapi: > Hi Ryo, > > Thanks for reaching out to the Google Ads API Forum. > > The *AuthorizationError.ACTION_NOT_PERMITTED* > <https://developers.google.com/google-ads/api/reference/rpc/v10/AuthorizationErrorEnum.AuthorizationError#action_not_permitted> > > error occurs when the user does not have permission to perform this action > (e.g., ADD, UPDATE, REMOVE) on the resource or call a method. You > encountered said error because you are using the credentials with adequate > access level. You may need to have at least standard *access level* > <https://support.google.com/adwords/answer/1704346> to upload the > enhanced conversion to Google Ads via Google Ads API. > > For your question “*Where should I get the additional permission? In the > Google Ads account, Google Ads account(MCC), OAuth or what...?”*, you may > refer to the steps shown under "How to edit access level" section of *this > guide* > <https://support.google.com/adwords/answer/6372672?hl=en&ref_topic=3121776> > to edit the access level. > > In Google Ads API perspective, as an administrator, you can get the list > of users with access to an account by building a *Google Ads Query > Language* > <https://developers.google.com/google-ads/api/docs/query/overview> > statement to query all the *CustomerUserAccess* > <https://developers.google.com/google-ads/api/reference/rpc/v12/CustomerUserAccess> > > entities associated with a customer ID. Here is a typical query: > > > SELECT > > customer_user_access.user_id, > > customer_user_access.email_address, > > customer_user_access.access_role, > > customer_user_access.access_creation_date_time, > > customer_user_access.inviter_user_email_address > > FROM customer_user_access > > For more information, you may refer to this *page* > <https://developers.google.com/google-ads/api/docs/account-management/managing-users>. > > In addition, you may refer to the sample JSON required to pass in your REST > API request: > > > > { > > "conversionAdjustments": [ > > > > { > > "gclidDateTimePair": { > > object (*GclidDateTimePair* > <https://developers.google.com/google-ads/api/rest/reference/rest/v12/customers/uploadConversionAdjustments#GclidDateTimePair> > ) > > }, > > "adjustmentType": enum (*ConversionAdjustmentType* > <https://developers.google.com/google-ads/api/rest/reference/rest/v12/customers/uploadConversionAdjustments#ConversionAdjustmentType> > ), > > "restatementValue": { > > object (*RestatementValue* > <https://developers.google.com/google-ads/api/rest/reference/rest/v12/customers/uploadConversionAdjustments#RestatementValue> > ) > > }, > > "userIdentifiers": [ > > { > > object (*UserIdentifier* > <https://developers.google.com/google-ads/api/rest/reference/rest/v12/UserIdentifier> > ) > > } > > ], > > "orderId": string, > > "conversionAction": string, > > "adjustmentDateTime": string, > > "userAgent": string > > } > > > > ], "partialFailure": boolean, "validateOnly": boolean} > > > > For more information, you may check this guide > <https://developers.google.com/google-ads/api/rest/reference/rest/v12/customers/uploadConversionAdjustments#ConversionAdjustment> > . > > Regards, > [image: Google Logo] > Yasar > Google Ads API Team > > > ref:_00D1U1174p._5004Q2hNq3J: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 [email protected] To unsubscribe from this group, send email to [email protected] 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/14bb228c-7951-4b2b-baf6-a01b5e29d113n%40googlegroups.com.
