Who can Perform this action?
Only users with DB access
Steps for connecting ad accounts to PubPlus:
Receive the following data:
Manager account id (account id)
Ad-account id (sub_account_id)
Account name (name)
Provider_id = 91
Status = 1
Network_id
Run the following query with the data above to insert the new account to 'provider_accounts' table on Minder [prod]
insert into minder.provider_accounts (account_id, sub_account_id, name, provider_id, bid_discount, status, network_id, timezone, dsa_payor, dsa_beneficiary, red_track_campaign_id, default_page)
values ('2807707756', '2763639497', 'UrbanAunty2', 91, 0, 1, 84, null, null, null, null, null);
Steps for connecting ad account to domain:
After inserting the above data to 'provider_accounts', the row will automatically fill out the column 'id', copy this id (provider_account_id)
Create a new site for the domain on Sudo or use an existing site, copy it's id (site_id)
Run the following query with these 2 id's into 'site_provider_accounts' table on Minder [prod]
insert into site_provider_accounts (site_id, provider_account_id)
values (3409,1564781)
That's it, The account is connected and all set to start creating campaigns!