Skip to main content

Connecting Taboola Ads ad-accounts

O
Written by Ofir Zodik
Updated over 3 months ago

Who can Perform this action?

  • Only users with DB access

Steps for connecting ad accounts to PubPlus:

  1. Receive the following data:

    1. (account id) = 'adi@crunchmind.com'

    2. (sub_account_id) = exactly as the account name appears in the URL

      1. For example:
        ​

        https://ads.taboola.com/campaigns?...%2522%252C%2522accountName%2522%253A%2522crunchmind-spellrockrsoc2-sc%2522%257D&pickerEntity=CAMPAIGN

    3. Account name (name) in this format: '[CM] - CarterFive1 - SC'

    4. Provider_id = 1

    5. Status = 1

    6. Network_id

  2. Run the following query with the data above to insert the new account to 'provider_accounts' table on Minder [prod]

  3. insert into 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, order_line_id)
    values ('adi@crunchmind.com', 'cm-spellrockrsoc2-sc', '[CM] - SpellRockRSOC2 - SC', 1, 0, 1, 280, null, null, null, null, null,null);

Steps for connecting ad account to domain:

  1. After inserting the above data to 'provider_accounts', the row will automatically fill out the column 'id', copy this id (provider_account_id)

  2. Create a new site for the domain on Sudo or use an existing site, copy it's id (site_id)

  3. Run the following query with these 2 id's into 'site_provider_accounts' table on Minder [prod]

  4. insert into site_provider_accounts (site_id, provider_account_id)
    values (3306,1564839)

That's it, The account is connected and all set to start creating campaigns!

Did this answer your question?