I'm using the v6 CampaignManagement API. I'm trying to get my Campaigns using a GetCampaignsByAccountIdRequest.
GetCampaignsByAccountIdRequest campRequest = new GetCampaignsByAccountIdRequest();
campRequest.setAccountId(accountId);
GetCampaignsByAccountIdResponse campResponse = campaignManagement.getCampaignsByAccountId(campRequest);
Campaign[] exist = campResponse.getCampaigns();
this results in the ApiFaultDetail exception (1030) Account Id has to be specified for this operation. I'm using my Customer Account ID as the Account Id. Also, I don't see this error mentioned on the error codes index:
http://msdn.microsoft.com/en-us/library/bb671735.aspx
any idea what might be going wrong?
thanks,
Brent