本文介绍了用户无权致电AgencyLink Job Add的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用Bing Ads API将我的客户帐户关联到Manager帐户。我收到了用户详细信息(customerid,accountid等)和 下面的行给出了响应,错误代码为1001,表示用户无权调用AgencyLinkJobAdd

I'm trying to link my customer account to Manager account using Bing Ads API. I got the user details (customerid, accountid etc.,) and  below line is giving the response with error code 1001 saying user is not authorized to call AgencyLinkJobAdd

var request = new AddClientLinksRequest
                    {
                        ClientLinks = clientLinks
                    };

                    _customerManagementService = new ServiceClient<ICustomerManagementService>(authorizationData);

                    var addClientLinksResponse = (await _customerManagementService.CallAsync((s, r) => s.AddClientLinksAsync(r), request).ConfigureAwait(continueOnCapturedContext: false));


有人在此帮助我。

谢谢,




推荐答案

根据: 

只有代理商Super Admin才能
链接到客户账户

请仔细检查您的权限。如果一切正常,我建议您与支持小组和/或您的客户经理联系以确认访问权限。 (他们可能需要查看不应在论坛中分享的特定帐户/客户ID。)  ManageClient.cs  示例
也有一些提示。

Please double check your permissions. If everything looks correct then I suggest contacting support and/or your account manager to confirm access. (They may need to see specific account/customer IDs which should not be shared in the forum.) The ManageClient.cs sample also has some tips.

我希望这有帮助,

Eric


这篇关于用户无权致电AgencyLink Job Add的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 08:08