Hi Josh -- I hope you don't mind if I jump into this thread, since I'm having a similar issue which I hope you can help with. I've followed the instructions to set up an AdWords API test account, with the Python client. I'm trying to send requests to the production MCC account, but I can't get past the INCOMPLETE_SIGNUP error. Here are the customer IDs:
Production: 587-024-9783
Here's the request code:
from googleads.adwords import AdWordsClient
import googleads.common
client = AdWordsClient.LoadFromStorage()
campaign_service = client.GetService('CampaignService')
request = campaign_service.mutate()
I know that request wouldn't do anything even if it worked, but it's the minimum necessary code to generate the error. The production account billing information is filled in, so I assume somebody must have agreed to the terms and conditions. I'm pretty sure my googleads.yaml file is set up correctly, with the developer token from the production account and the client_customer_id set to the test account CID, and the other necessary values filled in, but still the INCOMPLETE_SIGNUP error persists. Any guidance?
Thanks very much,
- Steve