May be my question will look dumb but i'm new in using AdWords API hence i got some problems. I'm using Ruby to add campaigns. So i created my MCC account, there I have a client.I'm using SANDBOX. so i create new API object like this:
creds = {
'developerToken' => 'user@domain.com++USD',
'useragent' => 'Sample User Agent',
'password' => 'password',
'email' => 'user@domain.com',
'clientEmail' => 'client_1+user@domain.com',
'applicationToken' => 'IGNORED',
'environment' => 'SANDBOX',
}
@adwords = AdWords::API.new(AdWords::AdWordsCredentials.new(creds))
then i add some campaigns and finally i get an answer that campaign is added BUT i don't understand where i can see it. I have my my MCC account but i don't understand where these campaigns will appear if i use sandbox not production. Can anybody explain me how to test on SANDBOX? Thanx in advance.