From 53e24fbd148896671f32a4ccca24a0ba345227a8 Mon Sep 17 00:00:00 2001 From: Nejc Zdovc Date: Wed, 27 Feb 2019 01:25:09 +0100 Subject: [PATCH] Moves bat-native-confirmations into core * Initial commit * Added SetTimer and OnTimer * Added missing #include for wallet_info data structure * Added catalog issuers data structure * Added OnCatalogIssuersChanged * Added OnTimer * Changed LOG to BLOG due to conflicts with base:: * wip, builds * build w/ all class code * port steps 1-5 * match server regex update * Integration for brave-core * Temporarily use std::cout instead of BLOG due to build issues * Resolve linking issue with IsReadyToShowAds * Only start filling confirmations, retrieving payments and cashing in payments once initialized * Revert "Temporarily use std::cout instead of BLOG due to build issues" This reverts commit 7baad783bdfaaf39bcb55cef037108cf5dedcd84. * Refactor to use callbacks * Improve logging to help diagnose issues * Confirmations fails to initialize when creating a new wallet (#42) * Improve logging to help diagnose issues (#43) * Confirmations fails to initialize when creating a new wallet (#44) * Ads Serve failures should retry (#45) * Resolves initiating profile DCHECK failure (#47) * Improve logging to help diagnose issues (#48) * Fix unit test build errors #53 (#54) * Changes to how unblind and BatchDLEQProof::verify are being called in challenge-bypass-ristretto-ffi * Decouple refill tokens * Decouple redeem token * Decouple payout tokens * Added Ads Serve helper * Decouple security into security helper * Updated static values * Updated BUILD.gn * Refactor ConfirmationsImpl to use decoupled logic * Added string helper * Remove unused HappyHTTP dependency * Add support for _is_production flag to choose between production and staging environments * refactor dependencies * Decoupled unblinded tokens and url request builder for unit tests * Resolve compiler errors and decouple logic in preparation for unit testing * Added unit tests * Fix build for Windows/Linux * Fix linter errors * Confirmations should not be initialized if the wallet is invalid * Removed unecessary boolean logic * Return if wallet info is not ready * Fix build error * Fix header files * Fix unit tests * Remove redundant #include for unblinded_tokens.h * Fixed unit test #include paths * Revert "Remove redundant #include for unblinded_tokens.h" This reverts commit 35f055e82f0a22428c600360a75336351f34458d. * Remove redundant #include for unblinded_tokens.h * Fixed unit test #include paths * Refactor new to unique_ptr for unit tests * Remove logging for unit tests * Resolved lint error * Added README.md * Fixed linter errors * Fix Linux and Windows build errors * Resolve logging issue with wallet info * Add support for VLOG to help reduce noise in logs for INFO * Added ability to retrieve transaction history * Fixed build error and refactored ctime to use base::Time * Redeem tokens when notifications are viewed * Update client when transaction history changes * Reduced maximum persisted unblinded tokens from 100 to 50 Reduced maximum persisted unblinded tokens from 100 to 50 to reduce the chance that the server fails to generate the tokens before the next request. If the server still does not generate the tokens in time we retry after 15 seconds. * Updated Copyright in BUILD.gn * Updated README.md * Revert "Merge pull request #75 from brave-intl/issues/52" This reverts commit fc7de34977c3bb878a8f042cc5e9361858757b43, reversing changes made to 211e7672071c99d85f402908f8afe1d046a31b0d. * Fixed unit tests --- .gitignore | 1 + vendor/bat-native-confirmations/.gitignore | 9 + vendor/bat-native-confirmations/BUILD.gn | 112 + vendor/bat-native-confirmations/LICENSE | 373 + vendor/bat-native-confirmations/README.md | 155 + .../include/bat/confirmations/confirmations.h | 67 + .../bat/confirmations/confirmations_client.h | 30 + .../include/bat/confirmations/export.h | 20 + .../include/bat/confirmations/issuer_info.h | 26 + .../include/bat/confirmations/issuers_info.h | 28 + .../bat/confirmations/notification_info.h | 30 + .../include/bat/confirmations/wallet_info.h | 28 + .../src/ads_serve_helper.cc | 20 + .../src/ads_serve_helper.h | 20 + .../src/bat/confirmations/issuer_info.cc | 20 + .../src/bat/confirmations/issuers_info.cc | 20 + .../bat/confirmations/notification_info.cc | 28 + .../bat/confirmations/transactions_info.cc | 94 + .../src/bat/confirmations/wallet_info.cc | 24 + .../src/confirmations.cc | 21 + .../src/confirmations_impl.cc | 606 + .../src/confirmations_impl.h | 140 + .../src/create_confirmation_request.cc | 113 + .../src/create_confirmation_request.h | 51 + .../src/fetch_payment_token_request.cc | 34 + .../src/fetch_payment_token_request.h | 28 + .../src/get_signed_tokens_request.cc | 37 + .../src/get_signed_tokens_request.h | 30 + vendor/bat-native-confirmations/src/logging.h | 29 + .../src/payout_tokens.cc | 140 + .../src/payout_tokens.h | 53 + .../src/redeem_payment_tokens_request.cc | 131 + .../src/redeem_payment_tokens_request.h | 57 + .../src/redeem_token.cc | 391 + .../src/redeem_token.h | 79 + .../src/refill_tokens.cc | 336 + .../src/refill_tokens.h | 77 + .../src/request_signed_tokens_request.cc | 109 + .../src/request_signed_tokens_request.h | 49 + .../src/security_helper.cc | 114 + .../src/security_helper.h | 39 + .../src/static_values.h | 26 + .../src/string_helper.cc | 26 + .../src/string_helper.h | 21 + .../src/unblinded_tokens.cc | 117 + .../src/unblinded_tokens.h | 53 + .../test/confirmations_client_mock.cc | 54 + .../test/confirmations_client_mock.h | 244 + ...ns_create_confirmation_request_unittest.cc | 169 + ...ns_fetch_payment_token_request_unittest.cc | 76 + ...ions_get_signed_tokens_request_unittest.cc | 81 + ..._redeem_payment_tokens_request_unittest.cc | 179 + ..._request_signed_tokens_request_unittest.cc | 197 + .../confirmations_security_helper_unittest.cc | 139 + .../confirmations_string_helper_unittest.cc | 82 + ...confirmations_unblinded_tokens_unittest.cc | 573 + .../test/data/catalog.json | 79295 ++++++++++++++++ 57 files changed, 85101 insertions(+) create mode 100644 vendor/bat-native-confirmations/.gitignore create mode 100644 vendor/bat-native-confirmations/BUILD.gn create mode 100644 vendor/bat-native-confirmations/LICENSE create mode 100644 vendor/bat-native-confirmations/README.md create mode 100644 vendor/bat-native-confirmations/include/bat/confirmations/confirmations.h create mode 100644 vendor/bat-native-confirmations/include/bat/confirmations/confirmations_client.h create mode 100644 vendor/bat-native-confirmations/include/bat/confirmations/export.h create mode 100644 vendor/bat-native-confirmations/include/bat/confirmations/issuer_info.h create mode 100644 vendor/bat-native-confirmations/include/bat/confirmations/issuers_info.h create mode 100644 vendor/bat-native-confirmations/include/bat/confirmations/notification_info.h create mode 100644 vendor/bat-native-confirmations/include/bat/confirmations/wallet_info.h create mode 100644 vendor/bat-native-confirmations/src/ads_serve_helper.cc create mode 100644 vendor/bat-native-confirmations/src/ads_serve_helper.h create mode 100644 vendor/bat-native-confirmations/src/bat/confirmations/issuer_info.cc create mode 100644 vendor/bat-native-confirmations/src/bat/confirmations/issuers_info.cc create mode 100644 vendor/bat-native-confirmations/src/bat/confirmations/notification_info.cc create mode 100644 vendor/bat-native-confirmations/src/bat/confirmations/transactions_info.cc create mode 100644 vendor/bat-native-confirmations/src/bat/confirmations/wallet_info.cc create mode 100644 vendor/bat-native-confirmations/src/confirmations.cc create mode 100644 vendor/bat-native-confirmations/src/confirmations_impl.cc create mode 100644 vendor/bat-native-confirmations/src/confirmations_impl.h create mode 100644 vendor/bat-native-confirmations/src/create_confirmation_request.cc create mode 100644 vendor/bat-native-confirmations/src/create_confirmation_request.h create mode 100644 vendor/bat-native-confirmations/src/fetch_payment_token_request.cc create mode 100644 vendor/bat-native-confirmations/src/fetch_payment_token_request.h create mode 100644 vendor/bat-native-confirmations/src/get_signed_tokens_request.cc create mode 100644 vendor/bat-native-confirmations/src/get_signed_tokens_request.h create mode 100644 vendor/bat-native-confirmations/src/logging.h create mode 100644 vendor/bat-native-confirmations/src/payout_tokens.cc create mode 100644 vendor/bat-native-confirmations/src/payout_tokens.h create mode 100644 vendor/bat-native-confirmations/src/redeem_payment_tokens_request.cc create mode 100644 vendor/bat-native-confirmations/src/redeem_payment_tokens_request.h create mode 100644 vendor/bat-native-confirmations/src/redeem_token.cc create mode 100644 vendor/bat-native-confirmations/src/redeem_token.h create mode 100644 vendor/bat-native-confirmations/src/refill_tokens.cc create mode 100644 vendor/bat-native-confirmations/src/refill_tokens.h create mode 100644 vendor/bat-native-confirmations/src/request_signed_tokens_request.cc create mode 100644 vendor/bat-native-confirmations/src/request_signed_tokens_request.h create mode 100644 vendor/bat-native-confirmations/src/security_helper.cc create mode 100644 vendor/bat-native-confirmations/src/security_helper.h create mode 100644 vendor/bat-native-confirmations/src/static_values.h create mode 100644 vendor/bat-native-confirmations/src/string_helper.cc create mode 100644 vendor/bat-native-confirmations/src/string_helper.h create mode 100644 vendor/bat-native-confirmations/src/unblinded_tokens.cc create mode 100644 vendor/bat-native-confirmations/src/unblinded_tokens.h create mode 100644 vendor/bat-native-confirmations/test/confirmations_client_mock.cc create mode 100644 vendor/bat-native-confirmations/test/confirmations_client_mock.h create mode 100644 vendor/bat-native-confirmations/test/confirmations_create_confirmation_request_unittest.cc create mode 100644 vendor/bat-native-confirmations/test/confirmations_fetch_payment_token_request_unittest.cc create mode 100644 vendor/bat-native-confirmations/test/confirmations_get_signed_tokens_request_unittest.cc create mode 100644 vendor/bat-native-confirmations/test/confirmations_redeem_payment_tokens_request_unittest.cc create mode 100644 vendor/bat-native-confirmations/test/confirmations_request_signed_tokens_request_unittest.cc create mode 100644 vendor/bat-native-confirmations/test/confirmations_security_helper_unittest.cc create mode 100644 vendor/bat-native-confirmations/test/confirmations_string_helper_unittest.cc create mode 100644 vendor/bat-native-confirmations/test/confirmations_unblinded_tokens_unittest.cc create mode 100644 vendor/bat-native-confirmations/test/data/catalog.json diff --git a/.gitignore b/.gitignore index c9b9951bbee0..8cc018ce958b 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ /out/ /vendor/* !/vendor/bat-native-ledger +!/vendor/bat-native-confirmations !/vendor/CPPLINT.cfg node_modules/ *.xcodeproj diff --git a/vendor/bat-native-confirmations/.gitignore b/vendor/bat-native-confirmations/.gitignore new file mode 100644 index 000000000000..8fe8bc74b517 --- /dev/null +++ b/vendor/bat-native-confirmations/.gitignore @@ -0,0 +1,9 @@ +deps/challenge-bypass-ristretto-ffi +build/* +.vscode/* +.gn +.DS_Store +/target +**/*.rs.bk +Cargo.lock +.gdb_history diff --git a/vendor/bat-native-confirmations/BUILD.gn b/vendor/bat-native-confirmations/BUILD.gn new file mode 100644 index 000000000000..5387e259f5d6 --- /dev/null +++ b/vendor/bat-native-confirmations/BUILD.gn @@ -0,0 +1,112 @@ +# Copyright (c) 2019 The Brave Authors. All rights reserved. +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +import("//brave/vendor/challenge_bypass_ristretto_ffi/config.gni") + +if (is_android) { + import("//build/config/android/rules.gni") +} +if (is_android || defined(is_docker)) { + dep_base = rebase_path("./", "//") +} else { + dep_base = rebase_path("../..", "//") +} + +config("external_config") { + visibility = [ + ":*", + ] + include_dirs = [ "include" ] +} + +config("internal_config") { + visibility = [ + ":*", + "//brave/test:*", + ] + include_dirs = [ "src" ] +} + +source_set("bat-native-confirmations") { + public_configs = [ ":external_config" ] + configs += [ ":internal_config" ] + + visibility = [ + ":*", + rebase_path("bat-native-ledger", dep_base) + ":*", + "//brave/test:*", + ] + + sources = [ + "include/bat/confirmations/confirmations_client.h", + "include/bat/confirmations/export.h", + "include/bat/confirmations/notification_info.h", + "src/bat/confirmations/notification_info.cc", + "src/bat/confirmations/issuer_info.cc", + "include/bat/confirmations/issuer_info.h", + "src/bat/confirmations/issuers_info.cc", + "include/bat/confirmations/issuers_info.h", + "src/bat/confirmations/wallet_info.cc", + "include/bat/confirmations/wallet_info.h", + "src/confirmations.cc", + "include/bat/confirmations/confirmations.h", + "src/refill_tokens.cc", + "src/refill_tokens.h", + "src/request_signed_tokens_request.cc", + "src/request_signed_tokens_request.h", + "src/get_signed_tokens_request.cc", + "src/get_signed_tokens_request.h", + "src/logging.h", + "src/redeem_token.cc", + "src/redeem_token.h", + "src/create_confirmation_request.cc", + "src/create_confirmation_request.h", + "src/fetch_payment_token_request.cc", + "src/fetch_payment_token_request.h", + "src/payout_tokens.cc", + "src/payout_tokens.h", + "src/redeem_payment_tokens_request.cc", + "src/redeem_payment_tokens_request.h", + "src/unblinded_tokens.cc", + "src/unblinded_tokens.h", + "src/ads_serve_helper.cc", + "src/ads_serve_helper.h", + "src/string_helper.cc", + "src/string_helper.h", + "src/security_helper.cc", + "src/security_helper.h", + "src/confirmations_impl.cc", + "src/confirmations_impl.h", + ] + + public_deps = [ + ":challenge_bypass_libs", + ] + + deps = [ + "//base", + "//third_party/boringssl", + "//third_party/re2", + rebase_path("bat-native-ledger:headers", dep_base), + rebase_path("bat-native-tweetnacl:tweetnacl", dep_base), + rebase_path("challenge_bypass_ristretto_ffi", dep_base), + ] +} + +if (is_mac) { + bundle_data("challenge_bypass_libs") { + sources = [ + challenge_bypass_lib_path, + ] + outputs = [ + "{{bundle_contents_dir}}/Libraries/{{source_file_part}}", + ] + public_deps = [ + rebase_path("challenge_bypass_ristretto_ffi:challenge_bypass_ristretto", dep_base), + ] + } +} else { + group("challenge_bypass_libs") {} +} diff --git a/vendor/bat-native-confirmations/LICENSE b/vendor/bat-native-confirmations/LICENSE new file mode 100644 index 000000000000..a612ad9813b0 --- /dev/null +++ b/vendor/bat-native-confirmations/LICENSE @@ -0,0 +1,373 @@ +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. diff --git a/vendor/bat-native-confirmations/README.md b/vendor/bat-native-confirmations/README.md new file mode 100644 index 000000000000..3bf30d5cce8f --- /dev/null +++ b/vendor/bat-native-confirmations/README.md @@ -0,0 +1,155 @@ +# BAT Native Confirmations + +## API + +### Native + +`CreateInstance` should be called to initialize Confirmations +``` +static Confirmations* CreateInstance( + ConfirmationsClient* confirmations_client) +``` + +`SetWalletInfo` should be called by Ledger to set the wallet info +``` +void SetWalletInfo( + const bool is_ready) +``` + +`SetCatalogIssuers` should be called by Ads to set the catalog issuers +``` +void SetCatalogIssuers( + std::unique_ptr info) +``` + +`GetTransactionHistory` should be called to get transaction history +``` +void GetTransactionHistory( + const uint64_t from_timestamp_in_seconds, + const uint64_t to_timestamp_in_seconds, + OnGetTransactionHistoryCallback callback) +``` + +`AdSustained` should be called by Ads to be rewarded for viewing an Ad +``` +void AdSustained( + std::unique_ptr info) +``` + +`OnTimer` should be called when a timer is triggered +``` +void OnTimer( + const uint32_t timer_id) +``` + +### Client + +`SetConfirmationsIsReady` should notify Ads if Confirmations is ready +``` +void SetConfirmationsIsReady( + const bool is_ready) +``` + +`ConfirmationsTransactionHistoryDidChange` should notify Ledger if transaction if the transaction history has changed +``` +void ConfirmationsTransactionHistoryDidChange() +``` + +`SetTimer` should create a timer to trigger after the time offset specified in seconds. If the timer was created successfully a unique identifier should be returned, otherwise returns `0` +``` +uint32_t SetTimer( + uint64_t time_offset, + uint32_t* timer_id) +``` + +`KillTimer` should destroy the timer associated with the specified timer identifier +``` +void KillTimer( + const uint32_t timer_id) +``` + +`LoadURL` should start a URL request +``` +void LoadURL( + const std::string& url, + const std::vector& headers, + const std::string& content, + const std::string& content_type, + const URLRequestMethod method, + URLRequestCallback callback) +``` + +`SaveState` should save a value to persistent storage +``` +void SaveState( + const std::string& name, + const std::string& value, + OnSaveCallback callback) +``` + +`LoadState` should load a value from persistent storage +``` +void LoadState( + const std::string& name, + OnLoadCallback callback) +``` + +`ResetState` should reset a previously saved value, i.e. remove the file from persistent storage +``` +void Reset( + const std::string& name, + OnResetCallback callback) +``` + +`Log` should log diagnostic information to the console +``` +std::unique_ptr Log( + const char* file, + const int line, + const LogLevel log_level) const +``` + +`VerboseLog` should log verbose diagnostic information to the console +``` +std::unique_ptr Log( + const char* file, + const int line, + const int log_level) const +``` + +## Command-line Switches + +Use production Ads Serve as defined by `PRODUCTION_SERVER` in `static_values.h`. Default for Official Builds + +``` +--rewards=staging=false +``` + +Use staging Ads Serve as defined by `STAGING_SERVER` in `static_values.h`. Default for non Office Builds, i.e. Debug + +``` +--rewards=staging=true +``` + +Enable diagnostic logging, where `#` should set to a minimum log level. Valid values are from 0 to 3 where INFO = 0, WARNING = 1, ERROR = 2 and FATAL = 3. So if you want INFO, WARNING and ERROR you would choose 2 + +``` +--enable-logging=stderr --log-level=# +``` + +i.e. to launch using Staging Server and logging for INFO, WARNING and ERROR on macOS open the `Terminal` application and enter the below commands: + +``` +cd /Applications + +cd Brave\ Browser\ Dev.app/ + +cd Contents + +./Brave\ Browser\ Dev --rewards=staging=false --enable-logging=stderr --log-level=2 +``` + +## Unit Tests +``` +npm run test -- brave_unit_tests --filter=Confirmations* +``` diff --git a/vendor/bat-native-confirmations/include/bat/confirmations/confirmations.h b/vendor/bat-native-confirmations/include/bat/confirmations/confirmations.h new file mode 100644 index 000000000000..52520012f048 --- /dev/null +++ b/vendor/bat-native-confirmations/include/bat/confirmations/confirmations.h @@ -0,0 +1,67 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_CONFIRMATIONS_H_ +#define BAT_CONFIRMATIONS_CONFIRMATIONS_H_ + +#include +#include + +#include "bat/confirmations/confirmations_client.h" +#include "bat/confirmations/export.h" +#include "bat/confirmations/notification_info.h" +#include "bat/confirmations/issuers_info.h" +#include "bat/confirmations/wallet_info.h" +#include "bat/ledger/ledger.h" +#include "bat/ledger/transactions_info.h" + +namespace confirmations { + +// Determines whether to use the staging or production Ad Serve +extern bool _is_production; + +extern const char _confirmations_name[]; + +using TransactionInfo = ::ledger::TransactionInfo; +using TransactionsInfo = ::ledger::TransactionsInfo; + +using OnGetTransactionHistoryCallback = + ::ledger::AdsNotificationsHistoryCallback; + +class CONFIRMATIONS_EXPORT Confirmations { + public: + Confirmations() = default; + virtual ~Confirmations() = default; + + static Confirmations* CreateInstance( + ConfirmationsClient* confirmations_client); + + // Should be called to set wallet information for payments + virtual void SetWalletInfo(std::unique_ptr info) = 0; + + // Should be called when a new catalog has been downloaded in Ads + virtual void SetCatalogIssuers(std::unique_ptr info) = 0; + + // Should be called to get transaction history + virtual void GetTransactionHistory( + const uint64_t from_timestamp_in_seconds, + const uint64_t to_timestamp_in_seconds, + OnGetTransactionHistoryCallback callback) = 0; + + // Should be called when an ad is sustained in Ads + virtual void AdSustained(std::unique_ptr info) = 0; + + // Should be called when a timer is triggered + virtual bool OnTimer(const uint32_t timer_id) = 0; + + private: + // Not copyable, not assignable + Confirmations(const Confirmations&) = delete; + Confirmations& operator=(const Confirmations&) = delete; +}; + +} // namespace confirmations + +#endif // BAT_CONFIRMATIONS_CONFIRMATIONS_H_ diff --git a/vendor/bat-native-confirmations/include/bat/confirmations/confirmations_client.h b/vendor/bat-native-confirmations/include/bat/confirmations/confirmations_client.h new file mode 100644 index 000000000000..9f5306e35d55 --- /dev/null +++ b/vendor/bat-native-confirmations/include/bat/confirmations/confirmations_client.h @@ -0,0 +1,30 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_CONFIRMATIONS_CLIENT_H_ +#define BAT_CONFIRMATIONS_CONFIRMATIONS_CLIENT_H_ + +#include "bat/ledger/ledger_client.h" +#include "bat/confirmations/export.h" +#include "bat/confirmations/wallet_info.h" + +namespace confirmations { + +// backwards compat for now +using URLRequestMethod = ::ledger::URL_METHOD; +using Result = ::ledger::Result; +const auto SUCCESS = ::ledger::Result::LEDGER_OK; +const auto FAILED = ::ledger::Result::LEDGER_ERROR; + +using OnSaveCallback = ::ledger::OnSaveCallback; +using OnLoadCallback = ::ledger::OnLoadCallback; +using OnResetCallback = ::ledger::OnResetCallback; +using URLRequestCallback = ::ledger::LoadURLCallback; + +using ConfirmationsClient = ::ledger::LedgerClient; + +} // namespace confirmations + +#endif // BAT_CONFIRMATIONS_CONFIRMATIONS_CLIENT_H_ diff --git a/vendor/bat-native-confirmations/include/bat/confirmations/export.h b/vendor/bat-native-confirmations/include/bat/confirmations/export.h new file mode 100644 index 000000000000..9d84ab9c39d5 --- /dev/null +++ b/vendor/bat-native-confirmations/include/bat/confirmations/export.h @@ -0,0 +1,20 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_EXPORT_H_ +#define BAT_CONFIRMATIONS_EXPORT_H_ + +#if defined(COMPONENT_BUILD) +#if defined(WIN32) +#define CONFIRMATIONS_EXPORT __declspec(dllexport) +#else // defined(WIN32) +#define CONFIRMATIONS_EXPORT __attribute__((visibility("default"))) +#endif + +#else // defined(COMPONENT_BUILD) +#define CONFIRMATIONS_EXPORT +#endif + +#endif // BAT_CONFIRMATIONS_EXPORT_H_ diff --git a/vendor/bat-native-confirmations/include/bat/confirmations/issuer_info.h b/vendor/bat-native-confirmations/include/bat/confirmations/issuer_info.h new file mode 100644 index 000000000000..065258a8ecb2 --- /dev/null +++ b/vendor/bat-native-confirmations/include/bat/confirmations/issuer_info.h @@ -0,0 +1,26 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_ISSUER_INFO_H_ +#define BAT_CONFIRMATIONS_ISSUER_INFO_H_ + +#include + +#include "bat/confirmations/export.h" + +namespace confirmations { + +struct CONFIRMATIONS_EXPORT IssuerInfo { + IssuerInfo(); + IssuerInfo(const IssuerInfo& info); + ~IssuerInfo(); + + std::string name; + std::string public_key; +}; + +} // namespace confirmations + +#endif // BAT_CONFIRMATIONS_ISSUER_INFO_H_ diff --git a/vendor/bat-native-confirmations/include/bat/confirmations/issuers_info.h b/vendor/bat-native-confirmations/include/bat/confirmations/issuers_info.h new file mode 100644 index 000000000000..e1a4b3dde110 --- /dev/null +++ b/vendor/bat-native-confirmations/include/bat/confirmations/issuers_info.h @@ -0,0 +1,28 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_ISSUERS_INFO_H_ +#define BAT_CONFIRMATIONS_ISSUERS_INFO_H_ + +#include +#include + +#include "bat/confirmations/export.h" +#include "bat/confirmations/issuer_info.h" + +namespace confirmations { + +struct CONFIRMATIONS_EXPORT IssuersInfo { + IssuersInfo(); + IssuersInfo(const IssuersInfo& info); + ~IssuersInfo(); + + std::string public_key; + std::vector issuers; +}; + +} // namespace confirmations + +#endif // BAT_CONFIRMATIONS_ISSUERS_INFO_H_ diff --git a/vendor/bat-native-confirmations/include/bat/confirmations/notification_info.h b/vendor/bat-native-confirmations/include/bat/confirmations/notification_info.h new file mode 100644 index 000000000000..7a4e46a75f47 --- /dev/null +++ b/vendor/bat-native-confirmations/include/bat/confirmations/notification_info.h @@ -0,0 +1,30 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_NOTIFICATION_INFO_H_ +#define BAT_CONFIRMATIONS_NOTIFICATION_INFO_H_ + +#include + +#include "bat/confirmations/export.h" + +namespace confirmations { + +struct CONFIRMATIONS_EXPORT NotificationInfo { + NotificationInfo(); + explicit NotificationInfo(const NotificationInfo& info); + ~NotificationInfo(); + + std::string creative_set_id; + std::string category; + std::string advertiser; + std::string text; + std::string url; + std::string uuid; +}; + +} // namespace confirmations + +#endif // BAT_CONFIRMATIONS_NOTIFICATION_INFO_H_ diff --git a/vendor/bat-native-confirmations/include/bat/confirmations/wallet_info.h b/vendor/bat-native-confirmations/include/bat/confirmations/wallet_info.h new file mode 100644 index 000000000000..5437ce4c256b --- /dev/null +++ b/vendor/bat-native-confirmations/include/bat/confirmations/wallet_info.h @@ -0,0 +1,28 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_WALLET_INFO_H_ +#define BAT_CONFIRMATIONS_WALLET_INFO_H_ + +#include + +#include "bat/confirmations/export.h" + +namespace confirmations { + +struct CONFIRMATIONS_EXPORT WalletInfo { + WalletInfo(); + WalletInfo(const WalletInfo& info); + ~WalletInfo(); + + bool IsValid(); + + std::string payment_id; + std::string public_key; +}; + +} // namespace confirmations + +#endif // BAT_CONFIRMATIONS_WALLET_INFO_H_ diff --git a/vendor/bat-native-confirmations/src/ads_serve_helper.cc b/vendor/bat-native-confirmations/src/ads_serve_helper.cc new file mode 100644 index 000000000000..d57aa0b4c660 --- /dev/null +++ b/vendor/bat-native-confirmations/src/ads_serve_helper.cc @@ -0,0 +1,20 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "ads_serve_helper.h" +#include "static_values.h" +#include "bat/confirmations/confirmations.h" + +namespace helper { + +std::string AdsServe::GetURL() { + if (confirmations::_is_production) { + return BAT_ADS_PRODUCTION_SERVER; + } else { + return BAT_ADS_STAGING_SERVER; + } +} + +} // namespace helper diff --git a/vendor/bat-native-confirmations/src/ads_serve_helper.h b/vendor/bat-native-confirmations/src/ads_serve_helper.h new file mode 100644 index 000000000000..1667e0121221 --- /dev/null +++ b/vendor/bat-native-confirmations/src/ads_serve_helper.h @@ -0,0 +1,20 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_ADS_SERVE_HELPER_H_ +#define BAT_CONFIRMATIONS_ADS_SERVE_HELPER_H_ + +#include + +namespace helper { + +class AdsServe { + public: + static std::string GetURL(); +}; + +} // namespace helper + +#endif // BAT_CONFIRMATIONS_ADS_SERVE_HELPER_H_ diff --git a/vendor/bat-native-confirmations/src/bat/confirmations/issuer_info.cc b/vendor/bat-native-confirmations/src/bat/confirmations/issuer_info.cc new file mode 100644 index 000000000000..d5b59aab9576 --- /dev/null +++ b/vendor/bat-native-confirmations/src/bat/confirmations/issuer_info.cc @@ -0,0 +1,20 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "bat/confirmations/issuer_info.h" + +namespace confirmations { + +IssuerInfo::IssuerInfo() : + name(""), + public_key("") {} + +IssuerInfo::IssuerInfo(const IssuerInfo& info) : + name(info.name), + public_key(info.public_key) {} + +IssuerInfo::~IssuerInfo() = default; + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/src/bat/confirmations/issuers_info.cc b/vendor/bat-native-confirmations/src/bat/confirmations/issuers_info.cc new file mode 100644 index 000000000000..e6df842af5fe --- /dev/null +++ b/vendor/bat-native-confirmations/src/bat/confirmations/issuers_info.cc @@ -0,0 +1,20 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "bat/confirmations/issuers_info.h" + +namespace confirmations { + +IssuersInfo::IssuersInfo() : + public_key(""), + issuers({}) {} + +IssuersInfo::IssuersInfo(const IssuersInfo& info) : + public_key(info.public_key), + issuers(info.issuers) {} + +IssuersInfo::~IssuersInfo() = default; + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/src/bat/confirmations/notification_info.cc b/vendor/bat-native-confirmations/src/bat/confirmations/notification_info.cc new file mode 100644 index 000000000000..08d3856ed188 --- /dev/null +++ b/vendor/bat-native-confirmations/src/bat/confirmations/notification_info.cc @@ -0,0 +1,28 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "bat/confirmations/notification_info.h" + +namespace confirmations { + +NotificationInfo::NotificationInfo() : + creative_set_id(""), + category(""), + advertiser(""), + text(""), + url(""), + uuid("") {} + +NotificationInfo::NotificationInfo(const NotificationInfo& info) : + creative_set_id(info.creative_set_id), + category(info.category), + advertiser(info.advertiser), + text(info.text), + url(info.url), + uuid(info.uuid) {} + +NotificationInfo::~NotificationInfo() = default; + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/src/bat/confirmations/transactions_info.cc b/vendor/bat-native-confirmations/src/bat/confirmations/transactions_info.cc new file mode 100644 index 000000000000..b82633e33805 --- /dev/null +++ b/vendor/bat-native-confirmations/src/bat/confirmations/transactions_info.cc @@ -0,0 +1,94 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "bat/ledger/transactions_info.h" + +#include "base/json/json_reader.h" +#include "base/json/json_writer.h" +#include "base/values.h" + +namespace confirmations { + +TransactionsInfo::TransactionsInfo() : + transactions({}) {} + +TransactionsInfo::TransactionsInfo(const TransactionsInfo& info) : + transactions(info.transactions) {} + +TransactionsInfo::~TransactionsInfo() = default; + +const std::string TransactionsInfo::ToJson() const { + base::Value dictionary(base::Value::Type::DICTIONARY); + + base::Value list(base::Value::Type::LIST); + for (const auto& transaction : transactions) { + base::Value transaction_dictionary(base::Value::Type::DICTIONARY); + + transaction_dictionary.SetKey("timestamp_in_seconds", + base::Value(std::to_string(transaction.timestamp_in_seconds))); + + transaction_dictionary.SetKey("estimated_redemption_value", + base::Value(transaction.estimated_redemption_value)); + + list.GetList().push_back(std::move(transaction_dictionary)); + } + + dictionary.SetKey("transactions", base::Value(std::move(list))); + + // Write to JSON + std::string json; + base::JSONWriter::Write(dictionary, &json); + + return json; +} + +bool TransactionsInfo::FromJson( + const std::string& json) { + std::unique_ptr dictionary = + base::DictionaryValue::From(base::JSONReader::Read(json)); + + auto* transactions_value = dictionary->FindKey("transactions"); + if (!transactions_value) { + return false; + } + + std::vector new_transactions; + + base::ListValue transactions_list_value(transactions_value->GetList()); + for (auto& transaction_value : transactions_list_value) { + base::DictionaryValue* transaction_dictionary; + if (!transaction_value.GetAsDictionary(&transaction_dictionary)) { + return false; + } + + TransactionInfo info; + + // Timestamp + auto* timestamp_in_seconds_value = + transaction_dictionary->FindKey("timestamp_in_seconds"); + if (!timestamp_in_seconds_value) { + return false; + } + info.timestamp_in_seconds = + std::stoull(timestamp_in_seconds_value->GetString()); + + // Estimated redemption value + auto* estimated_redemption_value_value = + transaction_dictionary->FindKey("estimated_redemption_value"); + if (!estimated_redemption_value_value) { + return false; + } + info.estimated_redemption_value = + estimated_redemption_value_value->GetDouble(); + + new_transactions.push_back(info); + } + + transactions = new_transactions; + + return true; +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/src/bat/confirmations/wallet_info.cc b/vendor/bat-native-confirmations/src/bat/confirmations/wallet_info.cc new file mode 100644 index 000000000000..720abeb92a59 --- /dev/null +++ b/vendor/bat-native-confirmations/src/bat/confirmations/wallet_info.cc @@ -0,0 +1,24 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "bat/confirmations/wallet_info.h" + +namespace confirmations { + +WalletInfo::WalletInfo() : + payment_id(""), + public_key("") {} + +WalletInfo::WalletInfo(const WalletInfo& info) : + payment_id(info.payment_id), + public_key(info.public_key) {} + +WalletInfo::~WalletInfo() = default; + +bool WalletInfo::IsValid() { + return !payment_id.empty() && !public_key.empty(); +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/src/confirmations.cc b/vendor/bat-native-confirmations/src/confirmations.cc new file mode 100644 index 000000000000..22843c3ba5d0 --- /dev/null +++ b/vendor/bat-native-confirmations/src/confirmations.cc @@ -0,0 +1,21 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "bat/confirmations/confirmations.h" +#include "confirmations_impl.h" + +namespace confirmations { + +bool _is_production = false; + +const char _confirmations_name[] = "confirmations.json"; + +// static +Confirmations* Confirmations::CreateInstance( + ConfirmationsClient* confirmations_client) { + return new ConfirmationsImpl(confirmations_client); +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/src/confirmations_impl.cc b/vendor/bat-native-confirmations/src/confirmations_impl.cc new file mode 100644 index 000000000000..1114ca7fc677 --- /dev/null +++ b/vendor/bat-native-confirmations/src/confirmations_impl.cc @@ -0,0 +1,606 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include + +#include "confirmations_impl.h" +#include "logging.h" +#include "static_values.h" +#include "refill_tokens.h" +#include "redeem_token.h" +#include "payout_tokens.h" +#include "unblinded_tokens.h" + +#include "base/json/json_reader.h" +#include "base/json/json_writer.h" +#include "base/time/time.h" + +#include "third_party/re2/src/re2/re2.h" + +using std::placeholders::_1; +using std::placeholders::_2; + +namespace confirmations { + +ConfirmationsImpl::ConfirmationsImpl( + ConfirmationsClient* confirmations_client) : + is_initialized_(false), + unblinded_tokens_(std::make_unique(this)), + unblinded_payment_tokens_(std::make_unique(this)), + retry_getting_signed_tokens_timer_id_(0), + refill_tokens_(std::make_unique( + this, confirmations_client, unblinded_tokens_.get())), + redeem_token_(std::make_unique(this, confirmations_client, + unblinded_tokens_.get(), unblinded_payment_tokens_.get())), + payout_redeemed_tokens_timer_id_(0), + payout_tokens_(std::make_unique(this, confirmations_client, + unblinded_payment_tokens_.get())), + confirmations_client_(confirmations_client) { + BLOG(INFO) << "Initializing Confirmations"; + + LoadState(); +} + +ConfirmationsImpl::~ConfirmationsImpl() { + BLOG(INFO) << "Deinitializing Confirmations"; + + StopRetryingToGetRefillSignedTokens(); + StopPayingOutRedeemedTokens(); +} + +void ConfirmationsImpl::CheckReady() { + if (is_initialized_) { + return; + } + + if (!wallet_info_.IsValid() || catalog_issuers_.empty()) { + return; + } + + is_initialized_ = true; + BLOG(INFO) << "Successfully initialized"; + + PayoutRedeemedTokens(); + RefillTokensIfNecessary(); +} + +void ConfirmationsImpl::NotifyAdsIfConfirmationsIsReady() { + bool is_ready = unblinded_tokens_->IsEmpty() ? false : true; + confirmations_client_->SetConfirmationsIsReady(is_ready); +} + +std::string ConfirmationsImpl::ToJSON() const { + base::Value dictionary(base::Value::Type::DICTIONARY); + + // Catalog issuers + auto catalog_issuers = + GetCatalogIssuersAsDictionary(public_key_, catalog_issuers_); + dictionary.SetKey("catalog_issuers", base::Value(std::move(catalog_issuers))); + + // Transaction history + auto transaction_history = + GetTransactionHistoryAsDictionary(transaction_history_); + dictionary.SetKey("transaction_history", base::Value( + std::move(transaction_history))); + + // Unblinded tokens + auto unblinded_tokens = unblinded_tokens_->GetTokensAsList(); + dictionary.SetKey("unblinded_tokens", base::Value( + std::move(unblinded_tokens))); + + // Unblinded payment tokens + auto unblinded_payment_tokens = unblinded_payment_tokens_->GetTokensAsList(); + dictionary.SetKey("unblinded_payment_tokens", base::Value( + std::move(unblinded_payment_tokens))); + + // Write to JSON + std::string json; + base::JSONWriter::Write(dictionary, &json); + + return json; +} + +base::Value ConfirmationsImpl::GetCatalogIssuersAsDictionary( + const std::string& public_key, + const std::map& issuers) const { + base::Value dictionary(base::Value::Type::DICTIONARY); + dictionary.SetKey("public_key", base::Value(public_key)); + + base::Value list(base::Value::Type::LIST); + for (const auto& issuer : issuers) { + base::Value issuer_dictionary(base::Value::Type::DICTIONARY); + + issuer_dictionary.SetKey("name", base::Value(issuer.second)); + issuer_dictionary.SetKey("public_key", base::Value(issuer.first)); + + list.GetList().push_back(std::move(issuer_dictionary)); + } + + dictionary.SetKey("issuers", base::Value(std::move(list))); + + return dictionary; +} + +base::Value ConfirmationsImpl::GetTransactionHistoryAsDictionary( + const std::vector& transaction_history) const { + base::Value dictionary(base::Value::Type::DICTIONARY); + + base::Value list(base::Value::Type::LIST); + for (const auto& transaction : transaction_history) { + base::Value transaction_dictionary(base::Value::Type::DICTIONARY); + + transaction_dictionary.SetKey("timestamp_in_seconds", + base::Value(std::to_string(transaction.timestamp_in_seconds))); + + transaction_dictionary.SetKey("estimated_redemption_value", + base::Value(transaction.estimated_redemption_value)); + + list.GetList().push_back(std::move(transaction_dictionary)); + } + + dictionary.SetKey("transactions", base::Value(std::move(list))); + + return dictionary; +} + +bool ConfirmationsImpl::FromJSON(const std::string& json) { + std::unique_ptr dictionary = + base::DictionaryValue::From(base::JSONReader::Read(json)); + + if (!dictionary) { + BLOG(ERROR) << "Failed to parse JSON: " << json; + return false; + } + + // Catalog issuers + auto* catalog_issuers_value = dictionary->FindKey("catalog_issuers"); + if (!catalog_issuers_value) { + return false; + } + + base::DictionaryValue* catalog_issuers_dictionary; + if (!catalog_issuers_value->GetAsDictionary(&catalog_issuers_dictionary)) { + return false; + } + + std::string public_key; + std::map catalog_issuers; + if (!GetCatalogIssuersFromDictionary(catalog_issuers_dictionary, &public_key, + &catalog_issuers)) { + return false; + } + + // Transaction history + auto* transaction_history_value = dictionary->FindKey("transaction_history"); + if (!transaction_history_value) { + return false; + } + + base::DictionaryValue* transaction_history_dictionary; + if (!transaction_history_value->GetAsDictionary( + &transaction_history_dictionary)) { + return false; + } + + std::vector transaction_history; + if (!GetTransactionHistoryFromDictionary(transaction_history_dictionary, + &transaction_history)) { + return false; + } + + transaction_history_ = transaction_history; + + // Unblinded tokens + auto* unblinded_tokens_value = dictionary->FindKey("unblinded_tokens"); + if (!unblinded_tokens_value) { + return false; + } + + base::ListValue unblinded_token_values(unblinded_tokens_value->GetList()); + + // Unblinded payment tokens + auto* unblinded_payment_tokens_value = + dictionary->FindKey("unblinded_payment_tokens"); + if (!unblinded_payment_tokens_value) { + return false; + } + + base::ListValue unblinded_payment_token_values( + unblinded_payment_tokens_value->GetList()); + + // Update state + public_key_ = public_key; + catalog_issuers_ = catalog_issuers; + unblinded_tokens_->SetTokensFromList(unblinded_token_values); + unblinded_payment_tokens_->SetTokensFromList(unblinded_payment_token_values); + + return true; +} + +bool ConfirmationsImpl::GetCatalogIssuersFromDictionary( + base::DictionaryValue* dictionary, + std::string* public_key, + std::map* issuers) const { + DCHECK(dictionary); + DCHECK(public_key); + DCHECK(issuers); + + // Public key + auto* public_key_value = dictionary->FindKey("public_key"); + if (!public_key_value) { + return false; + } + *public_key = public_key_value->GetString(); + + // Issuers + auto* issuers_value = dictionary->FindKey("issuers"); + if (!issuers_value) { + return false; + } + + issuers->clear(); + base::ListValue issuers_list_value(issuers_value->GetList()); + for (auto& issuer_value : issuers_list_value) { + base::DictionaryValue* issuer_dictionary; + if (!issuer_value.GetAsDictionary(&issuer_dictionary)) { + return false; + } + + // Public key + auto* public_key_value = issuer_dictionary->FindKey("public_key"); + if (!public_key_value) { + return false; + } + auto public_key = public_key_value->GetString(); + + // Name + auto* name_value = issuer_dictionary->FindKey("name"); + if (!name_value) { + return false; + } + auto name = name_value->GetString(); + + issuers->insert({public_key, name}); + } + + return true; +} + +bool ConfirmationsImpl::GetTransactionHistoryFromDictionary( + base::DictionaryValue* dictionary, + std::vector* transaction_history) { + DCHECK(dictionary); + DCHECK(transaction_history); + + // Transaction + auto* transactions_value = dictionary->FindKey("transactions"); + if (!transactions_value) { + return false; + } + + transaction_history->clear(); + base::ListValue transactions_list_value(transactions_value->GetList()); + for (auto& transaction_value : transactions_list_value) { + base::DictionaryValue* transaction_dictionary; + if (!transaction_value.GetAsDictionary(&transaction_dictionary)) { + return false; + } + + TransactionInfo info; + + // Timestamp + auto* timestamp_in_seconds_value = + transaction_dictionary->FindKey("timestamp_in_seconds"); + if (!timestamp_in_seconds_value) { + return false; + } + info.timestamp_in_seconds = + std::stoull(timestamp_in_seconds_value->GetString()); + + // Estimated redemption value + auto* estimated_redemption_value_value = + transaction_dictionary->FindKey("estimated_redemption_value"); + if (!estimated_redemption_value_value) { + return false; + } + info.estimated_redemption_value = + estimated_redemption_value_value->GetDouble(); + + transaction_history->push_back(info); + } + + return true; +} + +void ConfirmationsImpl::SaveState() { + BLOG(INFO) << "Saving confirmations state"; + + std::string json = ToJSON(); + auto callback = std::bind(&ConfirmationsImpl::OnStateSaved, this, _1); + confirmations_client_->SaveState(_confirmations_name, json, callback); + + NotifyAdsIfConfirmationsIsReady(); +} + +void ConfirmationsImpl::OnStateSaved(const Result result) { + if (result != SUCCESS) { + BLOG(ERROR) << "Failed to save confirmations state"; + return; + } + + BLOG(INFO) << "Successfully saved confirmations state"; +} + +void ConfirmationsImpl::LoadState() { + BLOG(INFO) << "Loading confirmations state"; + + auto callback = std::bind(&ConfirmationsImpl::OnStateLoaded, this, _1, _2); + confirmations_client_->LoadState(_confirmations_name, callback); +} + +void ConfirmationsImpl::OnStateLoaded( + const Result result, + const std::string& json) { + auto confirmations_json = json; + + if (result != SUCCESS) { + BLOG(ERROR) << "Failed to load confirmations state, resetting to default" + << " values"; + + confirmations_json = ToJSON(); + } + + if (!FromJSON(confirmations_json)) { + BLOG(ERROR) << "Failed to parse confirmations state: " + << confirmations_json; + return; + } + + BLOG(INFO) << "Successfully loaded confirmations state"; + + NotifyAdsIfConfirmationsIsReady(); + + CheckReady(); +} + +void ConfirmationsImpl::ResetState() { + BLOG(INFO) << "Resetting confirmations to default state"; + + auto callback = std::bind(&ConfirmationsImpl::OnStateReset, this, _1); + confirmations_client_->ResetState(_confirmations_name, callback); +} + +void ConfirmationsImpl::OnStateReset(const Result result) { + if (result != SUCCESS) { + BLOG(ERROR) << "Failed to reset confirmations state"; + + return; + } + + BLOG(INFO) << "Successfully reset confirmations state"; +} + +void ConfirmationsImpl::SetWalletInfo(std::unique_ptr info) { + if (info->payment_id.empty() || info->public_key.empty()) { + return; + } + + wallet_info_ = WalletInfo(*info); + + BLOG(INFO) << "SetWalletInfo:"; + BLOG(INFO) << " Payment id: " << wallet_info_.payment_id; + BLOG(INFO) << " Public key: " << wallet_info_.public_key; + + CheckReady(); +} + +void ConfirmationsImpl::SetCatalogIssuers(std::unique_ptr info) { + BLOG(INFO) << "SetCatalogIssuers:"; + BLOG(INFO) << " Public key: " << info->public_key; + BLOG(INFO) << " Issuers:"; + + for (const auto& issuer : info->issuers) { + BLOG(INFO) << " Name: " << issuer.name; + BLOG(INFO) << " Public key: " << issuer.public_key; + } + + public_key_ = info->public_key; + + catalog_issuers_.clear(); + for (const auto& issuer : info->issuers) { + catalog_issuers_.insert({issuer.public_key, issuer.name}); + } + + SaveState(); + + CheckReady(); +} + +std::map ConfirmationsImpl::GetCatalogIssuers() + const { + return catalog_issuers_; +} + +bool ConfirmationsImpl::IsValidPublicKeyForCatalogIssuers( + const std::string& public_key) const { + auto it = catalog_issuers_.find(public_key); + if (it == catalog_issuers_.end()) { + return false; + } + + return true; +} + +void ConfirmationsImpl::GetTransactionHistory( + const uint64_t from_timestamp_in_seconds, + const uint64_t to_timestamp_in_seconds, + OnGetTransactionHistoryCallback callback) { + std::vector transactions(transaction_history_.size()); + + auto it = std::copy_if(transaction_history_.begin(), + transaction_history_.end(), transactions.begin(), + [=](TransactionInfo& info) { + return info.timestamp_in_seconds >= from_timestamp_in_seconds && + info.timestamp_in_seconds <= to_timestamp_in_seconds; + }); + + transactions.resize(std::distance(transactions.begin(), it)); + + auto transactions_info = std::make_unique(); + transactions_info->transactions = transactions; + + callback(std::move(transactions_info)); +} + +double ConfirmationsImpl::GetEstimatedRedemptionValue( + const std::string& public_key) const { + double estimated_redemption_value = 0.0; + + auto it = catalog_issuers_.find(public_key); + if (it != catalog_issuers_.end()) { + auto name = it->second; + if (!re2::RE2::Replace(&name, "BAT", "")) { + BLOG(ERROR) << "Could not estimate redemption value due to catalog" + << " issuer name missing BAT"; + } + + estimated_redemption_value = stod(name); + } + + return estimated_redemption_value; +} + +void ConfirmationsImpl::AppendEstimatedRedemptionValueToTransactionHistory( + double estimated_redemption_value) { + auto now = base::Time::Now(); + auto now_in_seconds = (now - base::Time()).InSeconds(); + + TransactionInfo info; + info.timestamp_in_seconds = now_in_seconds; + info.estimated_redemption_value = estimated_redemption_value; + + transaction_history_.push_back(info); + + confirmations_client_->ConfirmationsTransactionHistoryDidChange(); + + SaveState(); +} + +void ConfirmationsImpl::AdSustained(std::unique_ptr info) { + BLOG(INFO) << "AdSustained:"; + BLOG(INFO) << " creativeSetId: " << info->creative_set_id; + BLOG(INFO) << " category: " << info->category; + BLOG(INFO) << " notificationUrl: " << info->url; + BLOG(INFO) << " notificationText: " << info->text; + BLOG(INFO) << " advertiser: " << info->advertiser; + BLOG(INFO) << " uuid: " << info->uuid; + + redeem_token_->Redeem(info->uuid); +} + +bool ConfirmationsImpl::OnTimer(const uint32_t timer_id) { + BLOG(INFO) << "OnTimer:" << std::endl + << " timer_id: " + << timer_id << std::endl + << " retry_getting_signed_tokens_timer_id_: " + << retry_getting_signed_tokens_timer_id_ << std::endl + << " payout_redeemed_tokens_timer_id_: " + << payout_redeemed_tokens_timer_id_; + + if (timer_id == retry_getting_signed_tokens_timer_id_) { + RetryGettingRefillSignedTokens(); + return true; + } else if (timer_id == payout_redeemed_tokens_timer_id_) { + PayoutRedeemedTokens(); + return true; + } + + return false; +} + +void ConfirmationsImpl::RefillTokensIfNecessary() const { + refill_tokens_->Refill(wallet_info_, public_key_); +} + +void ConfirmationsImpl::StartPayingOutRedeemedTokens( + const uint64_t start_timer_in) { + StopPayingOutRedeemedTokens(); + + confirmations_client_->SetTimer(start_timer_in, + &payout_redeemed_tokens_timer_id_); + if (payout_redeemed_tokens_timer_id_ == 0) { + BLOG(ERROR) + << "Failed to start paying out redeemed tokens due to an invalid timer"; + return; + } + + BLOG(INFO) << "Start paying out redeemed tokens in " << start_timer_in + << " seconds"; +} + +void ConfirmationsImpl::PayoutRedeemedTokens() const { + payout_tokens_->Payout(wallet_info_); +} + +void ConfirmationsImpl::StopPayingOutRedeemedTokens() { + if (!IsPayingOutRedeemedTokens()) { + return; + } + + BLOG(INFO) << "Stopped paying out redeemed tokens"; + + confirmations_client_->KillTimer(payout_redeemed_tokens_timer_id_); + payout_redeemed_tokens_timer_id_ = 0; +} + +bool ConfirmationsImpl::IsPayingOutRedeemedTokens() const { + if (payout_redeemed_tokens_timer_id_ == 0) { + return false; + } + + return true; +} + +void ConfirmationsImpl::StartRetryingToGetRefillSignedTokens( + const uint64_t start_timer_in) { + StopRetryingToGetRefillSignedTokens(); + + confirmations_client_->SetTimer(start_timer_in, + &retry_getting_signed_tokens_timer_id_); + if (retry_getting_signed_tokens_timer_id_ == 0) { + BLOG(ERROR) + << "Failed to start getting signed tokens due to an invalid timer"; + + return; + } + + BLOG(INFO) << "Start getting signed tokens in " << start_timer_in + << " seconds"; +} + +void ConfirmationsImpl::RetryGettingRefillSignedTokens() const { + refill_tokens_->RetryGettingSignedTokens(); +} + +void ConfirmationsImpl::StopRetryingToGetRefillSignedTokens() { + if (!IsRetryingToGetRefillSignedTokens()) { + return; + } + + BLOG(INFO) << "Stopped getting signed tokens"; + + confirmations_client_->KillTimer(retry_getting_signed_tokens_timer_id_); + retry_getting_signed_tokens_timer_id_ = 0; +} + +bool ConfirmationsImpl::IsRetryingToGetRefillSignedTokens() const { + if (retry_getting_signed_tokens_timer_id_ == 0) { + return false; + } + + return true; +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/src/confirmations_impl.h b/vendor/bat-native-confirmations/src/confirmations_impl.h new file mode 100644 index 000000000000..e804f222cf8b --- /dev/null +++ b/vendor/bat-native-confirmations/src/confirmations_impl.h @@ -0,0 +1,140 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_CONFIRMATIONS_IMPL_H_ +#define BAT_CONFIRMATIONS_CONFIRMATIONS_IMPL_H_ + +#include +#include +#include +#include + +#include "bat/confirmations/confirmations.h" +#include "bat/confirmations/confirmations_client.h" +#include "bat/confirmations/notification_info.h" +#include "bat/confirmations/issuers_info.h" + +#include "base/values.h" + +namespace confirmations { + +class UnblindedTokens; +class RefillTokens; +class RedeemToken; +class PayoutTokens; + +class ConfirmationsImpl : public Confirmations { + public: + explicit ConfirmationsImpl(ConfirmationsClient* confirmations_client); + ~ConfirmationsImpl() override; + + // Wallet + void SetWalletInfo(std::unique_ptr info) override; + + // Catalog issuers + void SetCatalogIssuers(std::unique_ptr info) override; + std::map GetCatalogIssuers() const; + bool IsValidPublicKeyForCatalogIssuers(const std::string& public_key) const; + double GetEstimatedRedemptionValue(const std::string& public_key) const; + + // Transaction history + void GetTransactionHistory( + const uint64_t from_timestamp_in_seconds, + const uint64_t to_timestamp_in_seconds, + OnGetTransactionHistoryCallback callback) override; + void AppendEstimatedRedemptionValueToTransactionHistory( + double estimated_redemption_value); + + // Scheduled events + bool OnTimer(const uint32_t timer_id) override; + + // Refill tokens + void RefillTokensIfNecessary() const; + void StartRetryingToGetRefillSignedTokens(const uint64_t start_timer_in); + + // Redeem unblinded tokens + void AdSustained(std::unique_ptr info) override; + + // Payout redeemed tokens + void StartPayingOutRedeemedTokens(const uint64_t start_timer_in); + + // State + void SaveState(); + + private: + bool is_initialized_; + void CheckReady(); + + // Wallet + WalletInfo wallet_info_; + std::string public_key_; + + // Catalog issuers + std::map catalog_issuers_; + + // Transaction history + std::vector transaction_history_; + + // Unblinded tokens + std::unique_ptr unblinded_tokens_; + void NotifyAdsIfConfirmationsIsReady(); + + std::unique_ptr unblinded_payment_tokens_; + + // Refill tokens + uint32_t retry_getting_signed_tokens_timer_id_; + void RetryGettingRefillSignedTokens() const; + void StopRetryingToGetRefillSignedTokens(); + bool IsRetryingToGetRefillSignedTokens() const; + std::unique_ptr refill_tokens_; + + // Redeem unblinded tokens + std::unique_ptr redeem_token_; + + // Payout redeemed tokens + uint32_t payout_redeemed_tokens_timer_id_; + void PayoutRedeemedTokens() const; + void StopPayingOutRedeemedTokens(); + bool IsPayingOutRedeemedTokens() const; + std::unique_ptr payout_tokens_; + + // State + void OnStateSaved(const Result result); + void LoadState(); + void OnStateLoaded(const Result result, const std::string& json); + void ResetState(); + void OnStateReset(const Result result); + + std::string ToJSON() const; + + base::Value GetCatalogIssuersAsDictionary( + const std::string& public_key, + const std::map& issuers) const; + + base::Value GetTransactionHistoryAsDictionary( + const std::vector& transaction_history) const; + + bool FromJSON(const std::string& json); + + bool GetCatalogIssuersFromDictionary( + base::DictionaryValue* dictionary, + std::string* public_key, + std::map* issuers) const; + + bool GetTransactionHistoryFromDictionary( + base::DictionaryValue* dictionary, + std::vector* transaction_history); + + // Confirmations::Client + ConfirmationsClient* confirmations_client_; // NOT OWNED + + // Not copyable, not assignable + ConfirmationsImpl(const ConfirmationsImpl&) = delete; + ConfirmationsImpl& operator=(const ConfirmationsImpl&) = delete; +}; + +} // namespace confirmations + +#endif // BAT_CONFIRMATIONS_CONFIRMATIONS_IMPL_H_ diff --git a/vendor/bat-native-confirmations/src/create_confirmation_request.cc b/vendor/bat-native-confirmations/src/create_confirmation_request.cc new file mode 100644 index 000000000000..4161b1dad72b --- /dev/null +++ b/vendor/bat-native-confirmations/src/create_confirmation_request.cc @@ -0,0 +1,113 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "create_confirmation_request.h" +#include "ads_serve_helper.h" +#include "security_helper.h" + +#include "base/logging.h" +#include "base/json/json_writer.h" +#include "base/values.h" + +namespace confirmations { + +CreateConfirmationRequest::CreateConfirmationRequest() = default; + +CreateConfirmationRequest::~CreateConfirmationRequest() = default; + +// POST /v1/confirmation/{confirmation_id}/{credential} + +std::string CreateConfirmationRequest::BuildUrl( + const std::string& confirmation_id, + const std::string& credential) const { + DCHECK(!confirmation_id.empty()); + DCHECK(!credential.empty()); + + std::string endpoint = "/v1/confirmation/"; + endpoint += confirmation_id; + endpoint += "/"; + endpoint += credential; + + return helper::AdsServe::GetURL().append(endpoint); +} + +URLRequestMethod CreateConfirmationRequest::GetMethod() const { + return URLRequestMethod::POST; +} + +std::string CreateConfirmationRequest::BuildBody( + const std::string& payload) const { + DCHECK(!payload.empty()); + + return payload; +} + +std::vector CreateConfirmationRequest::BuildHeaders() const { + std::string accept_header = "accept: "; + accept_header += GetAcceptHeaderValue(); + + return { + accept_header + }; +} + +std::string CreateConfirmationRequest::GetAcceptHeaderValue() const { + return "application/json"; +} + +std::string CreateConfirmationRequest::GetContentType() const { + return "application/json"; +} + +std::string CreateConfirmationRequest::CreateConfirmationRequestDTO( + const std::string& creative_instance_id, + const BlindedToken& token) const { + DCHECK(!creative_instance_id.empty()); + + base::Value payload(base::Value::Type::DICTIONARY); + + payload.SetKey("creativeInstanceId", base::Value(creative_instance_id)); + + payload.SetKey("payload", base::Value(base::Value::Type::DICTIONARY)); + + auto token_base64 = token.encode_base64(); + payload.SetKey("blindedPaymentToken", base::Value(token_base64)); + + payload.SetKey("type", base::Value("view")); + + std::string json; + base::JSONWriter::Write(payload, &json); + + return json; +} + +std::string CreateConfirmationRequest::CreateCredential( + const UnblindedToken& token, + const std::string& payload) const { + DCHECK(!payload.empty()); + + base::Value dictionary(base::Value::Type::DICTIONARY); + + dictionary.SetKey("payload", base::Value(payload)); + + auto verification_key = token.derive_verification_key(); + auto signed_verification_key = verification_key.sign(payload); + auto signed_verification_key_base64 = signed_verification_key.encode_base64(); + dictionary.SetKey("signature", base::Value(signed_verification_key_base64)); + + auto preimage = token.preimage(); + auto preimage_base64 = preimage.encode_base64(); + dictionary.SetKey("t", base::Value(preimage_base64)); + + std::string json; + base::JSONWriter::Write(dictionary, &json); + + std::vector credential(json.begin(), json.end()); + std::string credential_base64 = helper::Security::GetBase64(credential); + + return credential_base64; +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/src/create_confirmation_request.h b/vendor/bat-native-confirmations/src/create_confirmation_request.h new file mode 100644 index 000000000000..a62f03563bca --- /dev/null +++ b/vendor/bat-native-confirmations/src/create_confirmation_request.h @@ -0,0 +1,51 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_CREATE_CONFIRMATION_REQUEST_H_ +#define BAT_CONFIRMATIONS_CREATE_CONFIRMATION_REQUEST_H_ + +#include +#include + +#include "bat/confirmations/confirmations_client.h" + +#include "wrapper.hpp" + +using challenge_bypass_ristretto::BlindedToken; +using challenge_bypass_ristretto::UnblindedToken; + +namespace confirmations { + +class CreateConfirmationRequest { + public: + CreateConfirmationRequest(); + ~CreateConfirmationRequest(); + + std::string BuildUrl( + const std::string& confirmation_id, + const std::string& credential) const; + + URLRequestMethod GetMethod() const; + + std::string BuildBody( + const std::string& payload) const; + + std::vector BuildHeaders() const; + std::string GetAcceptHeaderValue() const; + + std::string GetContentType() const; + + std::string CreateConfirmationRequestDTO( + const std::string& creative_instance_id, + const BlindedToken& token) const; + + std::string CreateCredential( + const UnblindedToken& token, + const std::string& payload) const; +}; + +} // namespace confirmations + +#endif // BAT_CONFIRMATIONS_CREATE_CONFIRMATION_REQUEST_H_ diff --git a/vendor/bat-native-confirmations/src/fetch_payment_token_request.cc b/vendor/bat-native-confirmations/src/fetch_payment_token_request.cc new file mode 100644 index 000000000000..ca357b0d5cb4 --- /dev/null +++ b/vendor/bat-native-confirmations/src/fetch_payment_token_request.cc @@ -0,0 +1,34 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "fetch_payment_token_request.h" +#include "ads_serve_helper.h" + +#include "base/logging.h" + +namespace confirmations { + +FetchPaymentTokenRequest::FetchPaymentTokenRequest() = default; + +FetchPaymentTokenRequest::~FetchPaymentTokenRequest() = default; + +// GET /v1/confirmation/{confirmation_id}/paymentToken + +std::string FetchPaymentTokenRequest::BuildUrl( + const std::string& confirmation_id) const { + DCHECK(!confirmation_id.empty()); + + std::string endpoint = "/v1/confirmation/"; + endpoint += confirmation_id; + endpoint += "/paymentToken"; + + return helper::AdsServe::GetURL().append(endpoint); +} + +URLRequestMethod FetchPaymentTokenRequest::GetMethod() const { + return URLRequestMethod::GET; +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/src/fetch_payment_token_request.h b/vendor/bat-native-confirmations/src/fetch_payment_token_request.h new file mode 100644 index 000000000000..17a2a5b0e79a --- /dev/null +++ b/vendor/bat-native-confirmations/src/fetch_payment_token_request.h @@ -0,0 +1,28 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_FETCH_PAYMENT_TOKEN_REQUEST_H_ +#define BAT_CONFIRMATIONS_FETCH_PAYMENT_TOKEN_REQUEST_H_ + +#include + +#include "bat/confirmations/confirmations_client.h" + +namespace confirmations { + +class FetchPaymentTokenRequest { + public: + FetchPaymentTokenRequest(); + ~FetchPaymentTokenRequest(); + + std::string BuildUrl( + const std::string& confirmation_id) const; + + URLRequestMethod GetMethod() const; +}; + +} // namespace confirmations + +#endif // BAT_CONFIRMATIONS_FETCH_PAYMENT_TOKEN_REQUEST_H_ diff --git a/vendor/bat-native-confirmations/src/get_signed_tokens_request.cc b/vendor/bat-native-confirmations/src/get_signed_tokens_request.cc new file mode 100644 index 000000000000..7ee223bace79 --- /dev/null +++ b/vendor/bat-native-confirmations/src/get_signed_tokens_request.cc @@ -0,0 +1,37 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "get_signed_tokens_request.h" +#include "ads_serve_helper.h" + +#include "base/logging.h" + +namespace confirmations { + +GetSignedTokensRequest::GetSignedTokensRequest() = default; + +GetSignedTokensRequest::~GetSignedTokensRequest() = default; + +// GET /v1/confirmation/token/{payment_id}?nonce={nonce} + +std::string GetSignedTokensRequest::BuildUrl( + const WalletInfo& wallet_info, + const std::string& nonce) const { + DCHECK(!wallet_info.payment_id.empty()); + DCHECK(!nonce.empty()); + + std::string endpoint = "/v1/confirmation/token/"; + endpoint += wallet_info.payment_id; + endpoint += "?nonce="; + endpoint += nonce; + + return helper::AdsServe::GetURL().append(endpoint); +} + +URLRequestMethod GetSignedTokensRequest::GetMethod() const { + return URLRequestMethod::GET; +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/src/get_signed_tokens_request.h b/vendor/bat-native-confirmations/src/get_signed_tokens_request.h new file mode 100644 index 000000000000..cfb8e7094d22 --- /dev/null +++ b/vendor/bat-native-confirmations/src/get_signed_tokens_request.h @@ -0,0 +1,30 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_GET_SIGNED_TOKENS_REQUEST_H_ +#define BAT_CONFIRMATIONS_GET_SIGNED_TOKENS_REQUEST_H_ + +#include + +#include "bat/confirmations/confirmations_client.h" +#include "bat/confirmations/wallet_info.h" + +namespace confirmations { + +class GetSignedTokensRequest { + public: + GetSignedTokensRequest(); + ~GetSignedTokensRequest(); + + std::string BuildUrl( + const WalletInfo& wallet_info, + const std::string& nonce) const; + + URLRequestMethod GetMethod() const; +}; + +} // namespace confirmations + +#endif // BAT_CONFIRMATIONS_GET_SIGNED_TOKENS_REQUEST_H_ diff --git a/vendor/bat-native-confirmations/src/logging.h b/vendor/bat-native-confirmations/src/logging.h new file mode 100644 index 000000000000..8baeb0c93d68 --- /dev/null +++ b/vendor/bat-native-confirmations/src/logging.h @@ -0,0 +1,29 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_LOGGING_H_ +#define BAT_CONFIRMATIONS_LOGGING_H_ + +#include "bat/confirmations/confirmations_client.h" + +#define CONFIRMATIONS_LOG_INFO \ + confirmations_client_->Log( \ + __FILE__, __LINE__, ::ledger::LogLevel::LOG_INFO) + +#define CONFIRMATIONS_LOG_WARNING \ + confirmations_client_->Log( \ + __FILE__, __LINE__, ::ledger::LogLevel::LOG_WARNING) + +#define CONFIRMATIONS_LOG_ERROR \ + confirmations_client_->Log( \ + __FILE__, __LINE__, ::ledger::LogLevel::LOG_ERROR) + +#define BLOG(severity) CONFIRMATIONS_LOG_ ## severity->stream() + +#if defined(ERROR) +#define LOG_0 CONFIRMATIONS_LOG_ERROR +#endif + +#endif // BAT_CONFIRMATIONS_LOGGING_H_ diff --git a/vendor/bat-native-confirmations/src/payout_tokens.cc b/vendor/bat-native-confirmations/src/payout_tokens.cc new file mode 100644 index 000000000000..ad8fb7b55e85 --- /dev/null +++ b/vendor/bat-native-confirmations/src/payout_tokens.cc @@ -0,0 +1,140 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "payout_tokens.h" +#include "static_values.h" +#include "logging.h" +#include "confirmations_impl.h" +#include "unblinded_tokens.h" +#include "redeem_payment_tokens_request.h" + +#include "base/rand_util.h" + +using std::placeholders::_1; +using std::placeholders::_2; +using std::placeholders::_3; + +namespace confirmations { + +PayoutTokens::PayoutTokens( + ConfirmationsImpl* confirmations, + ConfirmationsClient* confirmations_client, + UnblindedTokens* unblinded_payment_tokens) : + confirmations_(confirmations), + confirmations_client_(confirmations_client), + unblinded_payment_tokens_(unblinded_payment_tokens) { + BLOG(INFO) << "Initializing payout tokens"; +} + +PayoutTokens::~PayoutTokens() { + BLOG(INFO) << "Deinitializing payout tokens"; +} + +void PayoutTokens::Payout(const WalletInfo& wallet_info) { + DCHECK(!wallet_info.payment_id.empty()); + DCHECK(!wallet_info.public_key.empty()); + + BLOG(INFO) << "Payout"; + + wallet_info_ = WalletInfo(wallet_info); + + RedeemPaymentTokens(); +} + +/////////////////////////////////////////////////////////////////////////////// + +void PayoutTokens::RedeemPaymentTokens() { + BLOG(INFO) << "RedeemPaymentTokens"; + + if (unblinded_payment_tokens_->IsEmpty()) { + BLOG(INFO) << "No unblinded payment tokens to redeem"; + ScheduleNextPayout(); + return; + } + + BLOG(INFO) << "PUT /v1/confirmation/payment/{payment_id}"; + RedeemPaymentTokensRequest request; + + auto tokens = unblinded_payment_tokens_->GetAllTokens(); + + auto payload = request.CreatePayload(wallet_info_); + + BLOG(INFO) << "URL Request:"; + + auto url = request.BuildUrl(wallet_info_); + BLOG(INFO) << " URL: " << url; + + auto method = request.GetMethod(); + + auto body = request.BuildBody(tokens, payload, wallet_info_); + BLOG(INFO) << " Body: " << body; + + auto headers = request.BuildHeaders(); + BLOG(INFO) << " Headers:"; + for (const auto& header : headers) { + BLOG(INFO) << " " << header; + } + + auto content_type = request.GetContentType(); + BLOG(INFO) << " Content_type: " << content_type; + + auto callback = std::bind(&PayoutTokens::OnRedeemPaymentTokens, + this, url, _1, _2, _3); + + confirmations_client_->LoadURL(url, headers, body, content_type, method, + callback); +} + +void PayoutTokens::OnRedeemPaymentTokens( + const std::string& url, + const int response_status_code, + const std::string& response, + const std::map& headers) { + BLOG(INFO) << "OnRedeemPaymentTokens"; + + BLOG(INFO) << "URL Request Response:"; + BLOG(INFO) << " URL: " << url; + BLOG(INFO) << " Response Status Code: " << response_status_code; + BLOG(INFO) << " Response: " << response; + BLOG(INFO) << " Headers:"; + for (const auto& header : headers) { + BLOG(INFO) << " " << header.first << ": " << header.second; + } + + if (response_status_code != 200) { + BLOG(ERROR) << "Failed to redeem payment tokens"; + OnPayout(FAILED); + return; + } + + OnPayout(SUCCESS); +} + +void PayoutTokens::OnPayout(const Result result) { + if (result != SUCCESS) { + BLOG(ERROR) << "Failed to payout tokens"; + } else { + unblinded_payment_tokens_->RemoveAllTokens(); + + BLOG(INFO) << "Successfully paid out tokens"; + } + + ScheduleNextPayout(); +} + +void PayoutTokens::ScheduleNextPayout() const { + auto start_timer_in = CalculateTimerForNextPayout(); + confirmations_->StartPayingOutRedeemedTokens(start_timer_in); +} + +uint64_t PayoutTokens::CalculateTimerForNextPayout() const { + auto start_timer_in = kPayoutAfterSeconds; + auto rand_delay = base::RandInt(0, start_timer_in / 10); + start_timer_in += rand_delay; + + return start_timer_in; +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/src/payout_tokens.h b/vendor/bat-native-confirmations/src/payout_tokens.h new file mode 100644 index 000000000000..b76841f8dc1c --- /dev/null +++ b/vendor/bat-native-confirmations/src/payout_tokens.h @@ -0,0 +1,53 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_PAYOUT_TOKENS_H_ +#define BAT_CONFIRMATIONS_PAYOUT_TOKENS_H_ + +#include +#include + +#include "bat/confirmations/confirmations_client.h" +#include "bat/confirmations/wallet_info.h" + +namespace confirmations { + +class ConfirmationsImpl; +class UnblindedTokens; + +class PayoutTokens { + public: + PayoutTokens( + ConfirmationsImpl* confirmations, + ConfirmationsClient* confirmations_client, + UnblindedTokens* unblinded_payment_tokens); + + ~PayoutTokens(); + + void Payout(const WalletInfo& wallet_info); + + private: + WalletInfo wallet_info_; + + void RedeemPaymentTokens(); + void OnRedeemPaymentTokens( + const std::string& url, + const int response_status_code, + const std::string& response, + const std::map& headers); + + void OnPayout(const Result result); + + void ScheduleNextPayout() const; + uint64_t CalculateTimerForNextPayout() const; + + ConfirmationsImpl* confirmations_; // NOT OWNED + ConfirmationsClient* confirmations_client_; // NOT OWNED + UnblindedTokens* unblinded_payment_tokens_; // NOT OWNED +}; + +} // namespace confirmations + +#endif // BAT_CONFIRMATIONS_PAYOUT_TOKENS_H_ diff --git a/vendor/bat-native-confirmations/src/redeem_payment_tokens_request.cc b/vendor/bat-native-confirmations/src/redeem_payment_tokens_request.cc new file mode 100644 index 000000000000..7a05698c8bfb --- /dev/null +++ b/vendor/bat-native-confirmations/src/redeem_payment_tokens_request.cc @@ -0,0 +1,131 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include + +#include "redeem_payment_tokens_request.h" +#include "ads_serve_helper.h" + +#include "base/logging.h" +#include "base/json/json_writer.h" + +namespace confirmations { + +RedeemPaymentTokensRequest::RedeemPaymentTokensRequest() = default; + +RedeemPaymentTokensRequest::~RedeemPaymentTokensRequest() = default; + +// PUT /v1/confirmation/payment/{payment_id} + +std::string RedeemPaymentTokensRequest::BuildUrl( + const WalletInfo& wallet_info) const { + DCHECK(!wallet_info.payment_id.empty()); + + std::string endpoint = "/v1/confirmation/payment/"; + endpoint += wallet_info.payment_id; + + return helper::AdsServe::GetURL().append(endpoint); +} + +URLRequestMethod RedeemPaymentTokensRequest::GetMethod() const { + return URLRequestMethod::PUT; +} + +std::string RedeemPaymentTokensRequest::BuildBody( + const std::vector& tokens, + const std::string& payload, + const WalletInfo& wallet_info) const { + DCHECK(!payload.empty()); + + base::Value dictionary(base::Value::Type::DICTIONARY); + + auto payment_request_dto = CreatePaymentRequestDTO(tokens, payload, + wallet_info); + + dictionary.SetKey("paymentCredentials", std::move(payment_request_dto)); + + dictionary.SetKey("payload", base::Value(payload)); + + std::string json; + base::JSONWriter::Write(dictionary, &json); + + return json; +} + +std::string RedeemPaymentTokensRequest::CreatePayload( + const WalletInfo& wallet_info) const { + DCHECK(!wallet_info.payment_id.empty()); + + base::Value payload(base::Value::Type::DICTIONARY); + payload.SetKey("paymentId", base::Value(wallet_info.payment_id)); + + std::string json; + base::JSONWriter::Write(payload, &json); + + return json; +} + +std::vector RedeemPaymentTokensRequest::BuildHeaders() const { + std::string accept_header = "accept: "; + accept_header += GetAcceptHeaderValue(); + + return { + accept_header + }; +} + +std::string RedeemPaymentTokensRequest::GetAcceptHeaderValue() const { + return "application/json"; +} + +std::string RedeemPaymentTokensRequest::GetContentType() const { + return "application/json"; +} + +/////////////////////////////////////////////////////////////////////////////// + +base::Value RedeemPaymentTokensRequest::CreatePaymentRequestDTO( + const std::vector& tokens, + const std::string& payload, + const WalletInfo& wallet_info) const { + DCHECK_NE(tokens.size(), 0UL); + DCHECK(!wallet_info.public_key.empty()); + + base::Value payment_credentials(base::Value::Type::LIST); + + for (const auto& token : tokens) { + base::Value payment_credential(base::Value::Type::DICTIONARY); + + auto credential = CreateCredential(token, payload); + payment_credential.SetKey("credential", base::Value(std::move(credential))); + + payment_credential.SetKey("publicKey", base::Value(wallet_info.public_key)); + + payment_credentials.GetList().push_back(std::move(payment_credential)); + } + + return payment_credentials; +} + +base::Value RedeemPaymentTokensRequest::CreateCredential( + const UnblindedToken& token, + const std::string& payload) const { + DCHECK(!payload.empty()); + + base::Value credential(base::Value::Type::DICTIONARY); + + auto verification_key = token.derive_verification_key(); + auto signed_verification_key = verification_key.sign(payload); + auto signed_verification_key_base64 = signed_verification_key.encode_base64(); + credential.SetKey("signature", base::Value(signed_verification_key_base64)); + + auto preimage = token.preimage(); + auto preimage_base64 = preimage.encode_base64(); + credential.SetKey("t", base::Value(preimage_base64)); + + return credential; +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/src/redeem_payment_tokens_request.h b/vendor/bat-native-confirmations/src/redeem_payment_tokens_request.h new file mode 100644 index 000000000000..66d4b78418b4 --- /dev/null +++ b/vendor/bat-native-confirmations/src/redeem_payment_tokens_request.h @@ -0,0 +1,57 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_REDEEM_PAYMENT_TOKENS_REQUEST_H_ +#define BAT_CONFIRMATIONS_REDEEM_PAYMENT_TOKENS_REQUEST_H_ + +#include +#include + +#include "bat/confirmations/confirmations_client.h" +#include "bat/confirmations/wallet_info.h" + +#include "base/values.h" + +#include "wrapper.hpp" + +using challenge_bypass_ristretto::UnblindedToken; + +namespace confirmations { + +class RedeemPaymentTokensRequest { + public: + RedeemPaymentTokensRequest(); + ~RedeemPaymentTokensRequest(); + + std::string BuildUrl(const WalletInfo& wallet_info) const; + + URLRequestMethod GetMethod() const; + + std::string BuildBody( + const std::vector& tokens, + const std::string& payload, + const WalletInfo& wallet_info) const; + + std::string CreatePayload(const WalletInfo& wallet_info) const; + + std::vector BuildHeaders() const; + std::string GetAcceptHeaderValue() const; + + std::string GetContentType() const; + + private: + base::Value CreatePaymentRequestDTO( + const std::vector& tokens, + const std::string& payload, + const WalletInfo& wallet_info) const; + + base::Value CreateCredential( + const UnblindedToken& token, + const std::string& payload) const; +}; + +} // namespace confirmations + +#endif // BAT_CONFIRMATIONS_REDEEM_PAYMENT_TOKENS_REQUEST_H_ diff --git a/vendor/bat-native-confirmations/src/redeem_token.cc b/vendor/bat-native-confirmations/src/redeem_token.cc new file mode 100644 index 000000000000..7cfb104ef6f2 --- /dev/null +++ b/vendor/bat-native-confirmations/src/redeem_token.cc @@ -0,0 +1,391 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include + +#include "redeem_token.h" +#include "logging.h" +#include "ads_serve_helper.h" +#include "security_helper.h" +#include "confirmations_impl.h" +#include "unblinded_tokens.h" +#include "create_confirmation_request.h" +#include "fetch_payment_token_request.h" + +#include "base/logging.h" +#include "base/guid.h" +#include "base/json/json_reader.h" +#include "base/values.h" + +using std::placeholders::_1; +using std::placeholders::_2; +using std::placeholders::_3; + +using challenge_bypass_ristretto::SignedToken; +using challenge_bypass_ristretto::BatchDLEQProof; +using challenge_bypass_ristretto::PublicKey; + +namespace confirmations { + +RedeemToken::RedeemToken( + ConfirmationsImpl* confirmations, + ConfirmationsClient* confirmations_client, + UnblindedTokens* unblinded_tokens, + UnblindedTokens* unblinded_payment_tokens) : + confirmations_(confirmations), + confirmations_client_(confirmations_client), + unblinded_tokens_(unblinded_tokens), + unblinded_payment_tokens_(unblinded_payment_tokens) { + BLOG(INFO) << "Initializing redeem token"; +} + +RedeemToken::~RedeemToken() { + BLOG(INFO) << "Deinitializing redeem token"; +} + +void RedeemToken::Redeem(const std::string& creative_instance_id) { + DCHECK(!creative_instance_id.empty()); + + BLOG(INFO) << "Redeem"; + + if (unblinded_tokens_->IsEmpty()) { + BLOG(INFO) << "No unblinded tokens to redeem"; + return; + } + + auto unblinded_token = unblinded_tokens_->GetToken(); + CreateConfirmation(creative_instance_id, unblinded_token); +} + +/////////////////////////////////////////////////////////////////////////////// + +void RedeemToken::CreateConfirmation( + const std::string& creative_instance_id, + const UnblindedToken& unblinded_token) { + DCHECK(!creative_instance_id.empty()); + + BLOG(INFO) << "CreateConfirmation"; + + if (!unblinded_tokens_->TokenExists(unblinded_token)) { + BLOG(ERROR) << "Failed to redeem token " << unblinded_token.encode_base64() + << " as unblinded token could not be found"; + OnRedeem(FAILED, unblinded_token); + return; + } + + BLOG(INFO) << "POST /v1/confirmation/{confirmation_id}/{credential}"; + CreateConfirmationRequest request; + + auto payment_tokens = helper::Security::GenerateTokens(1); + auto payment_token = payment_tokens.front(); + + auto blinded_payment_tokens = helper::Security::BlindTokens(payment_tokens); + auto blinded_payment_token = blinded_payment_tokens.front(); + + auto confirmation_id = base::GenerateGUID(); + + auto payload = request.CreateConfirmationRequestDTO(creative_instance_id, + blinded_payment_token); + + auto credential = request.CreateCredential(unblinded_token, payload); + + BLOG(INFO) << "URL Request:"; + + auto url = request.BuildUrl(confirmation_id, credential); + BLOG(INFO) << " URL: " << url; + + auto method = request.GetMethod(); + + auto body = request.BuildBody(payload); + BLOG(INFO) << " Body: " << body; + + auto headers = request.BuildHeaders(); + BLOG(INFO) << " Headers:"; + for (const auto& header : headers) { + BLOG(INFO) << " " << header; + } + + auto content_type = request.GetContentType(); + BLOG(INFO) << " Content_type: " << content_type; + + auto callback = std::bind(&RedeemToken::OnCreateConfirmation, + this, url, _1, _2, _3, confirmation_id, payment_token, + blinded_payment_token, unblinded_token); + + confirmations_client_->LoadURL(url, headers, body, content_type, + method, callback); +} + +void RedeemToken::OnCreateConfirmation( + const std::string& url, + const int response_status_code, + const std::string& response, + const std::map& headers, + const std::string& confirmation_id, + const Token& payment_token, + const BlindedToken& blinded_payment_token, + const UnblindedToken& unblinded_token) { + DCHECK(!confirmation_id.empty()); + + BLOG(INFO) << "OnCreateConfirmation"; + + BLOG(INFO) << "URL Request Response:"; + BLOG(INFO) << " URL: " << url; + BLOG(INFO) << " Response Status Code: " << response_status_code; + BLOG(INFO) << " Response: " << response; + BLOG(INFO) << " Headers:"; + for (const auto& header : headers) { + BLOG(INFO) << " " << header.first << ": " << header.second; + } + + if (response_status_code != 201) { + BLOG(ERROR) << "Failed to create confirmation"; + OnRedeem(FAILED, unblinded_token); + return; + } + + // Parse JSON response + std::unique_ptr dictionary = + base::DictionaryValue::From(base::JSONReader::Read(response)); + + if (!dictionary) { + BLOG(ERROR) << "Failed to parse response: " << response; + OnRedeem(FAILED, unblinded_token); + return; + } + + // Get id + auto* id_value = dictionary->FindKey("id"); + if (!id_value) { + BLOG(ERROR) << "Response missing id"; + OnRedeem(FAILED, unblinded_token); + return; + } + + auto id = id_value->GetString(); + + // Validate id + if (id != confirmation_id) { + BLOG(ERROR) << "Response id: " << id << " does not match confirmation id: " + << confirmation_id; + OnRedeem(FAILED, unblinded_token); + return; + } + + // Fetch payment token + FetchPaymentToken(confirmation_id, payment_token, blinded_payment_token, + unblinded_token); +} + +void RedeemToken::FetchPaymentToken( + const std::string& confirmation_id, + const Token& payment_token, + const BlindedToken& blinded_payment_token, + const UnblindedToken& unblinded_token) { + DCHECK(!confirmation_id.empty()); + + BLOG(INFO) << "FetchPaymentToken"; + + BLOG(INFO) << "GET /v1/confirmation/{confirmation_id}/paymentToken"; + FetchPaymentTokenRequest request; + + BLOG(INFO) << "URL Request:"; + + auto url = request.BuildUrl(confirmation_id); + BLOG(INFO) << " URL: " << url; + + auto method = request.GetMethod(); + + auto callback = std::bind(&RedeemToken::OnFetchPaymentToken, + this, url, _1, _2, _3, payment_token, blinded_payment_token, + unblinded_token); + + confirmations_client_->LoadURL(url, {}, "", "", method, callback); +} + +void RedeemToken::OnFetchPaymentToken( + const std::string& url, + const int response_status_code, + const std::string& response, + const std::map& headers, + const Token& payment_token, + const BlindedToken& blinded_payment_token, + const UnblindedToken& unblinded_token) { + BLOG(INFO) << "OnFetchPaymentToken"; + + BLOG(INFO) << "URL Request Response:"; + BLOG(INFO) << " URL: " << url; + BLOG(INFO) << " Response Status Code: " << response_status_code; + BLOG(INFO) << " Response: " << response; + BLOG(INFO) << " Headers:"; + for (const auto& header : headers) { + BLOG(INFO) << " " << header.first << ": " << header.second; + } + + if (response_status_code != 200) { + BLOG(ERROR) << "Failed to fetch payment token"; + OnRedeem(FAILED, unblinded_token); + return; + } + + // Parse JSON response + std::unique_ptr dictionary = + base::DictionaryValue::From(base::JSONReader::Read(response)); + + if (!dictionary) { + BLOG(ERROR) << "Failed to parse response: " << response; + OnRedeem(FAILED, unblinded_token); + return; + } + + // Get id + auto* id_value = dictionary->FindKey("id"); + if (!id_value) { + BLOG(ERROR) << "Response missing id"; + OnRedeem(FAILED, unblinded_token); + return; + } + + auto id = id_value->GetString(); + + // Get payment token + auto* payment_token_value = dictionary->FindKey("paymentToken"); + if (!payment_token_value) { + BLOG(ERROR) << "Response missing paymentToken"; + OnRedeem(FAILED, unblinded_token); + return; + } + + // Get payment token dictionary + base::DictionaryValue* payment_token_dictionary; + if (!payment_token_value->GetAsDictionary(&payment_token_dictionary)) { + BLOG(ERROR) << "Response missing paymentToken dictionary"; + OnRedeem(FAILED, unblinded_token); + return; + } + + // Get public key + auto* public_key_value = payment_token_dictionary->FindKey("publicKey"); + if (!public_key_value) { + BLOG(ERROR) << "Response missing publicKey in paymentToken dictionary"; + OnRedeem(FAILED, unblinded_token); + return; + } + auto public_key_base64 = public_key_value->GetString(); + auto public_key = PublicKey::decode_base64(public_key_base64); + + // Validate public key + if (!confirmations_->IsValidPublicKeyForCatalogIssuers(public_key_base64)) { + BLOG(ERROR) << "Response public_key: " << public_key_base64 + << " was not found in the catalog issuers"; + OnRedeem(FAILED, unblinded_token); + return; + } + + // Get batch proof + auto* batch_proof_value = payment_token_dictionary->FindKey("batchProof"); + if (!batch_proof_value) { + BLOG(ERROR) << "Response missing batchProof in paymentToken dictionary"; + OnRedeem(FAILED, unblinded_token); + return; + } + + auto batch_proof_base64 = batch_proof_value->GetString(); + auto batch_proof = BatchDLEQProof::decode_base64(batch_proof_base64); + + // Get signed tokens + auto* signed_tokens_value = payment_token_dictionary->FindKey("signedTokens"); + if (!signed_tokens_value) { + BLOG(ERROR) << "Response missing signedTokens in paymentToken dictionary"; + OnRedeem(FAILED, unblinded_token); + return; + } + + base::ListValue signed_token_base64_values(signed_tokens_value->GetList()); + if (signed_token_base64_values.GetSize() != 1) { + BLOG(ERROR) << "Too many signedTokens"; + OnRedeem(FAILED, unblinded_token); + return; + } + + std::vector signed_tokens; + for (const auto& signed_token_base64_value : signed_token_base64_values) { + auto signed_token_base64 = signed_token_base64_value.GetString(); + auto signed_token = SignedToken::decode_base64(signed_token_base64); + signed_tokens.push_back(signed_token); + } + + // Verify and unblind payment tokens + auto payment_tokens = {payment_token}; + auto blinded_payment_tokens = {blinded_payment_token}; + + auto unblinded_payment_tokens = batch_proof.verify_and_unblind( + payment_tokens, blinded_payment_tokens, signed_tokens, public_key); + + if (unblinded_payment_tokens.size() == 0) { + BLOG(ERROR) << "Failed to verify and unblind payment tokens"; + + BLOG(ERROR) << " Batch proof: " << batch_proof_base64; + + BLOG(ERROR) << " Payment tokens (" << payment_tokens.size() << "):"; + auto payment_token_base64 = payment_token.encode_base64(); + BLOG(ERROR) << " " << payment_token_base64; + + BLOG(ERROR) << " Blinded payment tokens (" << blinded_payment_tokens.size() + << "):"; + auto blinded_payment_token_base64 = blinded_payment_token.encode_base64(); + BLOG(ERROR) << " " << blinded_payment_token_base64; + + BLOG(ERROR) << " Signed tokens (" << signed_tokens.size() << "):"; + for (const auto& signed_token : signed_tokens) { + auto signed_token_base64 = signed_token.encode_base64(); + BLOG(ERROR) << " " << signed_token_base64; + } + + BLOG(ERROR) << " Public key: " << public_key_base64; + + OnRedeem(FAILED, unblinded_token); + return; + } + + // Add tokens + unblinded_payment_tokens_->AddTokens(unblinded_payment_tokens); + + double estimated_redemption_value = + confirmations_->GetEstimatedRedemptionValue(public_key_base64); + + BLOG(INFO) << "Added " << unblinded_payment_tokens.size() + << " unblinded payment token with an estimated redemption value of " + << estimated_redemption_value << " BAT, you now have " + << unblinded_payment_tokens_->Count() << " unblinded payment tokens"; + + confirmations_->AppendEstimatedRedemptionValueToTransactionHistory( + estimated_redemption_value); + + OnRedeem(SUCCESS, unblinded_token); +} + +void RedeemToken::OnRedeem( + const Result result, + const UnblindedToken& unblinded_token) { + if (result != SUCCESS) { + BLOG(ERROR) << "Failed to redeem token"; + } else { + BLOG(INFO) << "Successfully redeemed token"; + } + + if (!unblinded_tokens_->RemoveToken(unblinded_token)) { + BLOG(ERROR) << "Failed to remove unblinded token " + << unblinded_token.encode_base64() + << " as unblinded token could not be found"; + } else { + BLOG(INFO) << "Removed " << unblinded_token.encode_base64() + << " unblinded token"; + } + + confirmations_->RefillTokensIfNecessary(); +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/src/redeem_token.h b/vendor/bat-native-confirmations/src/redeem_token.h new file mode 100644 index 000000000000..9027154fafc8 --- /dev/null +++ b/vendor/bat-native-confirmations/src/redeem_token.h @@ -0,0 +1,79 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_REDEEM_TOKEN_H_ +#define BAT_CONFIRMATIONS_REDEEM_TOKEN_H_ + +#include +#include +#include + +#include "bat/confirmations/confirmations_client.h" + +#include "wrapper.hpp" + +using challenge_bypass_ristretto::Token; +using challenge_bypass_ristretto::BlindedToken; +using challenge_bypass_ristretto::UnblindedToken; + +namespace confirmations { + +class ConfirmationsImpl; +class UnblindedTokens; + +class RedeemToken { + public: + RedeemToken( + ConfirmationsImpl* confirmations, + ConfirmationsClient* confirmations_client, + UnblindedTokens* unblinded_tokens, + UnblindedTokens* unblinded_payment_tokens); + + ~RedeemToken(); + + void Redeem( + const std::string& creative_instance_id); + + private: + void CreateConfirmation( + const std::string& creative_instance_id, + const UnblindedToken& unblinded_token); + void OnCreateConfirmation( + const std::string& url, + const int response_status_code, + const std::string& response, + const std::map& headers, + const std::string& confirmation_id, + const Token& payment_token, + const BlindedToken& blinded_payment_token, + const UnblindedToken& unblinded_token); + + void FetchPaymentToken( + const std::string& confirmation_id, + const Token& payment_token, + const BlindedToken& blinded_payment_token, + const UnblindedToken& unblinded_token); + void OnFetchPaymentToken( + const std::string& url, + const int response_status_code, + const std::string& response, + const std::map& headers, + const Token& payment_token, + const BlindedToken& blinded_payment_token, + const UnblindedToken& unblinded_token); + + void OnRedeem( + const Result result, + const UnblindedToken& unblinded_token); + + ConfirmationsImpl* confirmations_; // NOT OWNED + ConfirmationsClient* confirmations_client_; // NOT OWNED + UnblindedTokens* unblinded_tokens_; // NOT OWNED + UnblindedTokens* unblinded_payment_tokens_; // NOT OWNED +}; + +} // namespace confirmations + +#endif // BAT_CONFIRMATIONS_REDEEM_TOKEN_H_ diff --git a/vendor/bat-native-confirmations/src/refill_tokens.cc b/vendor/bat-native-confirmations/src/refill_tokens.cc new file mode 100644 index 000000000000..9c8c2dd948e5 --- /dev/null +++ b/vendor/bat-native-confirmations/src/refill_tokens.cc @@ -0,0 +1,336 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include + +#include "refill_tokens.h" +#include "static_values.h" +#include "logging.h" +#include "ads_serve_helper.h" +#include "security_helper.h" +#include "confirmations_impl.h" +#include "unblinded_tokens.h" +#include "request_signed_tokens_request.h" +#include "get_signed_tokens_request.h" + +#include "base/logging.h" +#include "base/rand_util.h" +#include "base/json/json_reader.h" + +using std::placeholders::_1; +using std::placeholders::_2; +using std::placeholders::_3; + +using challenge_bypass_ristretto::SignedToken; +using challenge_bypass_ristretto::BatchDLEQProof; +using challenge_bypass_ristretto::PublicKey; + +namespace confirmations { + +RefillTokens::RefillTokens( + ConfirmationsImpl* confirmations, + ConfirmationsClient* confirmations_client, + UnblindedTokens* unblinded_tokens) : + confirmations_(confirmations), + confirmations_client_(confirmations_client), + unblinded_tokens_(unblinded_tokens) { + BLOG(INFO) << "Initializing refill tokens"; +} + +RefillTokens::~RefillTokens() { + BLOG(INFO) << "Deinitializing refill tokens"; +} + +void RefillTokens::Refill( + const WalletInfo& wallet_info, + const std::string& public_key) { + DCHECK(!wallet_info.payment_id.empty()); + DCHECK(!wallet_info.public_key.empty()); + DCHECK(!public_key.empty()); + + BLOG(INFO) << "Refill"; + + wallet_info_ = WalletInfo(wallet_info); + + public_key_ = public_key; + + RequestSignedTokens(); +} + +void RefillTokens::RetryGettingSignedTokens() { + BLOG(INFO) << "Retry getting signed tokens"; + + GetSignedTokens(); +} + +/////////////////////////////////////////////////////////////////////////////// + +void RefillTokens::RequestSignedTokens() { + BLOG(INFO) << "RequestSignedTokens"; + + if (!ShouldRefillTokens()) { + BLOG(INFO) << "No need to refill tokens as we already have " + << unblinded_tokens_->Count() << " unblinded tokens which is above the" + << " minimum threshold of " << kMinimumUnblindedTokens; + return; + } + + BLOG(INFO) << "POST /v1/confirmation/token/{payment_id}"; + RequestSignedTokensRequest request; + + auto refill_amount = CalculateAmountOfTokensToRefill(); + GenerateAndBlindTokens(refill_amount); + + BLOG(INFO) << "URL Request:"; + + auto url = request.BuildUrl(wallet_info_); + BLOG(INFO) << " URL: " << url; + + auto method = request.GetMethod(); + + auto body = request.BuildBody(blinded_tokens_); + BLOG(INFO) << " Body: " << body; + + auto headers = request.BuildHeaders(body, wallet_info_); + + BLOG(INFO) << " Headers:"; + for (const auto& header : headers) { + BLOG(INFO) << " " << header; + } + + auto content_type = request.GetContentType(); + BLOG(INFO) << " Content_type: " << content_type; + + auto callback = std::bind(&RefillTokens::OnRequestSignedTokens, + this, url, _1, _2, _3); + + confirmations_client_->LoadURL(url, headers, body, content_type, method, + callback); +} + +void RefillTokens::OnRequestSignedTokens( + const std::string& url, + const int response_status_code, + const std::string& response, + const std::map& headers) { + BLOG(INFO) << "OnRequestSignedTokens"; + + BLOG(INFO) << "URL Request Response:"; + BLOG(INFO) << " URL: " << url; + BLOG(INFO) << " Response Status Code: " << response_status_code; + BLOG(INFO) << " Response: " << response; + BLOG(INFO) << " Headers:"; + for (const auto& header : headers) { + BLOG(INFO) << " " << header.first << ": " << header.second; + } + + if (response_status_code != 201) { + BLOG(ERROR) << "Failed to get blinded tokens"; + OnRefill(FAILED); + return; + } + + // Parse JSON response + std::unique_ptr dictionary = + base::DictionaryValue::From(base::JSONReader::Read(response)); + + if (!dictionary) { + BLOG(ERROR) << "Failed to parse response: " << response; + OnRefill(FAILED); + return; + } + + // Get nonce + auto* nonce_value = dictionary->FindKey("nonce"); + if (!nonce_value) { + BLOG(ERROR) << "Response missing nonce"; + OnRefill(FAILED); + return; + } + + nonce_ = nonce_value->GetString(); + + // Get signed tokens + GetSignedTokens(); +} + +void RefillTokens::GetSignedTokens() { + BLOG(INFO) << "GetSignedTokens"; + + BLOG(INFO) << "GET /v1/confirmation/token/{payment_id}?nonce={nonce}"; + GetSignedTokensRequest request; + + BLOG(INFO) << "URL Request:"; + + auto url = request.BuildUrl(wallet_info_, nonce_); + BLOG(INFO) << " URL: " << url; + + auto method = request.GetMethod(); + + auto callback = std::bind(&RefillTokens::OnGetSignedTokens, + this, url, _1, _2, _3); + + confirmations_client_->LoadURL(url, {}, "", "", method, callback); +} + +void RefillTokens::OnGetSignedTokens( + const std::string& url, + const int response_status_code, + const std::string& response, + const std::map& headers) { + BLOG(INFO) << "OnGetSignedTokens"; + + BLOG(INFO) << "URL Request Response:"; + BLOG(INFO) << " URL: " << url; + BLOG(INFO) << " Response Status Code: " << response_status_code; + BLOG(INFO) << " Response: " << response; + BLOG(INFO) << " Headers:"; + for (const auto& header : headers) { + BLOG(INFO) << " " << header.first << ": " << header.second; + } + + if (response_status_code != 200) { + BLOG(ERROR) << "Failed to get signed tokens"; + + if (response_status_code == 202) { // Tokens are not ready yet + confirmations_->StartRetryingToGetRefillSignedTokens( + kRetryGettingRefillSignedTokensAfterSeconds); + } + + return; + } + + // Parse JSON response + std::unique_ptr dictionary = + base::DictionaryValue::From(base::JSONReader::Read(response)); + + if (!dictionary) { + BLOG(ERROR) << "Failed to parse response: " << response; + OnRefill(FAILED); + return; + } + + // Get public key + auto* public_key_value = dictionary->FindKey("publicKey"); + if (!public_key_value) { + BLOG(ERROR) << "Response missing publicKey"; + OnRefill(FAILED); + return; + } + + auto public_key_base64 = public_key_value->GetString(); + + // Validate public key + if (public_key_base64 != public_key_) { + BLOG(ERROR) << "Response public_key: " << public_key_value->GetString() + << " does not match catalog issuers public key: " << public_key_; + OnRefill(FAILED); + return; + } + + // Get batch proof + auto* batch_proof_value = dictionary->FindKey("batchProof"); + if (!batch_proof_value) { + BLOG(ERROR) << "Response missing batchProof"; + OnRefill(FAILED); + return; + } + + auto batch_proof_base64 = batch_proof_value->GetString(); + auto batch_proof = BatchDLEQProof::decode_base64(batch_proof_base64); + + // Get signed tokens + auto* signed_tokens_value = dictionary->FindKey("signedTokens"); + if (!signed_tokens_value) { + BLOG(ERROR) << "Response missing signedTokens"; + OnRefill(FAILED); + return; + } + + std::vector signed_tokens; + base::ListValue signed_token_base64_values(signed_tokens_value->GetList()); + for (const auto& signed_token_base64_value : signed_token_base64_values) { + auto signed_token_base64 = signed_token_base64_value.GetString(); + auto signed_token = SignedToken::decode_base64(signed_token_base64); + signed_tokens.push_back(signed_token); + } + + // Verify and unblind tokens + auto unblinded_tokens = batch_proof.verify_and_unblind(tokens_, + blinded_tokens_, signed_tokens, PublicKey::decode_base64(public_key_)); + + if (unblinded_tokens.size() == 0) { + BLOG(ERROR) << "Failed to verify and unblind tokens"; + + BLOG(ERROR) << " Batch proof: " << batch_proof_base64; + + BLOG(ERROR) << " Tokens (" << tokens_.size() << "):"; + for (const auto& token : tokens_) { + auto token_base64 = token.encode_base64(); + BLOG(ERROR) << " " << token_base64; + } + + BLOG(ERROR) << " Blinded tokens (" << blinded_tokens_.size() << "):"; + for (const auto& blinded_token : blinded_tokens_) { + auto blinded_token_base64 = blinded_token.encode_base64(); + BLOG(ERROR) << " " << blinded_token_base64; + } + + BLOG(ERROR) << " Signed tokens (" << signed_tokens.size() << "):"; + for (const auto& signed_token : signed_tokens) { + auto signed_token_base64 = signed_token.encode_base64(); + BLOG(ERROR) << " " << signed_token_base64; + } + + BLOG(ERROR) << " Public key: " << public_key_; + + OnRefill(FAILED); + return; + } + + // Add tokens + unblinded_tokens_->AddTokens(unblinded_tokens); + + BLOG(INFO) << "Added " << unblinded_tokens.size() + << " unblinded tokens, you now have " << unblinded_tokens_->Count() + << " unblinded tokens"; + + OnRefill(SUCCESS); +} + +void RefillTokens::OnRefill(const Result result) { + if (result != SUCCESS) { + BLOG(ERROR) << "Failed to refill tokens"; + } else { + confirmations_->SaveState(); + + BLOG(INFO) << "Successfully refilled tokens"; + } + + blinded_tokens_.clear(); + tokens_.clear(); +} + +bool RefillTokens::ShouldRefillTokens() const { + if (unblinded_tokens_->Count() >= kMinimumUnblindedTokens) { + return false; + } + + return true; +} + +int RefillTokens::CalculateAmountOfTokensToRefill() const { + return kMaximumUnblindedTokens - unblinded_tokens_->Count(); +} + +void RefillTokens::GenerateAndBlindTokens(const int count) { + tokens_ = helper::Security::GenerateTokens(count); + BLOG(INFO) << "Generated " << tokens_.size() << " tokens"; + + blinded_tokens_ = helper::Security::BlindTokens(tokens_); + BLOG(INFO) << "Blinded " << blinded_tokens_.size() << " tokens"; +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/src/refill_tokens.h b/vendor/bat-native-confirmations/src/refill_tokens.h new file mode 100644 index 000000000000..97b0ba39fd99 --- /dev/null +++ b/vendor/bat-native-confirmations/src/refill_tokens.h @@ -0,0 +1,77 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_REFILL_TOKENS_H_ +#define BAT_CONFIRMATIONS_REFILL_TOKENS_H_ + +#include +#include +#include + +#include "bat/confirmations/confirmations_client.h" +#include "bat/confirmations/wallet_info.h" + +#include "wrapper.hpp" + +using challenge_bypass_ristretto::Token; +using challenge_bypass_ristretto::BlindedToken; + +namespace confirmations { + +class ConfirmationsImpl; +class UnblindedTokens; + +class RefillTokens { + public: + RefillTokens( + ConfirmationsImpl* confirmations, + ConfirmationsClient* confirmations_client, + UnblindedTokens* unblinded_tokens); + + ~RefillTokens(); + + void Refill(const WalletInfo& wallet_info, const std::string& public_key); + + void OnRefill(const Result result); + + void RetryGettingSignedTokens(); + + private: + WalletInfo wallet_info_; + + std::string public_key_; + + std::string nonce_; + + std::vector tokens_; + std::vector blinded_tokens_; + + void RequestSignedTokens(); + void OnRequestSignedTokens( + const std::string& url, + const int response_status_code, + const std::string& response, + const std::map& headers); + + void GetSignedTokens(); + void OnGetSignedTokens( + const std::string& url, + const int response_status_code, + const std::string& response, + const std::map& headers); + + bool ShouldRefillTokens() const; + int CalculateAmountOfTokensToRefill() const; + + void GenerateAndBlindTokens(const int count); + + ConfirmationsImpl* confirmations_; // NOT OWNED + ConfirmationsClient* confirmations_client_; // NOT OWNED + UnblindedTokens* unblinded_tokens_; // NOT OWNED +}; + +} // namespace confirmations + +#endif // BAT_CONFIRMATIONS_REFILL_TOKENS_H_ diff --git a/vendor/bat-native-confirmations/src/request_signed_tokens_request.cc b/vendor/bat-native-confirmations/src/request_signed_tokens_request.cc new file mode 100644 index 000000000000..ead09c6b4d5d --- /dev/null +++ b/vendor/bat-native-confirmations/src/request_signed_tokens_request.cc @@ -0,0 +1,109 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include + +#include "request_signed_tokens_request.h" +#include "ads_serve_helper.h" +#include "string_helper.h" +#include "security_helper.h" + +#include "base/logging.h" +#include "base/json/json_writer.h" +#include "base/values.h" + +namespace confirmations { + +RequestSignedTokensRequest::RequestSignedTokensRequest() = default; + +RequestSignedTokensRequest::~RequestSignedTokensRequest() = default; + +// POST /v1/confirmation/token/{payment_id} + +std::string RequestSignedTokensRequest::BuildUrl( + const WalletInfo& wallet_info) const { + DCHECK(!wallet_info.payment_id.empty()); + + std::string endpoint = "/v1/confirmation/token/"; + endpoint += wallet_info.payment_id; + + return helper::AdsServe::GetURL().append(endpoint); +} + +URLRequestMethod RequestSignedTokensRequest::GetMethod() const { + return URLRequestMethod::POST; +} + +std::string RequestSignedTokensRequest::BuildBody( + const std::vector& tokens) const { + DCHECK_NE(tokens.size(), 0UL); + + base::Value list(base::Value::Type::LIST); + for (const auto& token : tokens) { + auto token_base64 = token.encode_base64(); + auto token_value = base::Value(token_base64); + list.GetList().push_back(std::move(token_value)); + } + + base::Value dictionary(base::Value::Type::DICTIONARY); + dictionary.SetKey("blindedTokens", base::Value(std::move(list))); + + std::string json; + base::JSONWriter::Write(dictionary, &json); + + return json; +} + +std::vector RequestSignedTokensRequest::BuildHeaders( + const std::string& body, + const WalletInfo& wallet_info) const { + std::string digest_header = "digest: "; + digest_header += BuildDigestHeaderValue(body); + + std::string signature_header = "signature: "; + signature_header += BuildSignatureHeaderValue(body, wallet_info); + + std::string accept_header = "accept: "; + accept_header += GetAcceptHeaderValue(); + + return { + digest_header, + signature_header, + accept_header + }; +} + +std::string RequestSignedTokensRequest::BuildDigestHeaderValue( + const std::string& body) const { + DCHECK(!body.empty()); + + auto body_sha256 = helper::Security::GetSHA256(body); + auto body_sha256_base64 = helper::Security::GetBase64(body_sha256); + return "SHA-256=" + body_sha256_base64; +} + +std::string RequestSignedTokensRequest::BuildSignatureHeaderValue( + const std::string& body, + const WalletInfo& wallet_info) const { + DCHECK(!body.empty()); + DCHECK(!wallet_info.public_key.empty()); + + auto digest_header_value = BuildDigestHeaderValue(body); + + auto public_key = helper::String::decode_hex(wallet_info.public_key); + + return helper::Security::Sign({{"digest", digest_header_value}}, "primary", + public_key); +} + +std::string RequestSignedTokensRequest::GetAcceptHeaderValue() const { + return "application/json"; +} + +std::string RequestSignedTokensRequest::GetContentType() const { + return "application/json"; +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/src/request_signed_tokens_request.h b/vendor/bat-native-confirmations/src/request_signed_tokens_request.h new file mode 100644 index 000000000000..a07124278b35 --- /dev/null +++ b/vendor/bat-native-confirmations/src/request_signed_tokens_request.h @@ -0,0 +1,49 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_REQUEST_SIGNED_TOKENS_REQUEST_H_ +#define BAT_CONFIRMATIONS_REQUEST_SIGNED_TOKENS_REQUEST_H_ + +#include +#include + +#include "bat/confirmations/confirmations_client.h" +#include "bat/confirmations/wallet_info.h" + +#include "wrapper.hpp" + +using challenge_bypass_ristretto::BlindedToken; + +namespace confirmations { + +class RequestSignedTokensRequest { + public: + RequestSignedTokensRequest(); + ~RequestSignedTokensRequest(); + + std::string BuildUrl( + const WalletInfo& wallet_info) const; + + URLRequestMethod GetMethod() const; + + std::string BuildBody( + const std::vector& tokens) const; + + std::vector BuildHeaders( + const std::string& body, + const WalletInfo& wallet_info) const; + std::string BuildDigestHeaderValue( + const std::string& body) const; + std::string BuildSignatureHeaderValue( + const std::string& body, + const WalletInfo& wallet_info) const; + std::string GetAcceptHeaderValue() const; + + std::string GetContentType() const; +}; + +} // namespace confirmations + +#endif // BAT_CONFIRMATIONS_REQUEST_SIGNED_TOKENS_REQUEST_H_ diff --git a/vendor/bat-native-confirmations/src/security_helper.cc b/vendor/bat-native-confirmations/src/security_helper.cc new file mode 100644 index 000000000000..5dafe59bedd7 --- /dev/null +++ b/vendor/bat-native-confirmations/src/security_helper.cc @@ -0,0 +1,114 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include +#include +#include +#include + +#include + +#include "security_helper.h" + +#include "base/base64.h" + +#include "tweetnacl.h" + +namespace helper { + +std::string Security::Sign( + const std::map& headers, + const std::string& key_id, + const std::vector& public_key) { + DCHECK_NE(headers.size(), 0UL); + DCHECK(!key_id.empty()); + DCHECK_NE(public_key.size(), 0UL); + + std::string concatenated_header = ""; + std::string concatenated_message = ""; + + unsigned int index = 0; + for (const auto& header : headers) { + if (index != 0) { + concatenated_header += " "; + concatenated_message += "\n"; + } + + concatenated_header += header.first; + concatenated_message += header.first + ": " + header.second; + + index++; + } + + std::vector signed_message(crypto_sign_BYTES + + concatenated_message.length()); + + unsigned long long signed_message_size = 0; + crypto_sign(&signed_message.front(), &signed_message_size, + reinterpret_cast(concatenated_message.c_str()), + concatenated_message.length(), &public_key.front()); + + std::vector signature(crypto_sign_BYTES); + std::copy(signed_message.begin(), signed_message.begin() + + crypto_sign_BYTES, signature.begin()); + + return "keyId=\"" + key_id + "\",algorithm=\"" + crypto_sign_PRIMITIVE + + "\",headers=\"" + concatenated_header + "\",signature=\"" + + GetBase64(signature) + "\""; +} + +std::vector Security::GenerateTokens(const int count) { + DCHECK_NE(count, 0); + + std::vector tokens; + + for (int i = 0; i < count; i++) { + auto token = Token::random(); + tokens.push_back(token); + } + + return tokens; +} + +std::vector Security::BlindTokens( + const std::vector& tokens) { + DCHECK_NE(tokens.size(), 0UL); + + std::vector blinded_tokens; + for (unsigned int i = 0; i < tokens.size(); i++) { + auto token = tokens.at(i); + auto blinded_token = token.blind(); + + blinded_tokens.push_back(blinded_token); + } + + return blinded_tokens; +} + +std::vector Security::GetSHA256(const std::string& string) { + DCHECK(!string.empty()); + + std::vector string_sha256(SHA256_DIGEST_LENGTH); + SHA256((uint8_t*)string.c_str(), string.length(), &string_sha256.front()); + return string_sha256; +} + +std::string Security::GetBase64(const std::vector& data) { + DCHECK_NE(data.size(), 0UL); + + size_t size = 0; + if (!EVP_EncodedLength(&size, data.size())) { + return ""; + } + + std::vector string(size); + int encoded_bytes_count = + EVP_EncodeBlock(&string.front(), &data.front(), data.size()); + DCHECK_NE(encoded_bytes_count, 0); + + return std::string(reinterpret_cast(&string.front())); +} + +} // namespace helper diff --git a/vendor/bat-native-confirmations/src/security_helper.h b/vendor/bat-native-confirmations/src/security_helper.h new file mode 100644 index 000000000000..d488b06b4060 --- /dev/null +++ b/vendor/bat-native-confirmations/src/security_helper.h @@ -0,0 +1,39 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_SECURITY_HELPER_H_ +#define BAT_CONFIRMATIONS_SECURITY_HELPER_H_ + +#include +#include +#include + +#include "wrapper.hpp" + +using challenge_bypass_ristretto::Token; +using challenge_bypass_ristretto::BlindedToken; + +namespace helper { + +class Security { + public: + static std::string Sign( + const std::map& headers, + const std::string& key_id, + const std::vector& public_key); + + static std::vector GenerateTokens(const int count); + + static std::vector BlindTokens( + const std::vector& tokens); + + static std::vector GetSHA256(const std::string& string); + + static std::string GetBase64(const std::vector& data); +}; + +} // namespace helper + +#endif // BAT_CONFIRMATIONS_SECURITY_HELPER_H_ diff --git a/vendor/bat-native-confirmations/src/static_values.h b/vendor/bat-native-confirmations/src/static_values.h new file mode 100644 index 000000000000..76b6c4c8776d --- /dev/null +++ b/vendor/bat-native-confirmations/src/static_values.h @@ -0,0 +1,26 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_STATIC_VALUES_H_ +#define BAT_CONFIRMATIONS_STATIC_VALUES_H_ + +namespace confirmations { + +#define BAT_ADS_STAGING_SERVER "https://ads-serve.bravesoftware.com" +#define BAT_ADS_PRODUCTION_SERVER "https://ads-serve.brave.com" + +static const int kMinimumUnblindedTokens = 20; +static const int kMaximumUnblindedTokens = 50; + +static const uint64_t kOneMinuteInSeconds = 60; +static const uint64_t kOneHourInSeconds = 60 * kOneMinuteInSeconds; +static const uint64_t kOneDayInSeconds = 24 * kOneHourInSeconds; + +static const uint64_t kRetryGettingRefillSignedTokensAfterSeconds = 15; +static const uint64_t kPayoutAfterSeconds = kOneDayInSeconds; + +} // namespace confirmations + +#endif // BAT_ADS_STATIC_VALUES_H_ diff --git a/vendor/bat-native-confirmations/src/string_helper.cc b/vendor/bat-native-confirmations/src/string_helper.cc new file mode 100644 index 000000000000..227ac037535a --- /dev/null +++ b/vendor/bat-native-confirmations/src/string_helper.cc @@ -0,0 +1,26 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "string_helper.h" + +#include "base/logging.h" + +namespace helper { + +std::vector String::decode_hex(const std::string& hexadecimal) { + DCHECK(!hexadecimal.empty()); + + std::vector bytes; + + for (size_t i = 0; i < hexadecimal.length(); i += 2) { + std::string hexidecimal_byte = hexadecimal.substr(i, 2); + uint8_t decimal = std::strtol(hexidecimal_byte.c_str(), 0, 16); + bytes.push_back(decimal); + } + + return bytes; +} + +} // namespace helper diff --git a/vendor/bat-native-confirmations/src/string_helper.h b/vendor/bat-native-confirmations/src/string_helper.h new file mode 100644 index 000000000000..d2f148635a53 --- /dev/null +++ b/vendor/bat-native-confirmations/src/string_helper.h @@ -0,0 +1,21 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_STRING_HELPER_H_ +#define BAT_CONFIRMATIONS_STRING_HELPER_H_ + +#include +#include + +namespace helper { + +class String { + public: + static std::vector decode_hex(const std::string& hexadecimal); +}; + +} // namespace helper + +#endif // BAT_CONFIRMATIONS_STRING_HELPER_H_ diff --git a/vendor/bat-native-confirmations/src/unblinded_tokens.cc b/vendor/bat-native-confirmations/src/unblinded_tokens.cc new file mode 100644 index 000000000000..82b69cbda6d4 --- /dev/null +++ b/vendor/bat-native-confirmations/src/unblinded_tokens.cc @@ -0,0 +1,117 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include + +#include "unblinded_tokens.h" +#include "confirmations_impl.h" + +#include "base/logging.h" + +namespace confirmations { + +UnblindedTokens::UnblindedTokens(ConfirmationsImpl* confirmations) : + confirmations_(confirmations) { +} + +UnblindedTokens::~UnblindedTokens() = default; + +UnblindedToken UnblindedTokens::GetToken() const { + DCHECK_NE(Count(), 0); + return unblinded_tokens_.front(); +} + +std::vector UnblindedTokens::GetAllTokens() const { + return unblinded_tokens_; +} + +base::Value UnblindedTokens::GetTokensAsList() { + base::Value list(base::Value::Type::LIST); + + for (const auto& token : unblinded_tokens_) { + auto token_base64 = token.encode_base64(); + auto token_value = base::Value(token_base64); + list.GetList().push_back(std::move(token_value)); + } + + return list; +} + +void UnblindedTokens::SetTokens(const std::vector& tokens) { + unblinded_tokens_ = tokens; + + confirmations_->SaveState(); +} + +void UnblindedTokens::SetTokensFromList(const base::Value& list) { + base::ListValue list_values(list.GetList()); + + std::vector unblinded_tokens; + for (const auto& value : list_values) { + auto token_base64 = value.GetString(); + auto token = UnblindedToken::decode_base64(token_base64); + unblinded_tokens.push_back(token); + } + + SetTokens(unblinded_tokens); +} + +void UnblindedTokens::AddTokens(const std::vector& tokens) { + for (const auto& token : tokens) { + if (TokenExists(token)) { + continue; + } + + unblinded_tokens_.push_back(token); + } + + confirmations_->SaveState(); +} + +bool UnblindedTokens::RemoveToken(const UnblindedToken& token) { + auto it = std::find(unblinded_tokens_.begin(), unblinded_tokens_.end(), + token); + + if (it == unblinded_tokens_.end()) { + return false; + } + + unblinded_tokens_.erase(it); + + confirmations_->SaveState(); + + return true; +} + +void UnblindedTokens::RemoveAllTokens() { + unblinded_tokens_.clear(); + + confirmations_->SaveState(); +} + +bool UnblindedTokens::TokenExists(const UnblindedToken& token) { + auto it = std::find(unblinded_tokens_.begin(), unblinded_tokens_.end(), + token); + + if (it == unblinded_tokens_.end()) { + return false; + } + + return true; +} + +int UnblindedTokens::Count() const { + return unblinded_tokens_.size(); +} + +bool UnblindedTokens::IsEmpty() const { + if (Count() > 0) { + return false; + } + + return true; +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/src/unblinded_tokens.h b/vendor/bat-native-confirmations/src/unblinded_tokens.h new file mode 100644 index 000000000000..c3ac9fd78627 --- /dev/null +++ b/vendor/bat-native-confirmations/src/unblinded_tokens.h @@ -0,0 +1,53 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_UNBLINDED_TOKENS_H_ +#define BAT_CONFIRMATIONS_UNBLINDED_TOKENS_H_ + +#include +#include + +#include "base/values.h" + +#include "wrapper.hpp" + +using challenge_bypass_ristretto::UnblindedToken; + +namespace confirmations { + +class ConfirmationsImpl; + +class UnblindedTokens { + public: + explicit UnblindedTokens(ConfirmationsImpl* confirmations); + ~UnblindedTokens(); + + UnblindedToken GetToken() const; + std::vector GetAllTokens() const; + base::Value GetTokensAsList(); + + void SetTokens(const std::vector& tokens); + void SetTokensFromList(const base::Value& list); + + void AddTokens(const std::vector& tokens); + + bool RemoveToken(const UnblindedToken& token); + void RemoveAllTokens(); + + bool TokenExists(const UnblindedToken& token); + + int Count() const; + + bool IsEmpty() const; + + private: + std::vector unblinded_tokens_; + + ConfirmationsImpl* confirmations_; // NOT OWNED +}; + +} // namespace confirmations + +#endif // BAT_CONFIRMATIONS_UNBLINDED_TOKENS_H_ diff --git a/vendor/bat-native-confirmations/test/confirmations_client_mock.cc b/vendor/bat-native-confirmations/test/confirmations_client_mock.cc new file mode 100644 index 000000000000..5afa2ee2afea --- /dev/null +++ b/vendor/bat-native-confirmations/test/confirmations_client_mock.cc @@ -0,0 +1,54 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "confirmations_client_mock.h" + +namespace confirmations { + +MockLogStreamImpl::MockLogStreamImpl( + const char* file, + const int line, + const ledger::LogLevel log_level) { + (void)file; + (void)line; + (void)log_level; +} + +std::ostream& MockLogStreamImpl::stream() { + return std::cout; +} + +MockVerboseLogStreamImpl::MockVerboseLogStreamImpl( + const char* file, + int line, + int vlog_level) { + (void)file; + (void)line; + (void)vlog_level; +} + +std::ostream& MockVerboseLogStreamImpl::stream() { + return std::cout; +} + +MockConfirmationsClient::MockConfirmationsClient() = default; + +MockConfirmationsClient::~MockConfirmationsClient() = default; + +std::unique_ptr MockConfirmationsClient::Log( + const char* file, + int line, + const ledger::LogLevel log_level) const { + return std::make_unique(file, line, log_level); +} + +std::unique_ptr MockConfirmationsClient::VerboseLog( + const char* file, + int line, + int vlog_level) const { + return std::make_unique(file, line, vlog_level); +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/test/confirmations_client_mock.h b/vendor/bat-native-confirmations/test/confirmations_client_mock.h new file mode 100644 index 000000000000..a37f93b230eb --- /dev/null +++ b/vendor/bat-native-confirmations/test/confirmations_client_mock.h @@ -0,0 +1,244 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef BAT_CONFIRMATIONS_CONFIRMATIONS_CLIENT_MOCK_H_ +#define BAT_CONFIRMATIONS_CONFIRMATIONS_CLIENT_MOCK_H_ + +#include +#include +#include +#include +#include + +#include "testing/gmock/include/gmock/gmock.h" + +#include "bat/confirmations/confirmations_client.h" +#include "bat/confirmations/confirmations.h" + +namespace confirmations { + +class MockLogStreamImpl : public ledger::LogStream { + public: + MockLogStreamImpl( + const char* file, + int line, + const ledger::LogLevel log_level); + std::ostream& stream() override; + + private: + // Not copyable, not assignable + MockLogStreamImpl(const MockLogStreamImpl&) = delete; + MockLogStreamImpl& operator=(const MockLogStreamImpl&) = delete; +}; + +class MockVerboseLogStreamImpl : public ledger::LogStream { + public: + MockVerboseLogStreamImpl( + const char* file, + int line, + int vlog_level); + std::ostream& stream() override; + + private: + // Not copyable, not assignable + MockVerboseLogStreamImpl(const MockVerboseLogStreamImpl&) = delete; + MockVerboseLogStreamImpl& operator=(const MockVerboseLogStreamImpl&) = delete; +}; + +class MockConfirmationsClient : public ConfirmationsClient { + public: + MockConfirmationsClient(); + ~MockConfirmationsClient() override; + + MOCK_CONST_METHOD0(GenerateGUID, std::string()); + + MOCK_METHOD1(OnWalletInitialized, void( + ledger::Result result)); + + MOCK_METHOD0(FetchWalletProperties, void()); + + MOCK_METHOD2(OnWalletProperties, void( + ledger::Result result, + std::unique_ptr)); + + MOCK_METHOD4(OnReconcileComplete, void( + Result result, + const std::string& viewing_id, + ledger::REWARDS_CATEGORY category, + const std::string& probi)); + + MOCK_METHOD1(LoadLedgerState, void( + ledger::LedgerCallbackHandler* handler)); + + MOCK_METHOD2(SaveLedgerState, void( + const std::string& ledger_state, + ledger::LedgerCallbackHandler* handler)); + + MOCK_METHOD1(LoadPublisherState, void( + ledger::LedgerCallbackHandler* handler)); + + MOCK_METHOD2(SavePublisherState, void( + const std::string& publisher_state, + ledger::LedgerCallbackHandler* handler)); + + MOCK_METHOD2(SavePublishersList, void( + const std::string& publisher_state, + ledger::LedgerCallbackHandler* handler)); + + MOCK_METHOD1(LoadPublisherList, void( + ledger::LedgerCallbackHandler* handler)); + + MOCK_METHOD1(LoadNicewareList, void( + ledger::GetNicewareListCallback callback)); + + MOCK_METHOD2(SavePublisherInfo, void( + std::unique_ptr publisher_info, + ledger::PublisherInfoCallback callback)); + + MOCK_METHOD2(SaveActivityInfo, void( + std::unique_ptr publisher_info, + ledger::PublisherInfoCallback callback)); + + MOCK_METHOD2(LoadPublisherInfo, void( + const std::string& publisher_key, + ledger::PublisherInfoCallback callback)); + + MOCK_METHOD2(LoadActivityInfo, void( + ledger::ActivityInfoFilter filter, + ledger::PublisherInfoCallback callback)); + + MOCK_METHOD2(LoadPanelPublisherInfo, void( + ledger::ActivityInfoFilter filter, + ledger::PublisherInfoCallback callback)); + + MOCK_METHOD2(LoadMediaPublisherInfo, void( + const std::string& media_key, + ledger::PublisherInfoCallback callback)); + + MOCK_METHOD2(SaveMediaPublisherInfo, void( + const std::string& media_key, + const std::string& publisher_id)); + + MOCK_METHOD4(GetActivityInfoList, void( + uint32_t start, + uint32_t limit, + ledger::ActivityInfoFilter filter, + ledger::PublisherInfoListCallback callback)); + + MOCK_METHOD2(FetchGrants, void( + const std::string& lang, + const std::string& paymentId)); + + MOCK_METHOD2(OnGrant, void( + ledger::Result result, + const ledger::Grant& grant)); + + MOCK_METHOD0(GetGrantCaptcha, void()); + + MOCK_METHOD2(OnGrantCaptcha, void( + const std::string& image, + const std::string& hint)); + + MOCK_METHOD3(OnRecoverWallet, void( + ledger::Result result, + double balance, + const std::vector& grants)); + + MOCK_METHOD2(OnGrantFinish, void( + ledger::Result result, + const ledger::Grant& grant)); + + MOCK_METHOD3(OnPanelPublisherInfo, void( + ledger::Result result, + std::unique_ptr, + uint64_t windowId)); + + MOCK_METHOD1(OnExcludedSitesChanged, void( + const std::string& publisher_id)); + + MOCK_METHOD3(FetchFavIcon, void( + const std::string& url, + const std::string& favicon_key, + ledger::FetchIconCallback callback)); + + MOCK_METHOD6(SaveContributionInfo, void( + const std::string& probi, + const int month, + const int year, + const uint32_t date, + const std::string& publisher_key, + const ledger::REWARDS_CATEGORY category)); + + MOCK_METHOD1(GetRecurringDonations, void( + ledger::PublisherInfoListCallback callback)); + + MOCK_METHOD2(OnRemoveRecurring, void( + const std::string& publisher_key, + ledger::RecurringRemoveCallback callback)); + + MOCK_METHOD2(SetTimer, void( + uint64_t time_offset, + uint32_t* timer_id)); + + MOCK_METHOD1(KillTimer, void( + const uint32_t timer_id)); + + MOCK_METHOD1(URIEncode, std::string( + const std::string& value)); + + MOCK_METHOD6(LoadURL, void( + const std::string& url, + const std::vector& headers, + const std::string& content, + const std::string& content_type, + const URLRequestMethod method, + URLRequestCallback callback)); + + MOCK_METHOD3(SetContributionAutoInclude, void( + const std::string& publisher_key, + bool excluded, + uint64_t windowId)); + + MOCK_METHOD1(SavePendingContribution, void( + const ledger::PendingContributionList& list)); + + std::unique_ptr Log( + const char* file, + const int line, + const ledger::LogLevel log_level) const; + + std::unique_ptr VerboseLog( + const char* file, + int line, + int vlog_level) const; + + MOCK_METHOD3(SaveState, void( + const std::string& name, + const std::string& value, + ledger::OnSaveCallback callback)); + + MOCK_METHOD2(LoadState, void( + const std::string& name, + ledger::OnLoadCallback callback)); + + MOCK_METHOD2(ResetState, void( + const std::string& name, + ledger::OnResetCallback callback)); + + MOCK_METHOD1(OnRestorePublishers, void( + ledger::OnRestoreCallback callback)); + + MOCK_METHOD1(SaveNormalizedPublisherList, void( + const ledger::PublisherInfoListStruct& normalized_list)); + + MOCK_METHOD1(SetConfirmationsIsReady, void( + const bool is_ready)); + + MOCK_METHOD0(ConfirmationsTransactionHistoryDidChange, void()); +}; + +} // namespace confirmations + +#endif // BAT_CONFIRMATIONS_CONFIRMATIONS_CLIENT_MOCK_H_ diff --git a/vendor/bat-native-confirmations/test/confirmations_create_confirmation_request_unittest.cc b/vendor/bat-native-confirmations/test/confirmations_create_confirmation_request_unittest.cc new file mode 100644 index 000000000000..632fe00bbbe5 --- /dev/null +++ b/vendor/bat-native-confirmations/test/confirmations_create_confirmation_request_unittest.cc @@ -0,0 +1,169 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include +#include + +#include "confirmations_client_mock.h" +#include "bat-native-confirmations/src/confirmations_impl.h" +#include "bat-native-confirmations/src/create_confirmation_request.h" +#include "bat-native-confirmations/src/security_helper.h" +#include "bat-native-confirmations/include/bat/confirmations/wallet_info.h" + +#include "testing/gtest/include/gtest/gtest.h" + +// npm run test -- brave_unit_tests --filter=Confirmations* + +namespace confirmations { + +class ConfirmationsCreateConfirmationRequestTest : public ::testing::Test { + protected: + std::unique_ptr mock_confirmations_client_; + std::unique_ptr confirmations_; + + std::unique_ptr request_; + + ConfirmationsCreateConfirmationRequestTest() : + mock_confirmations_client_(std::make_unique()), + confirmations_(std::make_unique( + mock_confirmations_client_.get())), + request_(std::make_unique()) { + // You can do set-up work for each test here + } + + ~ConfirmationsCreateConfirmationRequestTest() override { + // You can do clean-up work that doesn't throw exceptions here + } + + // If the constructor and destructor are not enough for setting up and + // cleaning up each test, you can use the following methods + + void SetUp() override { + // Code here will be called immediately after the constructor (right before + // each test) + } + + void TearDown() override { + // Code here will be called immediately after each test (right before the + // destructor) + } + + // Objects declared here can be used by all tests in the test case +}; + +TEST_F(ConfirmationsCreateConfirmationRequestTest, BuildUrl) { + // Arrange + std::string confirmation_id = "c7f8c42d-6768-4dd7-8dc6-612cbba3ec21"; + std::string credential = "eyJwYXlsb2FkIjoie1wiYmxpbmRlZFBheW1lbnRUb2tlblwiOlwiRnZuU1RNSjZkU2VpblBJZGMzUDJYUWx2ODRZMXdjbGp6V21rZmluVlhIcz1cIixcImNyZWF0aXZlSW5zdGFuY2VJZFwiOlwiNDY1ZTA4YWQtMDNiZS00MmVlLTkwMmEtZGM4ODY4OGFhMmNiXCIsXCJwYXlsb2FkXCI6e30sXCJ0eXBlXCI6XCJsYW5kZWRcIn0iLCJzaWduYXR1cmUiOiJvZGwvcDNiaWhWTnZxa1N0YkU1Y1kvbk51YkcrdDZZZyt3WEgyNkVzRWdlWXdCelRjR3RVb2sxaWtCVngwNEhJV0lLNWowVDYxZ3BoQk1ZekhvY1FtUT09IiwidCI6IjNNYTNyNzBTMXNyOWNXdHRRdFQ5U3I4TnhwT2VxWnRFV0VQem9NOGduWXRybC9FSjVMRjJ2eVEySDF0SzRqMDJkeVQ4WEZ6MHdyTGh2MlJMMzVON1VBPT0ifQ=="; // NOLINT + + // Act + auto url = request_->BuildUrl(confirmation_id, credential); + + // Assert + std::string expected_url = "https://ads-serve.bravesoftware.com/v1/confirmation/c7f8c42d-6768-4dd7-8dc6-612cbba3ec21/eyJwYXlsb2FkIjoie1wiYmxpbmRlZFBheW1lbnRUb2tlblwiOlwiRnZuU1RNSjZkU2VpblBJZGMzUDJYUWx2ODRZMXdjbGp6V21rZmluVlhIcz1cIixcImNyZWF0aXZlSW5zdGFuY2VJZFwiOlwiNDY1ZTA4YWQtMDNiZS00MmVlLTkwMmEtZGM4ODY4OGFhMmNiXCIsXCJwYXlsb2FkXCI6e30sXCJ0eXBlXCI6XCJsYW5kZWRcIn0iLCJzaWduYXR1cmUiOiJvZGwvcDNiaWhWTnZxa1N0YkU1Y1kvbk51YkcrdDZZZyt3WEgyNkVzRWdlWXdCelRjR3RVb2sxaWtCVngwNEhJV0lLNWowVDYxZ3BoQk1ZekhvY1FtUT09IiwidCI6IjNNYTNyNzBTMXNyOWNXdHRRdFQ5U3I4TnhwT2VxWnRFV0VQem9NOGduWXRybC9FSjVMRjJ2eVEySDF0SzRqMDJkeVQ4WEZ6MHdyTGh2MlJMMzVON1VBPT0ifQ=="; // NOLINT + EXPECT_EQ(expected_url, url); +} + +TEST_F(ConfirmationsCreateConfirmationRequestTest, GetMethod) { + // Arrange + + // Act + auto method = request_->GetMethod(); + + // Assert + EXPECT_EQ(URLRequestMethod::POST, method); +} + +TEST_F(ConfirmationsCreateConfirmationRequestTest, BuildBody) { + // Arrange + std::string creative_instance_id = "465e08ad-03be-42ee-902a-dc88688aa2cb"; + + std::string blinded_token_base64 = + "FvnSTMJ6dSeinPIdc3P2XQlv84Y1wcljzWmkfinVXHs="; + auto blinded_token = BlindedToken::decode_base64(blinded_token_base64); + + auto payload = request_->CreateConfirmationRequestDTO(creative_instance_id, + blinded_token); + + // Act + auto body = request_->BuildBody(payload); + + // Assert + std::string expected_body = R"({"blindedPaymentToken":"FvnSTMJ6dSeinPIdc3P2XQlv84Y1wcljzWmkfinVXHs=","creativeInstanceId":"465e08ad-03be-42ee-902a-dc88688aa2cb","payload":{},"type":"view"})"; // NOLINT + EXPECT_EQ(expected_body, body); +} + +TEST_F(ConfirmationsCreateConfirmationRequestTest, HeadersCount) { + // Arrange + + // Act + auto headers = request_->BuildHeaders(); + + // Assert + auto count = headers.size(); + EXPECT_EQ(1UL, count); +} + +TEST_F(ConfirmationsCreateConfirmationRequestTest, GetAcceptHeaderValue) { + // Arrange + + // Act + auto accept_header_value = request_->GetAcceptHeaderValue(); + + // Assert + EXPECT_EQ(accept_header_value, "application/json"); +} + +TEST_F(ConfirmationsCreateConfirmationRequestTest, GetContentType) { + // Arrange + + // Act + auto content_type = request_->GetContentType(); + + // Assert + EXPECT_EQ(content_type, "application/json"); +} + +TEST_F(ConfirmationsCreateConfirmationRequestTest, + CreateConfirmationRequestDTO) { + // Arrange + std::string creative_instance_id = "465e08ad-03be-42ee-902a-dc88688aa2cb"; + + std::string blinded_token_base64 = + "FvnSTMJ6dSeinPIdc3P2XQlv84Y1wcljzWmkfinVXHs="; + auto blinded_token = BlindedToken::decode_base64(blinded_token_base64); + + // Act + auto payload = request_->CreateConfirmationRequestDTO(creative_instance_id, + blinded_token); + + // Assert + std::string expected_payload = R"({"blindedPaymentToken":"FvnSTMJ6dSeinPIdc3P2XQlv84Y1wcljzWmkfinVXHs=","creativeInstanceId":"465e08ad-03be-42ee-902a-dc88688aa2cb","payload":{},"type":"view"})"; // NOLINT + EXPECT_EQ(expected_payload, payload); +} + +TEST_F(ConfirmationsCreateConfirmationRequestTest, CreateCredential) { + // Arrange + std::string unblinded_token_base64 = "PUfdKQM4YOp/4o9IK33FHbedHp9nm0uHfSHdIqZw4dxBoo7lIb+aFYffv0dxEbwnADigaiOsliXbjFgtspB9ZYYD9GKXVCCVrss3M9QjSr3a449R+evShkcjRVxDxWoF"; // NOLINT + auto unblinded_token = UnblindedToken::decode_base64(unblinded_token_base64); + + std::string creative_instance_id = "465e08ad-03be-42ee-902a-dc88688aa2cb"; + + std::string blinded_token_base64 = + "aCmqXz88SL4jUoRphNUZ+bpO9vfcoXL2jfknynMN4l0="; + auto blinded_token = BlindedToken::decode_base64(blinded_token_base64); + + auto payload = request_->CreateConfirmationRequestDTO(creative_instance_id, + blinded_token); + + // Act + auto credential = request_->CreateCredential(unblinded_token, payload); + + // Assert + std::string expected_credential = "eyJwYXlsb2FkIjoie1wiYmxpbmRlZFBheW1lbnRUb2tlblwiOlwiYUNtcVh6ODhTTDRqVW9ScGhOVVorYnBPOXZmY29YTDJqZmtueW5NTjRsMD1cIixcImNyZWF0aXZlSW5zdGFuY2VJZFwiOlwiNDY1ZTA4YWQtMDNiZS00MmVlLTkwMmEtZGM4ODY4OGFhMmNiXCIsXCJwYXlsb2FkXCI6e30sXCJ0eXBlXCI6XCJsYW5kZWRcIn0iLCJzaWduYXR1cmUiOiJHaGs4NmMwWXNZeXZLb3R6WE1ycVJxUHk3aXgyV1JNVXRyU0dka0p4R2tKaE9ua2ErTWN0SmxNUjczRXVONGJKaXY3TWcyaTg4YzVpbDJiY1J1ZUZkdz09IiwidCI6IlBVZmRLUU00WU9wLzRvOUlLMzNGSGJlZEhwOW5tMHVIZlNIZElxWnc0ZHhCb283bEliK2FGWWZmdjBkeEVid25BRGlnYWlPc2xpWGJqRmd0c3BCOVpRPT0ifQ=="; // NOLINT + EXPECT_EQ(expected_credential, credential); +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/test/confirmations_fetch_payment_token_request_unittest.cc b/vendor/bat-native-confirmations/test/confirmations_fetch_payment_token_request_unittest.cc new file mode 100644 index 000000000000..da7138907baa --- /dev/null +++ b/vendor/bat-native-confirmations/test/confirmations_fetch_payment_token_request_unittest.cc @@ -0,0 +1,76 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include +#include + +#include "confirmations_client_mock.h" +#include "bat-native-confirmations/src/confirmations_impl.h" +#include "bat-native-confirmations/src/fetch_payment_token_request.h" + +#include "testing/gtest/include/gtest/gtest.h" + +// npm run test -- brave_unit_tests --filter=Confirmations* + +namespace confirmations { + +class ConfirmationsFetchPaymentTokenRequestTest : public ::testing::Test { + protected: + std::unique_ptr mock_confirmations_client_; + std::unique_ptr confirmations_; + + std::unique_ptr request_; + + ConfirmationsFetchPaymentTokenRequestTest() : + mock_confirmations_client_(std::make_unique()), + confirmations_(std::make_unique( + mock_confirmations_client_.get())), + request_(std::make_unique()) { + // You can do set-up work for each test here + } + + ~ConfirmationsFetchPaymentTokenRequestTest() override { + // You can do clean-up work that doesn't throw exceptions here + } + + // If the constructor and destructor are not enough for setting up and + // cleaning up each test, you can use the following methods + + void SetUp() override { + // Code here will be called immediately after the constructor (right before + // each test) + } + + void TearDown() override { + // Code here will be called immediately after each test (right before the + // destructor) + } + + // Objects declared here can be used by all tests in the test case +}; + +TEST_F(ConfirmationsFetchPaymentTokenRequestTest, BuildUrl) { + // Arrange + std::string confirmation_id = "c7f8c42d-6768-4dd7-8dc6-612cbba3ec21"; + + // Act + auto url = request_->BuildUrl(confirmation_id); + + // Assert + std::string expected_url = "https://ads-serve.bravesoftware.com/v1/confirmation/c7f8c42d-6768-4dd7-8dc6-612cbba3ec21/paymentToken"; // NOLINT + EXPECT_EQ(expected_url, url); +} + +TEST_F(ConfirmationsFetchPaymentTokenRequestTest, GetMethod) { + // Arrange + + // Act + auto method = request_->GetMethod(); + + // Assert + EXPECT_EQ(URLRequestMethod::GET, method); +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/test/confirmations_get_signed_tokens_request_unittest.cc b/vendor/bat-native-confirmations/test/confirmations_get_signed_tokens_request_unittest.cc new file mode 100644 index 000000000000..d21ed5397fef --- /dev/null +++ b/vendor/bat-native-confirmations/test/confirmations_get_signed_tokens_request_unittest.cc @@ -0,0 +1,81 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include +#include + +#include "confirmations_client_mock.h" +#include "bat-native-confirmations/src/confirmations_impl.h" +#include "bat-native-confirmations/src/get_signed_tokens_request.h" +#include "bat-native-confirmations/include/bat/confirmations/wallet_info.h" + +#include "testing/gtest/include/gtest/gtest.h" + +// npm run test -- brave_unit_tests --filter=Confirmations* + +namespace confirmations { + +class ConfirmationsGetSignedTokensRequestTest : public ::testing::Test { + protected: + std::unique_ptr mock_confirmations_client_; + std::unique_ptr confirmations_; + + std::unique_ptr request_; + + ConfirmationsGetSignedTokensRequestTest() : + mock_confirmations_client_(std::make_unique()), + confirmations_(std::make_unique( + mock_confirmations_client_.get())), + request_(std::make_unique()) { + // You can do set-up work for each test here + } + + ~ConfirmationsGetSignedTokensRequestTest() override { + // You can do clean-up work that doesn't throw exceptions here + } + + // If the constructor and destructor are not enough for setting up and + // cleaning up each test, you can use the following methods + + void SetUp() override { + // Code here will be called immediately after the constructor (right before + // each test) + } + + void TearDown() override { + // Code here will be called immediately after each test (right before the + // destructor) + } + + // Objects declared here can be used by all tests in the test case +}; + +TEST_F(ConfirmationsGetSignedTokensRequestTest, BuildUrl) { + // Arrange + WalletInfo wallet_info; + wallet_info.payment_id = "e7fcf220-d3f4-4111-a0b2-6157d0347567"; + wallet_info.public_key = "3fc8ff3b121e7b7875750d26eaba6f06a3b06d96cf6b2fb898323917e7be9d16e255a4a6f7eb8647428f727c0d4e1958bd8e69a984eee38514d1e483aab27edf"; // NOLINT + + std::string nonce = "8561a644-6f42-49be-a2f4-4bc69dc87a27"; + + // Act + auto url = request_->BuildUrl(wallet_info, nonce); + + // Assert + std::string expected_url = "https://ads-serve.bravesoftware.com/v1/confirmation/token/e7fcf220-d3f4-4111-a0b2-6157d0347567?nonce=8561a644-6f42-49be-a2f4-4bc69dc87a27"; // NOLINT + EXPECT_EQ(expected_url, url); +} + +TEST_F(ConfirmationsGetSignedTokensRequestTest, GetMethod) { + // Arrange + + // Act + auto method = request_->GetMethod(); + + // Assert + EXPECT_EQ(URLRequestMethod::GET, method); +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/test/confirmations_redeem_payment_tokens_request_unittest.cc b/vendor/bat-native-confirmations/test/confirmations_redeem_payment_tokens_request_unittest.cc new file mode 100644 index 000000000000..d0aecbc82959 --- /dev/null +++ b/vendor/bat-native-confirmations/test/confirmations_redeem_payment_tokens_request_unittest.cc @@ -0,0 +1,179 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include +#include + +#include "confirmations_client_mock.h" +#include "bat-native-confirmations/src/confirmations_impl.h" +#include "bat-native-confirmations/src/redeem_payment_tokens_request.h" +#include "bat-native-confirmations/src/unblinded_tokens.h" +#include "bat-native-confirmations/include/bat/confirmations/wallet_info.h" + +#include "testing/gtest/include/gtest/gtest.h" + +// npm run test -- brave_unit_tests --filter=Confirmations* + +namespace confirmations { + +class ConfirmationsRedeemPaymentTokensRequestTest : public ::testing::Test { + protected: + std::unique_ptr mock_confirmations_client_; + std::unique_ptr confirmations_; + + std::unique_ptr unblinded_tokens_; + + std::unique_ptr request_; + + ConfirmationsRedeemPaymentTokensRequestTest() : + mock_confirmations_client_(std::make_unique()), + confirmations_(std::make_unique( + mock_confirmations_client_.get())), + unblinded_tokens_(std::make_unique( + confirmations_.get())), + request_(std::make_unique()) { + // You can do set-up work for each test here + } + + ~ConfirmationsRedeemPaymentTokensRequestTest() override { + // You can do clean-up work that doesn't throw exceptions here + } + + // If the constructor and destructor are not enough for setting up and + // cleaning up each test, you can use the following methods + + void SetUp() override { + // Code here will be called immediately after the constructor (right before + // each test) + } + + void TearDown() override { + // Code here will be called immediately after each test (right before the + // destructor) + } + + // Objects declared here can be used by all tests in the test case + std::vector GetUnblindedTokens(const int count) { + std::vector unblinded_tokens_base64 = { + "gXMEnFFPTfgVA3MB11zNRP1ixWjkdw/qsW1RnuQlfkF+ugGxFLafpypS7OJ7mB1zTP775LXrO9vM48fAFNihCOYZS660ClZE/xfDFd930yb12+isTsk6KswtxR10Aogc", // NOLINT + "nEHl6RxMncjw0NKaRxrdpa5iZ7bD+nvBm4yifAYrFgEPJ9DluocwsSS2JUy1nkkcPwWQC3wx5ekhL3Ca9xi7yYBCAPsup2JFSbp5iYUaeWiCxF6w8I1MKrjPj6trywQ6", // NOLINT + "MNrshKuw6zUTsmlZ+w4WzlJknjV/m/ZYyWUhwSmzyW8Dm/VGpMrifyw5txpNu+SQyNcAR+EJ468ADS5qfNfH7yS0kP9z1OJwMNfLiCTHOCiwd7PJkdv14T/vGS5AT1B5", // NOLINT + "MRAbYbmnmjM5bqlbHsX9iuy1Jwc9GCGEA4idBt+PNaQONgbZaPbxHb2pOjw1H6sbgJ2eeIwtobrRRmy+diurWoa0cJ8IG9oy3YtOj8bgc7hy/x5Ixu0kxylNxTKb5b9Z", // NOLINT + "aMTJ5HnQot4p6lU5LuXMdYPt3q3Eg1pz5pB2q1c8ys6qVVHd1PyrtEVY+qGJrET3ay2E12Qft0UhNzVUkrgnZ4Kh3mmpcm9wbYnmsid2GK3dBzuHC0ggnYoir1Oo+A8D", // NOLINT + "lv6mXcIzMFmBbK37U3SFRxgMiRcM4pGLfrdgp0TCevTJ+XbDlHGNIXxYU8CT8ztGwoJSxYjtBh/MGSpjaklJG37ttqDaMzMT0VhKgEvTHuY7qmyi55WtWVENispKe35M", // NOLINT + "f3v9XvsBKp7fdXwQSQHNpHN0MPDzGJ1obhc37pLLyv65/JbdMbsXSQ1dGP0+nD/ETvAFzWzro9s/8HQo0MPLBiKkzvAwnaWyM+TAXG5xwL70iICkNApiv57kUfzvnudp", // NOLINT + "uSczWJh99T9QKlsDGoRSBpjoMFf4nQj/A5AW72m9o6akR4BkzQ1M1ATIyZde5O4Q2iSV+KRjGPUheU7QmTQxDS6l79e8a+ro2uXZKbxjY+XAM7PO+iFOOAZuR4IUoJpF", // NOLINT + "2W8uYe1n6lFMiQFuD9wHLjr2qYhDB6AM3oXyetnsuR9fOxo8BXu28IzQbkCueWSyBEZ54Xf4AzPyPY2cB73Gh8LuyY4vChgP+E9LwI3yqWyD+RR4O6hCo2e7yKm9dTAm", // NOLINT + "tl+V73HJRK2g4TWlqRGxjXeMvhmOvrnLFMfEbUJuiMiByZOUuK4hffoXB5VmbiGLYvJr3shcFpmxMZSuLK3Q97QbP27wmoU+Lk8Jy+MGR+9OTn4MpyvSOfVvDhLypSMG" // NOLINT + }; + + int modulo = unblinded_tokens_base64.size(); + + std::vector unblinded_tokens; + for (int i = 0; i < count; i++) { + auto unblinded_token_base64 = unblinded_tokens_base64.at(i % modulo); + + auto unblinded_token = + UnblindedToken::decode_base64(unblinded_token_base64); + + unblinded_tokens.push_back(unblinded_token); + } + + return unblinded_tokens; + } +}; + +TEST_F(ConfirmationsRedeemPaymentTokensRequestTest, BuildUrl) { + // Arrange + WalletInfo wallet_info; + wallet_info.payment_id = "e7fcf220-d3f4-4111-a0b2-6157d0347567"; + wallet_info.public_key = "3fc8ff3b121e7b7875750d26eaba6f06a3b06d96cf6b2fb898323917e7be9d16e255a4a6f7eb8647428f727c0d4e1958bd8e69a984eee38514d1e483aab27edf"; // NOLINT + + // Act + auto url = request_->BuildUrl(wallet_info); + + // Assert + std::string expected_url = "https://ads-serve.bravesoftware.com/v1/confirmation/payment/e7fcf220-d3f4-4111-a0b2-6157d0347567"; // NOLINT + EXPECT_EQ(expected_url, url); +} + +TEST_F(ConfirmationsRedeemPaymentTokensRequestTest, GetMethod) { + // Arrange + + // Act + auto method = request_->GetMethod(); + + // Assert + EXPECT_EQ(URLRequestMethod::PUT, method); +} + +TEST_F(ConfirmationsRedeemPaymentTokensRequestTest, BuildBody) { + // Arrange + WalletInfo wallet_info; + wallet_info.payment_id = "e7fcf220-d3f4-4111-a0b2-6157d0347567"; + wallet_info.public_key = "3fc8ff3b121e7b7875750d26eaba6f06a3b06d96cf6b2fb898323917e7be9d16e255a4a6f7eb8647428f727c0d4e1958bd8e69a984eee38514d1e483aab27edf"; // NOLINT + + auto unblinded_tokens = GetUnblindedTokens(7); + unblinded_tokens_->SetTokens(unblinded_tokens); + + auto tokens = unblinded_tokens_->GetAllTokens(); + + auto payload = request_->CreatePayload(wallet_info); + + // Act + auto body = request_->BuildBody(tokens, payload, wallet_info); + + // Assert + std::string expected_body = R"({"payload":"{\"paymentId\":\"e7fcf220-d3f4-4111-a0b2-6157d0347567\"}","paymentCredentials":[{"credential":{"signature":"Vdt2I2razGwIiVaHsFomAZjJAJETqVwcFFd0iT+hsGiQu0HB/0ZRwgHcAkhJuVt0j7Dl5VfTwmy7BfA3arwmjA==","t":"gXMEnFFPTfgVA3MB11zNRP1ixWjkdw/qsW1RnuQlfkF+ugGxFLafpypS7OJ7mB1zTP775LXrO9vM48fAFNihCA=="},"publicKey":"3fc8ff3b121e7b7875750d26eaba6f06a3b06d96cf6b2fb898323917e7be9d16e255a4a6f7eb8647428f727c0d4e1958bd8e69a984eee38514d1e483aab27edf"},{"credential":{"signature":"cMsDGegcXs2YgFzQTMkgi6KHhnLiehiY6cNi/8TWD5h+9JAecWYwGKCLz8DXbN7DIe5tNL8DjRu0tL9PCz92ZQ==","t":"nEHl6RxMncjw0NKaRxrdpa5iZ7bD+nvBm4yifAYrFgEPJ9DluocwsSS2JUy1nkkcPwWQC3wx5ekhL3Ca9xi7yQ=="},"publicKey":"3fc8ff3b121e7b7875750d26eaba6f06a3b06d96cf6b2fb898323917e7be9d16e255a4a6f7eb8647428f727c0d4e1958bd8e69a984eee38514d1e483aab27edf"},{"credential":{"signature":"Iy6MUNwZ4pIGNIuOKyPJC2Pc+GfJQEgp0ImkB8ZBuIM4+opdxGBlMmY+oTz68/ovoZHi2Vcl3LEHL68dxPLLyQ==","t":"MNrshKuw6zUTsmlZ+w4WzlJknjV/m/ZYyWUhwSmzyW8Dm/VGpMrifyw5txpNu+SQyNcAR+EJ468ADS5qfNfH7w=="},"publicKey":"3fc8ff3b121e7b7875750d26eaba6f06a3b06d96cf6b2fb898323917e7be9d16e255a4a6f7eb8647428f727c0d4e1958bd8e69a984eee38514d1e483aab27edf"},{"credential":{"signature":"oAzrUB6X14gDn/WGT2CGkhfCr2YtHSV5Yh/qQw6TkD3ESq8rIPnJLAZBCu82AzpCHpQD03KvApWq/ZidevAh8w==","t":"MRAbYbmnmjM5bqlbHsX9iuy1Jwc9GCGEA4idBt+PNaQONgbZaPbxHb2pOjw1H6sbgJ2eeIwtobrRRmy+diurWg=="},"publicKey":"3fc8ff3b121e7b7875750d26eaba6f06a3b06d96cf6b2fb898323917e7be9d16e255a4a6f7eb8647428f727c0d4e1958bd8e69a984eee38514d1e483aab27edf"},{"credential":{"signature":"OWc9CLfJSwRIDGjbNZkd5frik39/meIjEJCmcHlDWsc6IOn2qr4iI1XI8SAAfhT9ncUWGThrGZyUC1PSGl4tGw==","t":"aMTJ5HnQot4p6lU5LuXMdYPt3q3Eg1pz5pB2q1c8ys6qVVHd1PyrtEVY+qGJrET3ay2E12Qft0UhNzVUkrgnZw=="},"publicKey":"3fc8ff3b121e7b7875750d26eaba6f06a3b06d96cf6b2fb898323917e7be9d16e255a4a6f7eb8647428f727c0d4e1958bd8e69a984eee38514d1e483aab27edf"},{"credential":{"signature":"VgybmDGXgO9Z90KZ4zHf/cH0fFZrpJbIKMDVdK5sE726b6yVVvcQ6KhOhupwMOe8n71C3geNJb2Adf5CBpwClw==","t":"lv6mXcIzMFmBbK37U3SFRxgMiRcM4pGLfrdgp0TCevTJ+XbDlHGNIXxYU8CT8ztGwoJSxYjtBh/MGSpjaklJGw=="},"publicKey":"3fc8ff3b121e7b7875750d26eaba6f06a3b06d96cf6b2fb898323917e7be9d16e255a4a6f7eb8647428f727c0d4e1958bd8e69a984eee38514d1e483aab27edf"},{"credential":{"signature":"ioKIMHG1JQnrbMA3PIvM2q8kzdi6KTKxFdyQB/LATqfD2mzihGG8lsic1CeyD2dhJg8ZqLuwfHwgyT51vD4NFA==","t":"f3v9XvsBKp7fdXwQSQHNpHN0MPDzGJ1obhc37pLLyv65/JbdMbsXSQ1dGP0+nD/ETvAFzWzro9s/8HQo0MPLBg=="},"publicKey":"3fc8ff3b121e7b7875750d26eaba6f06a3b06d96cf6b2fb898323917e7be9d16e255a4a6f7eb8647428f727c0d4e1958bd8e69a984eee38514d1e483aab27edf"}]})"; // NOLINT + EXPECT_EQ(expected_body, body); +} + +TEST_F(ConfirmationsRedeemPaymentTokensRequestTest, CreatePayload) { + // Arrange + WalletInfo wallet_info; + wallet_info.payment_id = "e7fcf220-d3f4-4111-a0b2-6157d0347567"; + wallet_info.public_key = "3fc8ff3b121e7b7875750d26eaba6f06a3b06d96cf6b2fb898323917e7be9d16e255a4a6f7eb8647428f727c0d4e1958bd8e69a984eee38514d1e483aab27edf"; // NOLINT + + // Act + auto payload = request_->CreatePayload(wallet_info); + + // Assert + std::string expected_payload = + R"({"paymentId":"e7fcf220-d3f4-4111-a0b2-6157d0347567"})"; + EXPECT_EQ(expected_payload, payload); +} + +TEST_F(ConfirmationsRedeemPaymentTokensRequestTest, HeadersCount) { + // Arrange + + // Act + auto headers = request_->BuildHeaders(); + + // Assert + auto count = headers.size(); + EXPECT_EQ(1UL, count); +} + +TEST_F(ConfirmationsRedeemPaymentTokensRequestTest, GetAcceptHeaderValue) { + // Arrange + + // Act + auto accept_header_value = request_->GetAcceptHeaderValue(); + + // Assert + EXPECT_EQ(accept_header_value, "application/json"); +} + +TEST_F(ConfirmationsRedeemPaymentTokensRequestTest, GetContentType) { + // Arrange + + // Act + auto content_type = request_->GetContentType(); + + // Assert + EXPECT_EQ(content_type, "application/json"); +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/test/confirmations_request_signed_tokens_request_unittest.cc b/vendor/bat-native-confirmations/test/confirmations_request_signed_tokens_request_unittest.cc new file mode 100644 index 000000000000..195bec042a95 --- /dev/null +++ b/vendor/bat-native-confirmations/test/confirmations_request_signed_tokens_request_unittest.cc @@ -0,0 +1,197 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include +#include +#include + +#include "confirmations_client_mock.h" +#include "bat-native-confirmations/src/confirmations_impl.h" +#include "bat-native-confirmations/src/request_signed_tokens_request.h" +#include "bat-native-confirmations/src/security_helper.h" +#include "bat-native-confirmations/include/bat/confirmations/wallet_info.h" + +#include "testing/gtest/include/gtest/gtest.h" + +// npm run test -- brave_unit_tests --filter=Confirmations* + +namespace confirmations { + +class ConfirmationsRequestSignedTokensRequestTest : public ::testing::Test { + protected: + std::unique_ptr mock_confirmations_client_; + std::unique_ptr confirmations_; + + std::unique_ptr request_; + + ConfirmationsRequestSignedTokensRequestTest() : + mock_confirmations_client_(std::make_unique()), + confirmations_(std::make_unique( + mock_confirmations_client_.get())), + request_(std::make_unique()) { + // You can do set-up work for each test here + } + + ~ConfirmationsRequestSignedTokensRequestTest() override { + // You can do clean-up work that doesn't throw exceptions here + } + + // If the constructor and destructor are not enough for setting up and + // cleaning up each test, you can use the following methods + + void SetUp() override { + // Code here will be called immediately after the constructor (right before + // each test) + } + + void TearDown() override { + // Code here will be called immediately after each test (right before the + // destructor) + } + + // Objects declared here can be used by all tests in the test case + std::vector GetTokens(const int count) { + std::vector tokens_base64 = { + "B2CbFJJ1gKJy9qs8NMburYj12VAqnVfFrQ2K2u0QwcBi1YoMMHQfRQeDbOQ62Z+WrCOTYLbZrBY7+j9hz2jLFL74KSQig7/PDbqIpmNYs6PpNUK3MpVc4dm5R9lkySQF", // NOLINT + "MHbZ2XgFtno4g7yq/tmFCr1sFuFrkE7D6JjVAmM70ZJrwH/EqYNaWL1qANSKXX9ghyiN8KUDThEhDTqhuBQ4v7gzNY2qHav9uiAmjqvLzDp7oxmUBFohmdkVlvWhxV0F", // NOLINT + "6WWlDOIHNs6Az23V+VM3QTDFFDkR9D0CGZSd27/cjo3eO5EDEzi9Ev5omoJwZQHqiObVgUXmRFRa8UYXsL4O4MvBsYlgGz9VyoBLXo0ethmEBowsrMubj3GR4CQaN6gB", // NOLINT + "IzhzMBc/rI8uzGuARaudvUYY662c0tqzYDPOfvbWRiThTTyH9fU13nmAmhkdtpoUnDlGTE37fLDpjWPlGdAd9r2qh++09+sa9xHV+V9SXHbr9gtJBybZMWr8vjQuslMM", // NOLINT + "eZDj3OGto3E0Uz0djk6Ilfgz+Ar4kMAXOL68iLTNycBPgoNnM1rtjaL4OqvSc1ascZhGCf6Js42B/wPVzUYuKMloATKmYs7Ym+ndXnuX0FV9XJs94tlIGcp4k0uOMcgB", // NOLINT + "8QNMIJuJfu9W4KURg1Y2coXyKjbJOQLmo6RIGg+tKkUcY7srgUpac8XteSwWy6o6YLDoNKXS21FmbZ4VHb+Bv2NVhBWooK0b8lwQAdVUax5+Ej77qK//GeyRmAcAQV8G", // NOLINT + "6ILvEIM3+kgacI6JFa5415qAdzcg6hccQzEyhMsqYFa3MZKzvcLEF57pFFRoaYw7nFDQL8v8CDG2iSUoBIk8bmeoUwgdXsgofHvSahcBSWawmcnn8ESJTkZPGgxaFgcA", // NOLINT + "VHDbhwcInhhjL/HhSF+NyYak7Zy24xzDDTpI+3rsEZ7iL4SYUdcVkFmJ+bg8QlmPv8UMTchPBP7CVtCc96jj5PwGMsvAB8t2TffdSK9SHBRx/ZINmYSb7x+GTTdqWugB", // NOLINT + "YbH2x8oMkQrPR0uX6h8LrcgXSrPlSg60FFfp8V+GM8eiCQTwPJ643kilmlKU/qNZM3e28Hw3W4GPAELnm/YxFzG6qJ4B1wVTBdl/myIa0M3QIdoOn2//+JH2u4jRtIgN", // NOLINT + "0/KAtyvRoYLhsQnwu4McuG7pglpDpi2BXQi//FwGu8m/O+iTh1Lijzpt2RCnotGh0Wid9efnojrYQH5NJv9GYOhUDX7yYHVjUorc6y6SkUaO1aATc42RciRQ0cmuQFQC" // NOLINT + }; + + // Blinded tokens for above tokens: + // "iEK4BXJINfAa0kzgpnnukGUAHvH5303+Y/msR5+u/nY=", + // "eAAv7FNH2twpELsYf3glHLlOhnnlIMovIeEgEmcjgyo=", + // "1G0+8546Y6jCIUXG0cKJq0qpkd6NsnG+4w9oSVW3gH8=", + // "9gtgRG1Fr6eQAfvIO7qGes2d0Zwnd7EXdOQI9ik0PRE=", + // "iGH6L3EtdYLQiD63D/elY3nfI2R8BJzq/ufPtFkTAXg=", + // "5mtjGDYwCC54EyFrr/5XoG98Cag7ughIYYr6mp8jmEQ=", + // "8vU5KFc8AXn45rcqTGdM9MeUvG+z8RL9o27Lir4izBY=", + // "huXHzk2SgmJkMauedoRUr/p86+jh1vKIa93O9FP2PQk=", + // "cg9nMhSA7hVoBFbq5rEGVF7kgAoXqMmPApmxO99aGVU=", + // "sBJB0ez2qw929moV4PZgw+AVbj7mBj9Mtqy3r2D0kw4=" + + int modulo = tokens_base64.size(); + + std::vector tokens; + for (int i = 0; i < count; i++) { + auto token_base64 = tokens_base64.at(i % modulo); + auto token = Token::decode_base64(token_base64); + + tokens.push_back(token); + } + + return tokens; + } +}; + +TEST_F(ConfirmationsRequestSignedTokensRequestTest, BuildUrl) { + // Arrange + WalletInfo wallet_info; + wallet_info.payment_id = "e7fcf220-d3f4-4111-a0b2-6157d0347567"; + wallet_info.public_key = "3fc8ff3b121e7b7875750d26eaba6f06a3b06d96cf6b2fb898323917e7be9d16e255a4a6f7eb8647428f727c0d4e1958bd8e69a984eee38514d1e483aab27edf"; // NOLINT + + // Act + auto url = request_->BuildUrl(wallet_info); + + // Assert + std::string expected_url = "https://ads-serve.bravesoftware.com/v1/confirmation/token/e7fcf220-d3f4-4111-a0b2-6157d0347567"; // NOLINT + EXPECT_EQ(expected_url, url); +} + +TEST_F(ConfirmationsRequestSignedTokensRequestTest, GetMethod) { + // Arrange + + // Act + auto method = request_->GetMethod(); + + // Assert + EXPECT_EQ(URLRequestMethod::POST, method); +} + +TEST_F(ConfirmationsRequestSignedTokensRequestTest, BuildBody) { + // Arrange + auto tokens = GetTokens(3); + auto blinded_tokens = helper::Security::BlindTokens(tokens); + + // Act + auto body = request_->BuildBody(blinded_tokens); + + // Assert + std::string expected_body = R"({"blindedTokens":["iEK4BXJINfAa0kzgpnnukGUAHvH5303+Y/msR5+u/nY=","eAAv7FNH2twpELsYf3glHLlOhnnlIMovIeEgEmcjgyo=","1G0+8546Y6jCIUXG0cKJq0qpkd6NsnG+4w9oSVW3gH8="]})"; // NOLINT + EXPECT_EQ(expected_body, body); +} + +TEST_F(ConfirmationsRequestSignedTokensRequestTest, HeadersCount) { + // Arrange + std::string body = R"({"blindedTokens":["1Fwm6gOsXS4wmzjQjbgk69X7Yd1IGjl8nhiKGWCzXTk=","4hPPIOdzoRogm847b/AuHqapRevwByYeyLOTdnQ3Kk8=","BFx/fw+mK2N5JHwfuWoYHOvchCE4eQD8YWO3ET2ym3Q=","jGJV/w4aAMbIWNswlgySTRRFQmIaRb+1IGeyaIObPTk=","gAPctDibVJNImTIqkSdHPQOp+l3hIbINYS2ZDD/tPH4=","CIIlpfjC4fC4hzFRgzQL74BCIWs1TKdlj278nBHWCzA=","JgDYrHaIa51yQOl9uCfDmfKSAxgZbGsJ74CUe/qN7zc=","At4/Hcjzurz9+4NVq0PIGGt8NpcKmNnfhTykDTktSWg=","Xpoh1XhWWs4sI7XmgfSaVEJiU/svFW1T6XNlsRGqKHk=","ytSdCx4H2hCNlWZc59GBfhFBHRchSEuf8pzYzVIrzwM=","SpXgjYqH746GTlcufFiTQcP0IxpuO9r0LoREv/1JQww=","XlyA1GlQQakgu9di+27nMjRz8afZ6w/Ak9Xw01XQzR4=","6oICEjxG2lPgRMoGFz7NdQnPSZ16lwCnBoxMK/U8TQU=","SuzYYzPXI2+09Do/7A8b5YUTpUk4aD06FNTt33gWOnY=","LrSe7y4YjW0E8FuHBQd6xjbueUacKMGKcQyF0um2Eyc=","VLvXp7wZa81N8YhWhTpJoEidbwzfc267oE0/Ku/oC3Q=","KKd26nziS0k4xlg+/l3K7zIrhUUbRunCKlQKpcYvNFs=","NN1D1KKhPc/2gZQA9Rdm1h7OPrXgAIIvORTS0hip30g=","vscyDf3W6PGOg3I94oTmGyjeKYyB0qNAOfl4jZhHpmo=","VIIQ6gsx64nY0VgLatIpTTUs9s2axYDk5u/YIDqd/Wo=","qsUHc1BfYhcgjGU9Nb9hWJXvjuRaiH8byR6WjWXSQQQ=","uIYoo9Y7PuBH8URfZL31pR6ILaP5nH3Ut4yRe6AwjHA=","mh6huuiT7m0RbGs5k1IC+PQc8cGneKxVL/89CvQ/tzA=","tGloa/PK2MJDZ9yR6LL2U96WlH+6M7Da6eBNosTkj1M=","YjF+ljBv6I9tKoGTb/g29jFtwiqSRy+GbFmqoy4UjwE=","zFNLZf1IbCAJWTK6UEM3+GGCQ4CO89wLlKWZ9w48kWI=","4kIdTNVujRlS1Bf+a23Vzt6PITHpupb/YMQFZdV1aj0=","0HLAUuAJadMSX8Sgn3gdPjXO9s9BDT3vvpS4Zrtu9kU=","NDGBAi0R4FPWt0XgMn1g0uxCWOiOY6SZ+4XFmZx/CBg=","dtXEsDHaTHt8WK5ChXAuZ4vg79eKgNthDrACCBiwOk0=","4oY5iFVdAyLekOT1/fLeZvcJEKR9imFph8AhngF0Pgw=","+CeRUWzu6VxlxO4I1ZTLqAf3rTQd1RrAiRoywmMVPCc=","HOcA3/LprxFZc0gNT3XPNZsiFAG36cOWBwJ+002l0Qc=","lEO24pANnAFyXcMZw03rJXf5rfuManuHcfAalJQkZ0g=","sFXgELiusqD9SdHor3cZijzrlyzetafMfiGGWI6YDn0=","GJPsWMTK65dYYYnPRem7cc9MX0M6Q8XtLwboN+gEPF8=","NKZa4oTiJj/d2yCYbwCFdaQg2iZKArvEjQBylB1JOlI=","ti5l9fVKX/BDSolaMILczmfzQ75Y2AjiTII6FRTdx1Y=","Gtxl2H2r5PbOx+iFP8dzbuCRAqy9IZPwx6ypzoioDTc=","bIAmxGFA4XQntsXFd3PLHpyszB4wo59jFeWMWPMt9SE=","aJ+Uv2QxWPktxhzJH4nsyRUX88u2lajBv0cZWpfZnlo=","ACea3T+vdzi/lEgr4XmrFlFLSFFIPGPDzkZhaQrbYH4=","Egwk5NjjEaWrapV7oDI2Qsscldrc4yBIReju78MRixE=","ALV+JaHwFt44WFrPtKW2Jf3mQGxRSWXrdE60ha3J6X8=","utiko2dlzzmjjTd1QNLFg2IGs+phwHFOQom42IUiQj4=","SIIOeOuuMtN6eZFKHOYHXI6a9/QZjQoBJLJZ6PLb4XE=","5I/n0MtuDg0QkGRSzN8NalT0bksM209XCqlfwll+elA=","diM0LIWxPXa6RbBXMSIqKMWnQtXwtf1Mga1zBgNO4HA=","jnmj38cOfm4JSmZ1GUlt/BT/QzjsBnKOASMgTONd2zI=","VpWmr3pnfZE1f5KqZYwYAUDi0K04ZvibcA/p65VVDk8=","niNAlSVamLJMs9dHSmQ7Sa5z/ucwb7aDi+ovW1OIelY=","nOORDPKHI5RFJ4BsPgNCljS46GOU4JUFBFi0a7rj63s=","4v0n60wYwj3po/wsnClhnHEtpai8PGAiRMZgoS4UhWE=","mAbAnTSP3lXwToKbs33YkRrWF73ITwQy6iNTv1WFCh4=","xAn14oqfjUaViF7kr1AlH8PiE7amatXuDJy/sFzfqX4=","chniTWNWqAFCHksp4dbT9eNyRUqAxgkuuYRL4iW8WwE=","dj3/xCOmQ1lHOBYTdC+tyJFFKuCBIjsR733R7ehk4m0=","jK/O0uJqBmqaObz7S3C9JCv6fwmK6mX0jz4wNnuxH3s=","JFDbF4/bRaT1lqfwMMMkYthRn48O2ENsvJeDN9OJx2w=","atx0/2ZAlYuv0GoK9LWzl+KvlGw+vR0RF0+YQg/3gQw=","Qioe+g5INKK4n8a4jRTp756JEza9vApNB7jhclG+LXs=","9nblEhmRdSJGQpnXAtc6GtMcL4FVz8/nt4Z9lGMiPE4=","JqbX3u/cNHqvwNTR2/3Gfhi4ULwrYzWtP5wlsBZVqGY=","BFyyYHCpu9wpXQBXjDRZ5i5LEa8dY1VeJu1DScZ6bGU=","FnafJYZBSOULPWtJZVRY9tUOjpgAq+aOygioN//CuGs=","pAwG7HboPVeuCGSXA7RXw+eDj667UApMr1KSUx5f7Qg=","LpTnNc4QCvC/DBLGdfKf7r/DS7A74eWhQ9BLrnEaLk0=","bE3mseRRFqEis+hRH3JEihOQLtQ6+D9nAs+I3czNGX0=","JFTpRiNm2Tg822sdZrLNvWDRsDeVUX06HplUBx2JOA0=","6s9GicBRK2Y5FGgCYhJO3q1qkG+NTN68V8MYEAGSCnA=","aM/DJiQbIjPrTa+vqbOEyBrJYcFRCAd1VWKhk+CC9gI=","6CCWq/HwRCsY1ZVBp8r0Lf/f8zhQMYuMVRuq7qKuEGY=","EpodVxvX9X6vHaK9MyLemhzWIzZR7HzXj4V7eZuXNkQ=","AolM6TCNMNXd1Id9ColrHjpx3ECJX0SChbTrjFYR9GI=","YDaHbVval/mHopvAgnVo9svvx2nHOSf6arRRdoJYF0U=","PPNHrkMM44EZDNeD0mYKQ4zJo1elpWDMBpo+UlGTFnc=","5AykA0xLBRW6tQD/q9mWuvgHJJXkNLytS54TMlafFlw=","9G8rZDCIqPYIhsD024b32DPG4qgRG+GCvheo5pcYLRE=","TGlueCCVRBm9L8pVeDaH9SfiRfMxYtZnbaGTh8BUrjw=","VCDHZyGXUANKXPiMAUdvcwGmEgSjF3Rp0p5m7wnaD2k=","PgRiNEWFmMoZbXDB8XTUf54kHptmdd+nkqFwZXMTbw8=","zNh/pmL0nU2EgioT0vstea1z8ueWLJYF/aPHZOFHf3U=","7DNsBs0J0/iAlMQ3/atXLPubCT/10fVYGy6jtc1F8Tk=","cp58o4toOOaHTPqTP6kODtdW+n1sRZQgTByLI0Ebulw=","bLgcjSDRamrc2IGa/25VhC/rd5DDbyRNQU1Ouo1qcEI=","eFjam254LokXnmjGPVWdJfhV0/anmKY7aK+tFxwDe2I=","ekIddkNg0jEn3M6tvmKgStf9yZFF6fQdx2B67LExsmk=","zAJTYpueGMLLi297bKBgRi4ManZRFM6wxdpOYiovIEA=","uCBIo8IEb1ec3IhtDXkPYze+XU4wsfGR3oX02G7cSTc=","QNj0S9EMq94lAWQNnIN6e5UQpsdO+LCkvMCIcTkjxG4=","FFKXBCynr1ZaryylS5G2fCjqCytCdHl8ROloo0Cw5BA=","ZrOSxL42vFlhSYZTaiZ/x4WFXnJUx01oEwwtLajzUXo=","qo0+d+Sq6B28fxpsVYznbaiZAPP3J6DwUkiWlMjWvDo=","SCLNw3FEmsu2gSxz7lkZ2LIEyric9/XT/y1EYkIWpDo=","pPG6bTM72Raa9v9GR3x4iObdmPivP8++AXKjPBcFMU4=","SMdqY9YbxOn7CfkjUOy9PbQPiYdKZhwXhw36tCj6Jwo=","4OjUFfbXtu1t+vS90b3gGLJTnVwsQWf8ZpqxCH76BUw=","XNQyUvGUKrUf5cr09dr+ZItV+fuIxWYNAzLrSC2E7nQ=","Zlg090Q8tSs76RoTRqigI/QpDzXiie7EmKeASzc0CnY=","ErCvdmKjJkMqXSmS9cyHZKIqwTSigjWYt+XgVb2+EDo="]})"; // NOLINT + + WalletInfo wallet_info; + wallet_info.payment_id = "e7fcf220-d3f4-4111-a0b2-6157d0347567"; + wallet_info.public_key = "3fc8ff3b121e7b7875750d26eaba6f06a3b06d96cf6b2fb898323917e7be9d16e255a4a6f7eb8647428f727c0d4e1958bd8e69a984eee38514d1e483aab27edf"; // NOLINT + + // Act + auto headers = request_->BuildHeaders(body, wallet_info); + + // Assert + auto count = headers.size(); + EXPECT_EQ(3UL, count); +} + +TEST_F(ConfirmationsRequestSignedTokensRequestTest, BuildDigestHeaderValue) { + // Arrange + std::string body = R"({"blindedTokens":["1Fwm6gOsXS4wmzjQjbgk69X7Yd1IGjl8nhiKGWCzXTk=","4hPPIOdzoRogm847b/AuHqapRevwByYeyLOTdnQ3Kk8=","BFx/fw+mK2N5JHwfuWoYHOvchCE4eQD8YWO3ET2ym3Q=","jGJV/w4aAMbIWNswlgySTRRFQmIaRb+1IGeyaIObPTk=","gAPctDibVJNImTIqkSdHPQOp+l3hIbINYS2ZDD/tPH4=","CIIlpfjC4fC4hzFRgzQL74BCIWs1TKdlj278nBHWCzA=","JgDYrHaIa51yQOl9uCfDmfKSAxgZbGsJ74CUe/qN7zc=","At4/Hcjzurz9+4NVq0PIGGt8NpcKmNnfhTykDTktSWg=","Xpoh1XhWWs4sI7XmgfSaVEJiU/svFW1T6XNlsRGqKHk=","ytSdCx4H2hCNlWZc59GBfhFBHRchSEuf8pzYzVIrzwM=","SpXgjYqH746GTlcufFiTQcP0IxpuO9r0LoREv/1JQww=","XlyA1GlQQakgu9di+27nMjRz8afZ6w/Ak9Xw01XQzR4=","6oICEjxG2lPgRMoGFz7NdQnPSZ16lwCnBoxMK/U8TQU=","SuzYYzPXI2+09Do/7A8b5YUTpUk4aD06FNTt33gWOnY=","LrSe7y4YjW0E8FuHBQd6xjbueUacKMGKcQyF0um2Eyc=","VLvXp7wZa81N8YhWhTpJoEidbwzfc267oE0/Ku/oC3Q=","KKd26nziS0k4xlg+/l3K7zIrhUUbRunCKlQKpcYvNFs=","NN1D1KKhPc/2gZQA9Rdm1h7OPrXgAIIvORTS0hip30g=","vscyDf3W6PGOg3I94oTmGyjeKYyB0qNAOfl4jZhHpmo=","VIIQ6gsx64nY0VgLatIpTTUs9s2axYDk5u/YIDqd/Wo=","qsUHc1BfYhcgjGU9Nb9hWJXvjuRaiH8byR6WjWXSQQQ=","uIYoo9Y7PuBH8URfZL31pR6ILaP5nH3Ut4yRe6AwjHA=","mh6huuiT7m0RbGs5k1IC+PQc8cGneKxVL/89CvQ/tzA=","tGloa/PK2MJDZ9yR6LL2U96WlH+6M7Da6eBNosTkj1M=","YjF+ljBv6I9tKoGTb/g29jFtwiqSRy+GbFmqoy4UjwE=","zFNLZf1IbCAJWTK6UEM3+GGCQ4CO89wLlKWZ9w48kWI=","4kIdTNVujRlS1Bf+a23Vzt6PITHpupb/YMQFZdV1aj0=","0HLAUuAJadMSX8Sgn3gdPjXO9s9BDT3vvpS4Zrtu9kU=","NDGBAi0R4FPWt0XgMn1g0uxCWOiOY6SZ+4XFmZx/CBg=","dtXEsDHaTHt8WK5ChXAuZ4vg79eKgNthDrACCBiwOk0=","4oY5iFVdAyLekOT1/fLeZvcJEKR9imFph8AhngF0Pgw=","+CeRUWzu6VxlxO4I1ZTLqAf3rTQd1RrAiRoywmMVPCc=","HOcA3/LprxFZc0gNT3XPNZsiFAG36cOWBwJ+002l0Qc=","lEO24pANnAFyXcMZw03rJXf5rfuManuHcfAalJQkZ0g=","sFXgELiusqD9SdHor3cZijzrlyzetafMfiGGWI6YDn0=","GJPsWMTK65dYYYnPRem7cc9MX0M6Q8XtLwboN+gEPF8=","NKZa4oTiJj/d2yCYbwCFdaQg2iZKArvEjQBylB1JOlI=","ti5l9fVKX/BDSolaMILczmfzQ75Y2AjiTII6FRTdx1Y=","Gtxl2H2r5PbOx+iFP8dzbuCRAqy9IZPwx6ypzoioDTc=","bIAmxGFA4XQntsXFd3PLHpyszB4wo59jFeWMWPMt9SE=","aJ+Uv2QxWPktxhzJH4nsyRUX88u2lajBv0cZWpfZnlo=","ACea3T+vdzi/lEgr4XmrFlFLSFFIPGPDzkZhaQrbYH4=","Egwk5NjjEaWrapV7oDI2Qsscldrc4yBIReju78MRixE=","ALV+JaHwFt44WFrPtKW2Jf3mQGxRSWXrdE60ha3J6X8=","utiko2dlzzmjjTd1QNLFg2IGs+phwHFOQom42IUiQj4=","SIIOeOuuMtN6eZFKHOYHXI6a9/QZjQoBJLJZ6PLb4XE=","5I/n0MtuDg0QkGRSzN8NalT0bksM209XCqlfwll+elA=","diM0LIWxPXa6RbBXMSIqKMWnQtXwtf1Mga1zBgNO4HA=","jnmj38cOfm4JSmZ1GUlt/BT/QzjsBnKOASMgTONd2zI=","VpWmr3pnfZE1f5KqZYwYAUDi0K04ZvibcA/p65VVDk8=","niNAlSVamLJMs9dHSmQ7Sa5z/ucwb7aDi+ovW1OIelY=","nOORDPKHI5RFJ4BsPgNCljS46GOU4JUFBFi0a7rj63s=","4v0n60wYwj3po/wsnClhnHEtpai8PGAiRMZgoS4UhWE=","mAbAnTSP3lXwToKbs33YkRrWF73ITwQy6iNTv1WFCh4=","xAn14oqfjUaViF7kr1AlH8PiE7amatXuDJy/sFzfqX4=","chniTWNWqAFCHksp4dbT9eNyRUqAxgkuuYRL4iW8WwE=","dj3/xCOmQ1lHOBYTdC+tyJFFKuCBIjsR733R7ehk4m0=","jK/O0uJqBmqaObz7S3C9JCv6fwmK6mX0jz4wNnuxH3s=","JFDbF4/bRaT1lqfwMMMkYthRn48O2ENsvJeDN9OJx2w=","atx0/2ZAlYuv0GoK9LWzl+KvlGw+vR0RF0+YQg/3gQw=","Qioe+g5INKK4n8a4jRTp756JEza9vApNB7jhclG+LXs=","9nblEhmRdSJGQpnXAtc6GtMcL4FVz8/nt4Z9lGMiPE4=","JqbX3u/cNHqvwNTR2/3Gfhi4ULwrYzWtP5wlsBZVqGY=","BFyyYHCpu9wpXQBXjDRZ5i5LEa8dY1VeJu1DScZ6bGU=","FnafJYZBSOULPWtJZVRY9tUOjpgAq+aOygioN//CuGs=","pAwG7HboPVeuCGSXA7RXw+eDj667UApMr1KSUx5f7Qg=","LpTnNc4QCvC/DBLGdfKf7r/DS7A74eWhQ9BLrnEaLk0=","bE3mseRRFqEis+hRH3JEihOQLtQ6+D9nAs+I3czNGX0=","JFTpRiNm2Tg822sdZrLNvWDRsDeVUX06HplUBx2JOA0=","6s9GicBRK2Y5FGgCYhJO3q1qkG+NTN68V8MYEAGSCnA=","aM/DJiQbIjPrTa+vqbOEyBrJYcFRCAd1VWKhk+CC9gI=","6CCWq/HwRCsY1ZVBp8r0Lf/f8zhQMYuMVRuq7qKuEGY=","EpodVxvX9X6vHaK9MyLemhzWIzZR7HzXj4V7eZuXNkQ=","AolM6TCNMNXd1Id9ColrHjpx3ECJX0SChbTrjFYR9GI=","YDaHbVval/mHopvAgnVo9svvx2nHOSf6arRRdoJYF0U=","PPNHrkMM44EZDNeD0mYKQ4zJo1elpWDMBpo+UlGTFnc=","5AykA0xLBRW6tQD/q9mWuvgHJJXkNLytS54TMlafFlw=","9G8rZDCIqPYIhsD024b32DPG4qgRG+GCvheo5pcYLRE=","TGlueCCVRBm9L8pVeDaH9SfiRfMxYtZnbaGTh8BUrjw=","VCDHZyGXUANKXPiMAUdvcwGmEgSjF3Rp0p5m7wnaD2k=","PgRiNEWFmMoZbXDB8XTUf54kHptmdd+nkqFwZXMTbw8=","zNh/pmL0nU2EgioT0vstea1z8ueWLJYF/aPHZOFHf3U=","7DNsBs0J0/iAlMQ3/atXLPubCT/10fVYGy6jtc1F8Tk=","cp58o4toOOaHTPqTP6kODtdW+n1sRZQgTByLI0Ebulw=","bLgcjSDRamrc2IGa/25VhC/rd5DDbyRNQU1Ouo1qcEI=","eFjam254LokXnmjGPVWdJfhV0/anmKY7aK+tFxwDe2I=","ekIddkNg0jEn3M6tvmKgStf9yZFF6fQdx2B67LExsmk=","zAJTYpueGMLLi297bKBgRi4ManZRFM6wxdpOYiovIEA=","uCBIo8IEb1ec3IhtDXkPYze+XU4wsfGR3oX02G7cSTc=","QNj0S9EMq94lAWQNnIN6e5UQpsdO+LCkvMCIcTkjxG4=","FFKXBCynr1ZaryylS5G2fCjqCytCdHl8ROloo0Cw5BA=","ZrOSxL42vFlhSYZTaiZ/x4WFXnJUx01oEwwtLajzUXo=","qo0+d+Sq6B28fxpsVYznbaiZAPP3J6DwUkiWlMjWvDo=","SCLNw3FEmsu2gSxz7lkZ2LIEyric9/XT/y1EYkIWpDo=","pPG6bTM72Raa9v9GR3x4iObdmPivP8++AXKjPBcFMU4=","SMdqY9YbxOn7CfkjUOy9PbQPiYdKZhwXhw36tCj6Jwo=","4OjUFfbXtu1t+vS90b3gGLJTnVwsQWf8ZpqxCH76BUw=","XNQyUvGUKrUf5cr09dr+ZItV+fuIxWYNAzLrSC2E7nQ=","Zlg090Q8tSs76RoTRqigI/QpDzXiie7EmKeASzc0CnY=","ErCvdmKjJkMqXSmS9cyHZKIqwTSigjWYt+XgVb2+EDo="]})"; // NOLINT + + // Act + auto header_value = request_->BuildDigestHeaderValue(body); + + // Assert + std::string expected_header_value = + "SHA-256=aZnA/ebclJA35jQ19ouTeW0X75OmXNnoBvAnDuXJtNI="; + EXPECT_EQ(expected_header_value, header_value); +} + +TEST_F(ConfirmationsRequestSignedTokensRequestTest, BuildSignatureHeaderValue) { + // Arrange + std::string body = R"({"blindedTokens":["1Fwm6gOsXS4wmzjQjbgk69X7Yd1IGjl8nhiKGWCzXTk=","4hPPIOdzoRogm847b/AuHqapRevwByYeyLOTdnQ3Kk8=","BFx/fw+mK2N5JHwfuWoYHOvchCE4eQD8YWO3ET2ym3Q=","jGJV/w4aAMbIWNswlgySTRRFQmIaRb+1IGeyaIObPTk=","gAPctDibVJNImTIqkSdHPQOp+l3hIbINYS2ZDD/tPH4=","CIIlpfjC4fC4hzFRgzQL74BCIWs1TKdlj278nBHWCzA=","JgDYrHaIa51yQOl9uCfDmfKSAxgZbGsJ74CUe/qN7zc=","At4/Hcjzurz9+4NVq0PIGGt8NpcKmNnfhTykDTktSWg=","Xpoh1XhWWs4sI7XmgfSaVEJiU/svFW1T6XNlsRGqKHk=","ytSdCx4H2hCNlWZc59GBfhFBHRchSEuf8pzYzVIrzwM=","SpXgjYqH746GTlcufFiTQcP0IxpuO9r0LoREv/1JQww=","XlyA1GlQQakgu9di+27nMjRz8afZ6w/Ak9Xw01XQzR4=","6oICEjxG2lPgRMoGFz7NdQnPSZ16lwCnBoxMK/U8TQU=","SuzYYzPXI2+09Do/7A8b5YUTpUk4aD06FNTt33gWOnY=","LrSe7y4YjW0E8FuHBQd6xjbueUacKMGKcQyF0um2Eyc=","VLvXp7wZa81N8YhWhTpJoEidbwzfc267oE0/Ku/oC3Q=","KKd26nziS0k4xlg+/l3K7zIrhUUbRunCKlQKpcYvNFs=","NN1D1KKhPc/2gZQA9Rdm1h7OPrXgAIIvORTS0hip30g=","vscyDf3W6PGOg3I94oTmGyjeKYyB0qNAOfl4jZhHpmo=","VIIQ6gsx64nY0VgLatIpTTUs9s2axYDk5u/YIDqd/Wo=","qsUHc1BfYhcgjGU9Nb9hWJXvjuRaiH8byR6WjWXSQQQ=","uIYoo9Y7PuBH8URfZL31pR6ILaP5nH3Ut4yRe6AwjHA=","mh6huuiT7m0RbGs5k1IC+PQc8cGneKxVL/89CvQ/tzA=","tGloa/PK2MJDZ9yR6LL2U96WlH+6M7Da6eBNosTkj1M=","YjF+ljBv6I9tKoGTb/g29jFtwiqSRy+GbFmqoy4UjwE=","zFNLZf1IbCAJWTK6UEM3+GGCQ4CO89wLlKWZ9w48kWI=","4kIdTNVujRlS1Bf+a23Vzt6PITHpupb/YMQFZdV1aj0=","0HLAUuAJadMSX8Sgn3gdPjXO9s9BDT3vvpS4Zrtu9kU=","NDGBAi0R4FPWt0XgMn1g0uxCWOiOY6SZ+4XFmZx/CBg=","dtXEsDHaTHt8WK5ChXAuZ4vg79eKgNthDrACCBiwOk0=","4oY5iFVdAyLekOT1/fLeZvcJEKR9imFph8AhngF0Pgw=","+CeRUWzu6VxlxO4I1ZTLqAf3rTQd1RrAiRoywmMVPCc=","HOcA3/LprxFZc0gNT3XPNZsiFAG36cOWBwJ+002l0Qc=","lEO24pANnAFyXcMZw03rJXf5rfuManuHcfAalJQkZ0g=","sFXgELiusqD9SdHor3cZijzrlyzetafMfiGGWI6YDn0=","GJPsWMTK65dYYYnPRem7cc9MX0M6Q8XtLwboN+gEPF8=","NKZa4oTiJj/d2yCYbwCFdaQg2iZKArvEjQBylB1JOlI=","ti5l9fVKX/BDSolaMILczmfzQ75Y2AjiTII6FRTdx1Y=","Gtxl2H2r5PbOx+iFP8dzbuCRAqy9IZPwx6ypzoioDTc=","bIAmxGFA4XQntsXFd3PLHpyszB4wo59jFeWMWPMt9SE=","aJ+Uv2QxWPktxhzJH4nsyRUX88u2lajBv0cZWpfZnlo=","ACea3T+vdzi/lEgr4XmrFlFLSFFIPGPDzkZhaQrbYH4=","Egwk5NjjEaWrapV7oDI2Qsscldrc4yBIReju78MRixE=","ALV+JaHwFt44WFrPtKW2Jf3mQGxRSWXrdE60ha3J6X8=","utiko2dlzzmjjTd1QNLFg2IGs+phwHFOQom42IUiQj4=","SIIOeOuuMtN6eZFKHOYHXI6a9/QZjQoBJLJZ6PLb4XE=","5I/n0MtuDg0QkGRSzN8NalT0bksM209XCqlfwll+elA=","diM0LIWxPXa6RbBXMSIqKMWnQtXwtf1Mga1zBgNO4HA=","jnmj38cOfm4JSmZ1GUlt/BT/QzjsBnKOASMgTONd2zI=","VpWmr3pnfZE1f5KqZYwYAUDi0K04ZvibcA/p65VVDk8=","niNAlSVamLJMs9dHSmQ7Sa5z/ucwb7aDi+ovW1OIelY=","nOORDPKHI5RFJ4BsPgNCljS46GOU4JUFBFi0a7rj63s=","4v0n60wYwj3po/wsnClhnHEtpai8PGAiRMZgoS4UhWE=","mAbAnTSP3lXwToKbs33YkRrWF73ITwQy6iNTv1WFCh4=","xAn14oqfjUaViF7kr1AlH8PiE7amatXuDJy/sFzfqX4=","chniTWNWqAFCHksp4dbT9eNyRUqAxgkuuYRL4iW8WwE=","dj3/xCOmQ1lHOBYTdC+tyJFFKuCBIjsR733R7ehk4m0=","jK/O0uJqBmqaObz7S3C9JCv6fwmK6mX0jz4wNnuxH3s=","JFDbF4/bRaT1lqfwMMMkYthRn48O2ENsvJeDN9OJx2w=","atx0/2ZAlYuv0GoK9LWzl+KvlGw+vR0RF0+YQg/3gQw=","Qioe+g5INKK4n8a4jRTp756JEza9vApNB7jhclG+LXs=","9nblEhmRdSJGQpnXAtc6GtMcL4FVz8/nt4Z9lGMiPE4=","JqbX3u/cNHqvwNTR2/3Gfhi4ULwrYzWtP5wlsBZVqGY=","BFyyYHCpu9wpXQBXjDRZ5i5LEa8dY1VeJu1DScZ6bGU=","FnafJYZBSOULPWtJZVRY9tUOjpgAq+aOygioN//CuGs=","pAwG7HboPVeuCGSXA7RXw+eDj667UApMr1KSUx5f7Qg=","LpTnNc4QCvC/DBLGdfKf7r/DS7A74eWhQ9BLrnEaLk0=","bE3mseRRFqEis+hRH3JEihOQLtQ6+D9nAs+I3czNGX0=","JFTpRiNm2Tg822sdZrLNvWDRsDeVUX06HplUBx2JOA0=","6s9GicBRK2Y5FGgCYhJO3q1qkG+NTN68V8MYEAGSCnA=","aM/DJiQbIjPrTa+vqbOEyBrJYcFRCAd1VWKhk+CC9gI=","6CCWq/HwRCsY1ZVBp8r0Lf/f8zhQMYuMVRuq7qKuEGY=","EpodVxvX9X6vHaK9MyLemhzWIzZR7HzXj4V7eZuXNkQ=","AolM6TCNMNXd1Id9ColrHjpx3ECJX0SChbTrjFYR9GI=","YDaHbVval/mHopvAgnVo9svvx2nHOSf6arRRdoJYF0U=","PPNHrkMM44EZDNeD0mYKQ4zJo1elpWDMBpo+UlGTFnc=","5AykA0xLBRW6tQD/q9mWuvgHJJXkNLytS54TMlafFlw=","9G8rZDCIqPYIhsD024b32DPG4qgRG+GCvheo5pcYLRE=","TGlueCCVRBm9L8pVeDaH9SfiRfMxYtZnbaGTh8BUrjw=","VCDHZyGXUANKXPiMAUdvcwGmEgSjF3Rp0p5m7wnaD2k=","PgRiNEWFmMoZbXDB8XTUf54kHptmdd+nkqFwZXMTbw8=","zNh/pmL0nU2EgioT0vstea1z8ueWLJYF/aPHZOFHf3U=","7DNsBs0J0/iAlMQ3/atXLPubCT/10fVYGy6jtc1F8Tk=","cp58o4toOOaHTPqTP6kODtdW+n1sRZQgTByLI0Ebulw=","bLgcjSDRamrc2IGa/25VhC/rd5DDbyRNQU1Ouo1qcEI=","eFjam254LokXnmjGPVWdJfhV0/anmKY7aK+tFxwDe2I=","ekIddkNg0jEn3M6tvmKgStf9yZFF6fQdx2B67LExsmk=","zAJTYpueGMLLi297bKBgRi4ManZRFM6wxdpOYiovIEA=","uCBIo8IEb1ec3IhtDXkPYze+XU4wsfGR3oX02G7cSTc=","QNj0S9EMq94lAWQNnIN6e5UQpsdO+LCkvMCIcTkjxG4=","FFKXBCynr1ZaryylS5G2fCjqCytCdHl8ROloo0Cw5BA=","ZrOSxL42vFlhSYZTaiZ/x4WFXnJUx01oEwwtLajzUXo=","qo0+d+Sq6B28fxpsVYznbaiZAPP3J6DwUkiWlMjWvDo=","SCLNw3FEmsu2gSxz7lkZ2LIEyric9/XT/y1EYkIWpDo=","pPG6bTM72Raa9v9GR3x4iObdmPivP8++AXKjPBcFMU4=","SMdqY9YbxOn7CfkjUOy9PbQPiYdKZhwXhw36tCj6Jwo=","4OjUFfbXtu1t+vS90b3gGLJTnVwsQWf8ZpqxCH76BUw=","XNQyUvGUKrUf5cr09dr+ZItV+fuIxWYNAzLrSC2E7nQ=","Zlg090Q8tSs76RoTRqigI/QpDzXiie7EmKeASzc0CnY=","ErCvdmKjJkMqXSmS9cyHZKIqwTSigjWYt+XgVb2+EDo="]})"; // NOLINT + + WalletInfo wallet_info; + wallet_info.payment_id = "e7fcf220-d3f4-4111-a0b2-6157d0347567"; + wallet_info.public_key = "3fc8ff3b121e7b7875750d26eaba6f06a3b06d96cf6b2fb898323917e7be9d16e255a4a6f7eb8647428f727c0d4e1958bd8e69a984eee38514d1e483aab27edf"; // NOLINT + + // Act + auto header_value = request_->BuildSignatureHeaderValue(body, wallet_info); + + // Assert + std::string expected_header_value = R"(keyId="primary",algorithm="ed25519",headers="digest",signature="p6qg0RfYtYmo4B6WG9Mcap5BxmqDRpxlGrBOnKy5G5ZBnnnn9G8yMWYGZnxcj/6tY8sesQdD9rsVTh0zXId7BA==")"; // NOLINT + EXPECT_EQ(expected_header_value, header_value); +} + +TEST_F(ConfirmationsRequestSignedTokensRequestTest, GetAcceptHeaderValue) { + // Arrange + + // Act + auto accept_header_value = request_->GetAcceptHeaderValue(); + + // Assert + EXPECT_EQ(accept_header_value, "application/json"); +} + +TEST_F(ConfirmationsRequestSignedTokensRequestTest, GetContentType) { + // Arrange + + // Act + auto content_type = request_->GetContentType(); + + // Assert + EXPECT_EQ(content_type, "application/json"); +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/test/confirmations_security_helper_unittest.cc b/vendor/bat-native-confirmations/test/confirmations_security_helper_unittest.cc new file mode 100644 index 000000000000..577974eb3868 --- /dev/null +++ b/vendor/bat-native-confirmations/test/confirmations_security_helper_unittest.cc @@ -0,0 +1,139 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include +#include +#include +#include + +#include "confirmations_client_mock.h" +#include "bat-native-confirmations/src/confirmations_impl.h" +#include "bat-native-confirmations/src/security_helper.h" + +#include "testing/gtest/include/gtest/gtest.h" + +// npm run test -- brave_unit_tests --filter=Confirmations* + +namespace confirmations { + +class ConfirmationsSecurityHelperTest : public ::testing::Test { + protected: + std::unique_ptr mock_confirmations_client_; + std::unique_ptr confirmations_; + + ConfirmationsSecurityHelperTest() : + mock_confirmations_client_(std::make_unique()), + confirmations_(std::make_unique( + mock_confirmations_client_.get())) { + // You can do set-up work for each test here + } + + ~ConfirmationsSecurityHelperTest() override { + // You can do clean-up work that doesn't throw exceptions here + } + + // If the constructor and destructor are not enough for setting up and + // cleaning up each test, you can use the following methods + + void SetUp() override { + // Code here will be called immediately after the constructor (right before + // each test) + } + + void TearDown() override { + // Code here will be called immediately after each test (right before the + // destructor) + } + + // Objects declared here can be used by all tests in the test case +}; + +TEST_F(ConfirmationsSecurityHelperTest, Sign) { + // Arrange + std::map headers = { + {"digest", "SHA-256=aZnA/ebclJA35jQ19ouTeW0X75OmXNnoBvAnDuXJtNI="} + }; + + std::string key_id = "primary"; + + std::vector public_key = { + 0x3f, 0xc8, 0xff, 0x3b, 0x12, 0x1e, 0x7b, 0x78, 0x75, 0x75, 0x0d, 0x26, + 0xea, 0xba, 0x6f, 0x06, 0xa3, 0xb0, 0x6d, 0x96, 0xcf, 0x6b, 0x2f, 0xb8, + 0x98, 0x32, 0x39, 0x17, 0xe7, 0xbe, 0x9d, 0x16, 0xe2, 0x55, 0xa4, 0xa6, + 0xf7, 0xeb, 0x86, 0x47, 0x42, 0x8f, 0x72, 0x7c, 0x0d, 0x4e, 0x19, 0x58, + 0xbd, 0x8e, 0x69, 0xa9, 0x84, 0xee, 0xe3, 0x85, 0x14, 0xd1, 0xe4, 0x83, + 0xaa, 0xb2, 0x7e, 0xdf + }; + + // Act + auto signature = helper::Security::Sign(headers, key_id, public_key); + + // Assert + std::string expected_signature = R"(keyId="primary",algorithm="ed25519",headers="digest",signature="p6qg0RfYtYmo4B6WG9Mcap5BxmqDRpxlGrBOnKy5G5ZBnnnn9G8yMWYGZnxcj/6tY8sesQdD9rsVTh0zXId7BA==")"; // NOLINT + EXPECT_EQ(expected_signature, signature); +} + +TEST_F(ConfirmationsSecurityHelperTest, Sign_InvalidPublicKey) { + // Arrange + std::map headers = { + {"digest", "SHA-256=aZnA/ebclJA35jQ19ouTeW0X75OmXNnoBvAnDuXJtNI="} + }; + + std::string key_id = "primary"; + + std::vector public_key = { + 0xde, 0xad, 0xbe, 0xef, 0xde, 0xad, 0xbe, 0xef, 0xde, 0xad, 0xbe, 0xef, + 0xde, 0xad, 0xbe, 0xef, 0xde, 0xad, 0xbe, 0xef, 0xde, 0xad, 0xbe, 0xef, + 0xde, 0xad, 0xbe, 0xef, 0xde, 0xad, 0xbe, 0xef, 0xde, 0xad, 0xbe, 0xef, + 0xde, 0xad, 0xbe, 0xef, 0xde, 0xad, 0xbe, 0xef, 0xde, 0xad, 0xbe, 0xef, + 0xde, 0xad, 0xbe, 0xef, 0xde, 0xad, 0xbe, 0xef, 0xde, 0xad, 0xbe, 0xef, + 0xde, 0xad, 0xbe, 0xef + }; + + // Act + auto signature = helper::Security::Sign(headers, key_id, public_key); + + // Assert + std::string expected_signature = "p6qg0RfYtYmo4B6WG9Mcap5BxmqDRpxlGrBOnKy5G5ZBnnnn9G8yMWYGZnxcj/6tY8sesQdD9rsVTh0zXId7BA=="; // NOLINT + EXPECT_NE(expected_signature, signature); +} + +TEST_F(ConfirmationsSecurityHelperTest, GenerateTokens) { + // Arrange + + // Act + auto tokens = helper::Security::GenerateTokens(5); + + // Assert + auto count = tokens.size(); + EXPECT_EQ(5UL, count); +} + +TEST_F(ConfirmationsSecurityHelperTest, BlindTokens) { + // Arrange + auto tokens = helper::Security::GenerateTokens(7); + + // Act + auto blinded_tokens = helper::Security::BlindTokens(tokens); + + // Assert + EXPECT_EQ(tokens.size(), blinded_tokens.size()); +} + +TEST_F(ConfirmationsSecurityHelperTest, GetSHA256) { + // Arrange + std::string body = R"({"blindedTokens":["1Fwm6gOsXS4wmzjQjbgk69X7Yd1IGjl8nhiKGWCzXTk=","4hPPIOdzoRogm847b/AuHqapRevwByYeyLOTdnQ3Kk8=","BFx/fw+mK2N5JHwfuWoYHOvchCE4eQD8YWO3ET2ym3Q=","jGJV/w4aAMbIWNswlgySTRRFQmIaRb+1IGeyaIObPTk=","gAPctDibVJNImTIqkSdHPQOp+l3hIbINYS2ZDD/tPH4=","CIIlpfjC4fC4hzFRgzQL74BCIWs1TKdlj278nBHWCzA=","JgDYrHaIa51yQOl9uCfDmfKSAxgZbGsJ74CUe/qN7zc=","At4/Hcjzurz9+4NVq0PIGGt8NpcKmNnfhTykDTktSWg=","Xpoh1XhWWs4sI7XmgfSaVEJiU/svFW1T6XNlsRGqKHk=","ytSdCx4H2hCNlWZc59GBfhFBHRchSEuf8pzYzVIrzwM=","SpXgjYqH746GTlcufFiTQcP0IxpuO9r0LoREv/1JQww=","XlyA1GlQQakgu9di+27nMjRz8afZ6w/Ak9Xw01XQzR4=","6oICEjxG2lPgRMoGFz7NdQnPSZ16lwCnBoxMK/U8TQU=","SuzYYzPXI2+09Do/7A8b5YUTpUk4aD06FNTt33gWOnY=","LrSe7y4YjW0E8FuHBQd6xjbueUacKMGKcQyF0um2Eyc=","VLvXp7wZa81N8YhWhTpJoEidbwzfc267oE0/Ku/oC3Q=","KKd26nziS0k4xlg+/l3K7zIrhUUbRunCKlQKpcYvNFs=","NN1D1KKhPc/2gZQA9Rdm1h7OPrXgAIIvORTS0hip30g=","vscyDf3W6PGOg3I94oTmGyjeKYyB0qNAOfl4jZhHpmo=","VIIQ6gsx64nY0VgLatIpTTUs9s2axYDk5u/YIDqd/Wo=","qsUHc1BfYhcgjGU9Nb9hWJXvjuRaiH8byR6WjWXSQQQ=","uIYoo9Y7PuBH8URfZL31pR6ILaP5nH3Ut4yRe6AwjHA=","mh6huuiT7m0RbGs5k1IC+PQc8cGneKxVL/89CvQ/tzA=","tGloa/PK2MJDZ9yR6LL2U96WlH+6M7Da6eBNosTkj1M=","YjF+ljBv6I9tKoGTb/g29jFtwiqSRy+GbFmqoy4UjwE=","zFNLZf1IbCAJWTK6UEM3+GGCQ4CO89wLlKWZ9w48kWI=","4kIdTNVujRlS1Bf+a23Vzt6PITHpupb/YMQFZdV1aj0=","0HLAUuAJadMSX8Sgn3gdPjXO9s9BDT3vvpS4Zrtu9kU=","NDGBAi0R4FPWt0XgMn1g0uxCWOiOY6SZ+4XFmZx/CBg=","dtXEsDHaTHt8WK5ChXAuZ4vg79eKgNthDrACCBiwOk0=","4oY5iFVdAyLekOT1/fLeZvcJEKR9imFph8AhngF0Pgw=","+CeRUWzu6VxlxO4I1ZTLqAf3rTQd1RrAiRoywmMVPCc=","HOcA3/LprxFZc0gNT3XPNZsiFAG36cOWBwJ+002l0Qc=","lEO24pANnAFyXcMZw03rJXf5rfuManuHcfAalJQkZ0g=","sFXgELiusqD9SdHor3cZijzrlyzetafMfiGGWI6YDn0=","GJPsWMTK65dYYYnPRem7cc9MX0M6Q8XtLwboN+gEPF8=","NKZa4oTiJj/d2yCYbwCFdaQg2iZKArvEjQBylB1JOlI=","ti5l9fVKX/BDSolaMILczmfzQ75Y2AjiTII6FRTdx1Y=","Gtxl2H2r5PbOx+iFP8dzbuCRAqy9IZPwx6ypzoioDTc=","bIAmxGFA4XQntsXFd3PLHpyszB4wo59jFeWMWPMt9SE=","aJ+Uv2QxWPktxhzJH4nsyRUX88u2lajBv0cZWpfZnlo=","ACea3T+vdzi/lEgr4XmrFlFLSFFIPGPDzkZhaQrbYH4=","Egwk5NjjEaWrapV7oDI2Qsscldrc4yBIReju78MRixE=","ALV+JaHwFt44WFrPtKW2Jf3mQGxRSWXrdE60ha3J6X8=","utiko2dlzzmjjTd1QNLFg2IGs+phwHFOQom42IUiQj4=","SIIOeOuuMtN6eZFKHOYHXI6a9/QZjQoBJLJZ6PLb4XE=","5I/n0MtuDg0QkGRSzN8NalT0bksM209XCqlfwll+elA=","diM0LIWxPXa6RbBXMSIqKMWnQtXwtf1Mga1zBgNO4HA=","jnmj38cOfm4JSmZ1GUlt/BT/QzjsBnKOASMgTONd2zI=","VpWmr3pnfZE1f5KqZYwYAUDi0K04ZvibcA/p65VVDk8=","niNAlSVamLJMs9dHSmQ7Sa5z/ucwb7aDi+ovW1OIelY=","nOORDPKHI5RFJ4BsPgNCljS46GOU4JUFBFi0a7rj63s=","4v0n60wYwj3po/wsnClhnHEtpai8PGAiRMZgoS4UhWE=","mAbAnTSP3lXwToKbs33YkRrWF73ITwQy6iNTv1WFCh4=","xAn14oqfjUaViF7kr1AlH8PiE7amatXuDJy/sFzfqX4=","chniTWNWqAFCHksp4dbT9eNyRUqAxgkuuYRL4iW8WwE=","dj3/xCOmQ1lHOBYTdC+tyJFFKuCBIjsR733R7ehk4m0=","jK/O0uJqBmqaObz7S3C9JCv6fwmK6mX0jz4wNnuxH3s=","JFDbF4/bRaT1lqfwMMMkYthRn48O2ENsvJeDN9OJx2w=","atx0/2ZAlYuv0GoK9LWzl+KvlGw+vR0RF0+YQg/3gQw=","Qioe+g5INKK4n8a4jRTp756JEza9vApNB7jhclG+LXs=","9nblEhmRdSJGQpnXAtc6GtMcL4FVz8/nt4Z9lGMiPE4=","JqbX3u/cNHqvwNTR2/3Gfhi4ULwrYzWtP5wlsBZVqGY=","BFyyYHCpu9wpXQBXjDRZ5i5LEa8dY1VeJu1DScZ6bGU=","FnafJYZBSOULPWtJZVRY9tUOjpgAq+aOygioN//CuGs=","pAwG7HboPVeuCGSXA7RXw+eDj667UApMr1KSUx5f7Qg=","LpTnNc4QCvC/DBLGdfKf7r/DS7A74eWhQ9BLrnEaLk0=","bE3mseRRFqEis+hRH3JEihOQLtQ6+D9nAs+I3czNGX0=","JFTpRiNm2Tg822sdZrLNvWDRsDeVUX06HplUBx2JOA0=","6s9GicBRK2Y5FGgCYhJO3q1qkG+NTN68V8MYEAGSCnA=","aM/DJiQbIjPrTa+vqbOEyBrJYcFRCAd1VWKhk+CC9gI=","6CCWq/HwRCsY1ZVBp8r0Lf/f8zhQMYuMVRuq7qKuEGY=","EpodVxvX9X6vHaK9MyLemhzWIzZR7HzXj4V7eZuXNkQ=","AolM6TCNMNXd1Id9ColrHjpx3ECJX0SChbTrjFYR9GI=","YDaHbVval/mHopvAgnVo9svvx2nHOSf6arRRdoJYF0U=","PPNHrkMM44EZDNeD0mYKQ4zJo1elpWDMBpo+UlGTFnc=","5AykA0xLBRW6tQD/q9mWuvgHJJXkNLytS54TMlafFlw=","9G8rZDCIqPYIhsD024b32DPG4qgRG+GCvheo5pcYLRE=","TGlueCCVRBm9L8pVeDaH9SfiRfMxYtZnbaGTh8BUrjw=","VCDHZyGXUANKXPiMAUdvcwGmEgSjF3Rp0p5m7wnaD2k=","PgRiNEWFmMoZbXDB8XTUf54kHptmdd+nkqFwZXMTbw8=","zNh/pmL0nU2EgioT0vstea1z8ueWLJYF/aPHZOFHf3U=","7DNsBs0J0/iAlMQ3/atXLPubCT/10fVYGy6jtc1F8Tk=","cp58o4toOOaHTPqTP6kODtdW+n1sRZQgTByLI0Ebulw=","bLgcjSDRamrc2IGa/25VhC/rd5DDbyRNQU1Ouo1qcEI=","eFjam254LokXnmjGPVWdJfhV0/anmKY7aK+tFxwDe2I=","ekIddkNg0jEn3M6tvmKgStf9yZFF6fQdx2B67LExsmk=","zAJTYpueGMLLi297bKBgRi4ManZRFM6wxdpOYiovIEA=","uCBIo8IEb1ec3IhtDXkPYze+XU4wsfGR3oX02G7cSTc=","QNj0S9EMq94lAWQNnIN6e5UQpsdO+LCkvMCIcTkjxG4=","FFKXBCynr1ZaryylS5G2fCjqCytCdHl8ROloo0Cw5BA=","ZrOSxL42vFlhSYZTaiZ/x4WFXnJUx01oEwwtLajzUXo=","qo0+d+Sq6B28fxpsVYznbaiZAPP3J6DwUkiWlMjWvDo=","SCLNw3FEmsu2gSxz7lkZ2LIEyric9/XT/y1EYkIWpDo=","pPG6bTM72Raa9v9GR3x4iObdmPivP8++AXKjPBcFMU4=","SMdqY9YbxOn7CfkjUOy9PbQPiYdKZhwXhw36tCj6Jwo=","4OjUFfbXtu1t+vS90b3gGLJTnVwsQWf8ZpqxCH76BUw=","XNQyUvGUKrUf5cr09dr+ZItV+fuIxWYNAzLrSC2E7nQ=","Zlg090Q8tSs76RoTRqigI/QpDzXiie7EmKeASzc0CnY=","ErCvdmKjJkMqXSmS9cyHZKIqwTSigjWYt+XgVb2+EDo="]})"; // NOLINT + + // Act + auto sha256 = helper::Security::GetSHA256(body); + auto sha256_base64 = helper::Security::GetBase64(sha256); + + // Assert + std::string expected_sha256_base64 = + "aZnA/ebclJA35jQ19ouTeW0X75OmXNnoBvAnDuXJtNI="; + EXPECT_EQ(expected_sha256_base64, sha256_base64); +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/test/confirmations_string_helper_unittest.cc b/vendor/bat-native-confirmations/test/confirmations_string_helper_unittest.cc new file mode 100644 index 000000000000..5fcc296670b6 --- /dev/null +++ b/vendor/bat-native-confirmations/test/confirmations_string_helper_unittest.cc @@ -0,0 +1,82 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include +#include +#include + +#include "confirmations_client_mock.h" +#include "bat-native-confirmations/src/confirmations_impl.h" +#include "bat-native-confirmations/src/string_helper.h" + +#include "testing/gtest/include/gtest/gtest.h" + +// npm run test -- brave_unit_tests --filter=Confirmations* + +namespace confirmations { + +class ConfirmationsStringHelperTest : public ::testing::Test { + protected: + std::unique_ptr mock_confirmations_client_; + std::unique_ptr confirmations_; + + ConfirmationsStringHelperTest() : + mock_confirmations_client_(std::make_unique()), + confirmations_(std::make_unique( + mock_confirmations_client_.get())) { + // You can do set-up work for each test here + } + + ~ConfirmationsStringHelperTest() override { + // You can do clean-up work that doesn't throw exceptions here + } + + // If the constructor and destructor are not enough for setting up and + // cleaning up each test, you can use the following methods + + void SetUp() override { + // Code here will be called immediately after the constructor (right before + // each test) + } + + void TearDown() override { + // Code here will be called immediately after each test (right before the + // destructor) + } + + // Objects declared here can be used by all tests in the test case +}; + +TEST_F(ConfirmationsStringHelperTest, DecodeHex) { + // Arrange + std::string hexadecimal = "3fc8ff3b121e7b7875750d26eaba6f06a3b06d96cf6b2fb898323917e7be9d16e255a4a6f7eb8647428f727c0d4e1958bd8e69a984eee38514d1e483aab27edf"; // NOLINT + + std::vector valid_bytes = { + 0x3f, 0xc8, 0xff, 0x3b, 0x12, 0x1e, 0x7b, 0x78, 0x75, 0x75, 0x0d, 0x26, + 0xea, 0xba, 0x6f, 0x06, 0xa3, 0xb0, 0x6d, 0x96, 0xcf, 0x6b, 0x2f, 0xb8, + 0x98, 0x32, 0x39, 0x17, 0xe7, 0xbe, 0x9d, 0x16, 0xe2, 0x55, 0xa4, 0xa6, + 0xf7, 0xeb, 0x86, 0x47, 0x42, 0x8f, 0x72, 0x7c, 0x0d, 0x4e, 0x19, 0x58, + 0xbd, 0x8e, 0x69, 0xa9, 0x84, 0xee, 0xe3, 0x85, 0x14, 0xd1, 0xe4, 0x83, + 0xaa, 0xb2, 0x7e, 0xdf + }; + + // Act + auto bytes = helper::String::decode_hex(hexadecimal); + + // Assert + unsigned int index = 0; + for (const auto& byte : bytes) { + auto valid_byte = valid_bytes.at(index); + if (byte != valid_byte) { + FAIL(); + } + + index++; + } + + SUCCEED(); +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/test/confirmations_unblinded_tokens_unittest.cc b/vendor/bat-native-confirmations/test/confirmations_unblinded_tokens_unittest.cc new file mode 100644 index 000000000000..f1ef7e5c2beb --- /dev/null +++ b/vendor/bat-native-confirmations/test/confirmations_unblinded_tokens_unittest.cc @@ -0,0 +1,573 @@ +/* Copyright (c) 2019 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include +#include +#include + +#include "confirmations_client_mock.h" +#include "bat-native-confirmations/src/confirmations_impl.h" +#include "bat-native-confirmations/src/security_helper.h" +#include "bat-native-confirmations/src/unblinded_tokens.h" + +#include "base/files/file_path.h" +#include "base/files/scoped_temp_dir.h" +#include "base/strings/string_util.h" +#include "base/strings/utf_string_conversions.h" +#include "testing/gtest/include/gtest/gtest.h" + +// npm run test -- brave_unit_tests --filter=Confirmations* + +using ::testing::AtLeast; + +namespace confirmations { + +class ConfirmationsUnblindedTokensTest : public ::testing::Test { + protected: + std::unique_ptr mock_confirmations_client_; + std::unique_ptr confirmations_; + + std::unique_ptr unblinded_tokens_; + + ConfirmationsUnblindedTokensTest() : + mock_confirmations_client_(std::make_unique()), + confirmations_(std::make_unique( + mock_confirmations_client_.get())), + unblinded_tokens_(std::make_unique( + confirmations_.get())) { + // You can do set-up work for each test here + } + + ~ConfirmationsUnblindedTokensTest() override { + // You can do clean-up work that doesn't throw exceptions here + } + + // If the constructor and destructor are not enough for setting up and + // cleaning up each test, you can use the following methods + + void SetUp() override { + // Code here will be called immediately after the constructor (right before + // each test) + } + + void TearDown() override { + // Code here will be called immediately after each test (right before the + // destructor) + } + + // Objects declared here can be used by all tests in the test case + std::vector GetUnblindedTokens(const int count) { + std::vector tokens_base64 = { + "gXMEnFFPTfgVA3MB11zNRP1ixWjkdw/qsW1RnuQlfkF+ugGxFLafpypS7OJ7mB1zTP775LXrO9vM48fAFNihCOYZS660ClZE/xfDFd930yb12+isTsk6KswtxR10Aogc", // NOLINT + "nEHl6RxMncjw0NKaRxrdpa5iZ7bD+nvBm4yifAYrFgEPJ9DluocwsSS2JUy1nkkcPwWQC3wx5ekhL3Ca9xi7yYBCAPsup2JFSbp5iYUaeWiCxF6w8I1MKrjPj6trywQ6", // NOLINT + "MNrshKuw6zUTsmlZ+w4WzlJknjV/m/ZYyWUhwSmzyW8Dm/VGpMrifyw5txpNu+SQyNcAR+EJ468ADS5qfNfH7yS0kP9z1OJwMNfLiCTHOCiwd7PJkdv14T/vGS5AT1B5", // NOLINT + "MRAbYbmnmjM5bqlbHsX9iuy1Jwc9GCGEA4idBt+PNaQONgbZaPbxHb2pOjw1H6sbgJ2eeIwtobrRRmy+diurWoa0cJ8IG9oy3YtOj8bgc7hy/x5Ixu0kxylNxTKb5b9Z", // NOLINT + "aMTJ5HnQot4p6lU5LuXMdYPt3q3Eg1pz5pB2q1c8ys6qVVHd1PyrtEVY+qGJrET3ay2E12Qft0UhNzVUkrgnZ4Kh3mmpcm9wbYnmsid2GK3dBzuHC0ggnYoir1Oo+A8D", // NOLINT + "lv6mXcIzMFmBbK37U3SFRxgMiRcM4pGLfrdgp0TCevTJ+XbDlHGNIXxYU8CT8ztGwoJSxYjtBh/MGSpjaklJG37ttqDaMzMT0VhKgEvTHuY7qmyi55WtWVENispKe35M", // NOLINT + "f3v9XvsBKp7fdXwQSQHNpHN0MPDzGJ1obhc37pLLyv65/JbdMbsXSQ1dGP0+nD/ETvAFzWzro9s/8HQo0MPLBiKkzvAwnaWyM+TAXG5xwL70iICkNApiv57kUfzvnudp", // NOLINT + "uSczWJh99T9QKlsDGoRSBpjoMFf4nQj/A5AW72m9o6akR4BkzQ1M1ATIyZde5O4Q2iSV+KRjGPUheU7QmTQxDS6l79e8a+ro2uXZKbxjY+XAM7PO+iFOOAZuR4IUoJpF", // NOLINT + "2W8uYe1n6lFMiQFuD9wHLjr2qYhDB6AM3oXyetnsuR9fOxo8BXu28IzQbkCueWSyBEZ54Xf4AzPyPY2cB73Gh8LuyY4vChgP+E9LwI3yqWyD+RR4O6hCo2e7yKm9dTAm", // NOLINT + "tl+V73HJRK2g4TWlqRGxjXeMvhmOvrnLFMfEbUJuiMiByZOUuK4hffoXB5VmbiGLYvJr3shcFpmxMZSuLK3Q97QbP27wmoU+Lk8Jy+MGR+9OTn4MpyvSOfVvDhLypSMG" // NOLINT + }; + + int modulo = tokens_base64.size(); + + std::vector tokens; + for (int i = 0; i < count; i++) { + auto token_base64 = tokens_base64.at(i % modulo); + auto token = UnblindedToken::decode_base64(token_base64); + + tokens.push_back(token); + } + + return tokens; + } + + std::vector GetRandomUnblindedTokens(const int count) { + std::vector unblinded_tokens; + + auto tokens = helper::Security::GenerateTokens(count); + for (const auto& token : tokens) { + auto token_base64 = token.encode_base64(); + auto unblinded_token = UnblindedToken::decode_base64(token_base64); + + unblinded_tokens.push_back(unblinded_token); + } + + return unblinded_tokens; + } + + base::ListValue GetUnblindedTokensAsList(const int count) { + base::Value list(base::Value::Type::LIST); + + auto tokens = GetUnblindedTokens(count); + for (auto& token : tokens) { + auto token_base64 = token.encode_base64(); + auto token_value = base::Value(token_base64); + list.GetList().push_back(std::move(token_value)); + } + + base::ListValue list_values(list.GetList()); + return list_values; + } +}; + +TEST_F(ConfirmationsUnblindedTokensTest, GetToken) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(10); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + auto token = unblinded_tokens_->GetToken(); + auto token_base64 = token.encode_base64(); + + // Assert + std::string expected_token_base64 = "gXMEnFFPTfgVA3MB11zNRP1ixWjkdw/qsW1RnuQlfkF+ugGxFLafpypS7OJ7mB1zTP775LXrO9vM48fAFNihCOYZS660ClZE/xfDFd930yb12+isTsk6KswtxR10Aogc"; // NOLINT + EXPECT_EQ(expected_token_base64, token_base64); +} + +TEST_F(ConfirmationsUnblindedTokensTest, GetAllTokens_Exist) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(8); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + auto tokens = unblinded_tokens_->GetAllTokens(); + + // Assert + std::vector expected_tokens_base64 = { + "gXMEnFFPTfgVA3MB11zNRP1ixWjkdw/qsW1RnuQlfkF+ugGxFLafpypS7OJ7mB1zTP775LXrO9vM48fAFNihCOYZS660ClZE/xfDFd930yb12+isTsk6KswtxR10Aogc", // NOLINT + "nEHl6RxMncjw0NKaRxrdpa5iZ7bD+nvBm4yifAYrFgEPJ9DluocwsSS2JUy1nkkcPwWQC3wx5ekhL3Ca9xi7yYBCAPsup2JFSbp5iYUaeWiCxF6w8I1MKrjPj6trywQ6", // NOLINT + "MNrshKuw6zUTsmlZ+w4WzlJknjV/m/ZYyWUhwSmzyW8Dm/VGpMrifyw5txpNu+SQyNcAR+EJ468ADS5qfNfH7yS0kP9z1OJwMNfLiCTHOCiwd7PJkdv14T/vGS5AT1B5", // NOLINT + "MRAbYbmnmjM5bqlbHsX9iuy1Jwc9GCGEA4idBt+PNaQONgbZaPbxHb2pOjw1H6sbgJ2eeIwtobrRRmy+diurWoa0cJ8IG9oy3YtOj8bgc7hy/x5Ixu0kxylNxTKb5b9Z", // NOLINT + "aMTJ5HnQot4p6lU5LuXMdYPt3q3Eg1pz5pB2q1c8ys6qVVHd1PyrtEVY+qGJrET3ay2E12Qft0UhNzVUkrgnZ4Kh3mmpcm9wbYnmsid2GK3dBzuHC0ggnYoir1Oo+A8D", // NOLINT + "lv6mXcIzMFmBbK37U3SFRxgMiRcM4pGLfrdgp0TCevTJ+XbDlHGNIXxYU8CT8ztGwoJSxYjtBh/MGSpjaklJG37ttqDaMzMT0VhKgEvTHuY7qmyi55WtWVENispKe35M", // NOLINT + "f3v9XvsBKp7fdXwQSQHNpHN0MPDzGJ1obhc37pLLyv65/JbdMbsXSQ1dGP0+nD/ETvAFzWzro9s/8HQo0MPLBiKkzvAwnaWyM+TAXG5xwL70iICkNApiv57kUfzvnudp", // NOLINT + "uSczWJh99T9QKlsDGoRSBpjoMFf4nQj/A5AW72m9o6akR4BkzQ1M1ATIyZde5O4Q2iSV+KRjGPUheU7QmTQxDS6l79e8a+ro2uXZKbxjY+XAM7PO+iFOOAZuR4IUoJpF" // NOLINT + }; + + unsigned int index = 0; + for (auto& token : tokens) { + auto expected_token_base64 = expected_tokens_base64.at(index); + auto expected_token = UnblindedToken::decode_base64(expected_token_base64); + if (token != expected_token) { + FAIL(); + } + + index++; + } + + SUCCEED(); +} + +TEST_F(ConfirmationsUnblindedTokensTest, GetAllTokens_Count) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(8); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + auto tokens = unblinded_tokens_->GetAllTokens(); + + // Assert + auto count = tokens.size(); + EXPECT_EQ(8UL, count); +} + +TEST_F(ConfirmationsUnblindedTokensTest, GetTokensAsList_Exist) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(8); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + auto list = unblinded_tokens_->GetTokensAsList(); + + // Assert + base::ListValue list_values(list.GetList()); + for (auto& value : list_values) { + auto token_base64 = value.GetString(); + auto token = UnblindedToken::decode_base64(token_base64); + + if (!unblinded_tokens_->TokenExists(token)) { + FAIL(); + } + } + + SUCCEED(); +} + +TEST_F(ConfirmationsUnblindedTokensTest, GetTokensAsList_Count) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(11); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + auto list = unblinded_tokens_->GetTokensAsList(); + + // Assert + auto count = list.GetList().size(); + EXPECT_EQ(11UL, count); +} + +TEST_F(ConfirmationsUnblindedTokensTest, GetTokensAsList_EmptyList) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(0); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + auto list = unblinded_tokens_->GetTokensAsList(); + + // Assert + auto count = list.GetList().size(); + EXPECT_EQ(0UL, count); +} + +TEST_F(ConfirmationsUnblindedTokensTest, SetTokens_Exist) { + // Arrange + EXPECT_CALL(*mock_confirmations_client_, SaveState) + .Times(1); + + auto unblinded_tokens = GetUnblindedTokens(10); + + // Act + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Assert + unsigned int index = 0; + auto tokens = unblinded_tokens_->GetAllTokens(); + for (auto& token : tokens) { + auto unblinded_token = unblinded_tokens.at(index); + if (token != unblinded_token) { + FAIL(); + } + + index++; + } + + SUCCEED(); +} + +TEST_F(ConfirmationsUnblindedTokensTest, SetTokens_Count) { + // Arrange + EXPECT_CALL(*mock_confirmations_client_, SaveState) + .Times(1); + + auto unblinded_tokens = GetUnblindedTokens(4); + + // Act + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Assert + auto count = unblinded_tokens_->Count(); + EXPECT_EQ(4, count); +} + +TEST_F(ConfirmationsUnblindedTokensTest, SetTokens_NoTokens) { + // Arrange + EXPECT_CALL(*mock_confirmations_client_, SaveState) + .Times(1); + + auto unblinded_tokens = GetUnblindedTokens(0); + + // Act + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Assert + auto count = unblinded_tokens_->Count(); + EXPECT_EQ(0, count); +} + +TEST_F(ConfirmationsUnblindedTokensTest, SetTokensFromList) { + // Arrange + EXPECT_CALL(*mock_confirmations_client_, SaveState) + .Times(1); + + auto list = GetUnblindedTokensAsList(5); + + // Act + unblinded_tokens_->SetTokensFromList(list); + + // Assert + std::vector expected_tokens_base64 = { + "gXMEnFFPTfgVA3MB11zNRP1ixWjkdw/qsW1RnuQlfkF+ugGxFLafpypS7OJ7mB1zTP775LXrO9vM48fAFNihCOYZS660ClZE/xfDFd930yb12+isTsk6KswtxR10Aogc", // NOLINT + "nEHl6RxMncjw0NKaRxrdpa5iZ7bD+nvBm4yifAYrFgEPJ9DluocwsSS2JUy1nkkcPwWQC3wx5ekhL3Ca9xi7yYBCAPsup2JFSbp5iYUaeWiCxF6w8I1MKrjPj6trywQ6", // NOLINT + "MNrshKuw6zUTsmlZ+w4WzlJknjV/m/ZYyWUhwSmzyW8Dm/VGpMrifyw5txpNu+SQyNcAR+EJ468ADS5qfNfH7yS0kP9z1OJwMNfLiCTHOCiwd7PJkdv14T/vGS5AT1B5", // NOLINT + "MRAbYbmnmjM5bqlbHsX9iuy1Jwc9GCGEA4idBt+PNaQONgbZaPbxHb2pOjw1H6sbgJ2eeIwtobrRRmy+diurWoa0cJ8IG9oy3YtOj8bgc7hy/x5Ixu0kxylNxTKb5b9Z", // NOLINT + "aMTJ5HnQot4p6lU5LuXMdYPt3q3Eg1pz5pB2q1c8ys6qVVHd1PyrtEVY+qGJrET3ay2E12Qft0UhNzVUkrgnZ4Kh3mmpcm9wbYnmsid2GK3dBzuHC0ggnYoir1Oo+A8D" // NOLINT + }; + + auto tokens = unblinded_tokens_->GetAllTokens(); + + unsigned int index = 0; + for (auto& token : tokens) { + auto expected_token_base64 = expected_tokens_base64.at(index); + auto expected_token = UnblindedToken::decode_base64(expected_token_base64); + if (token != expected_token) { + FAIL(); + } + + index++; + } + + SUCCEED(); +} + +TEST_F(ConfirmationsUnblindedTokensTest, SetTokensFromList_EmptyList) { + // Arrange + EXPECT_CALL(*mock_confirmations_client_, SaveState) + .Times(1); + + auto list = GetUnblindedTokensAsList(0); + + // Act + unblinded_tokens_->SetTokensFromList(list); + + // Assert + auto count = unblinded_tokens_->Count(); + EXPECT_EQ(0, count); +} + +TEST_F(ConfirmationsUnblindedTokensTest, AddTokens_Added) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(3); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + EXPECT_CALL(*mock_confirmations_client_, SaveState) + .Times(1); + + auto tokens = GetRandomUnblindedTokens(5); + unblinded_tokens_->AddTokens(tokens); + + // Assert + for (auto& token : tokens) { + if (!unblinded_tokens_->TokenExists(token)) { + FAIL(); + } + } + + SUCCEED(); +} + +TEST_F(ConfirmationsUnblindedTokensTest, AddTokens_ShouldNotAddDuplicates) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(3); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + EXPECT_CALL(*mock_confirmations_client_, SaveState) + .Times(1); + + auto duplicate_unblinded_tokens = GetUnblindedTokens(1); + unblinded_tokens_->AddTokens(duplicate_unblinded_tokens); + + // Assert + auto count = unblinded_tokens_->Count(); + EXPECT_EQ(3, count); +} + +TEST_F(ConfirmationsUnblindedTokensTest, AddTokens_Count) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(5); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + EXPECT_CALL(*mock_confirmations_client_, SaveState) + .Times(1); + + auto tokens = GetRandomUnblindedTokens(3); + unblinded_tokens_->AddTokens(tokens); + + // Assert + auto count = unblinded_tokens_->Count(); + EXPECT_EQ(8, count); +} + +TEST_F(ConfirmationsUnblindedTokensTest, AddTokens_NoTokens) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(3); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + EXPECT_CALL(*mock_confirmations_client_, SaveState) + .Times(1); + + auto tokens = GetUnblindedTokens(0); + unblinded_tokens_->AddTokens(tokens); + + // Assert + auto count = unblinded_tokens_->Count(); + EXPECT_EQ(3, count); +} + +TEST_F(ConfirmationsUnblindedTokensTest, RemoveToken_Count) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(3); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + EXPECT_CALL(*mock_confirmations_client_, SaveState) + .Times(1); + + std::string token_base64 = "nEHl6RxMncjw0NKaRxrdpa5iZ7bD+nvBm4yifAYrFgEPJ9DluocwsSS2JUy1nkkcPwWQC3wx5ekhL3Ca9xi7yYBCAPsup2JFSbp5iYUaeWiCxF6w8I1MKrjPj6trywQ6"; // NOLINT + auto token = UnblindedToken::decode_base64(token_base64); + unblinded_tokens_->RemoveToken(token); + + // Assert + auto count = unblinded_tokens_->Count(); + EXPECT_EQ(2, count); +} + +TEST_F(ConfirmationsUnblindedTokensTest, RemoveToken_Removed) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(3); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + EXPECT_CALL(*mock_confirmations_client_, SaveState) + .Times(1); + + std::string token_base64 = "nEHl6RxMncjw0NKaRxrdpa5iZ7bD+nvBm4yifAYrFgEPJ9DluocwsSS2JUy1nkkcPwWQC3wx5ekhL3Ca9xi7yYBCAPsup2JFSbp5iYUaeWiCxF6w8I1MKrjPj6trywQ6"; // NOLINT + auto token = UnblindedToken::decode_base64(token_base64); + unblinded_tokens_->RemoveToken(token); + + // Assert + EXPECT_FALSE(unblinded_tokens_->TokenExists(token)); +} + +TEST_F(ConfirmationsUnblindedTokensTest, RemoveToken_UnknownToken) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(3); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + EXPECT_CALL(*mock_confirmations_client_, SaveState) + .Times(0); + + std::string token_base64 = "DEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEF"; // NOLINT + auto token = UnblindedToken::decode_base64(token_base64); + unblinded_tokens_->RemoveToken(token); + + // Assert + auto count = unblinded_tokens_->Count(); + EXPECT_EQ(3, count); +} + +TEST_F(ConfirmationsUnblindedTokensTest, RemoveToken_SameTokenTwice) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(3); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + EXPECT_CALL(*mock_confirmations_client_, SaveState) + .Times(1); + + std::string token_base64 = "nEHl6RxMncjw0NKaRxrdpa5iZ7bD+nvBm4yifAYrFgEPJ9DluocwsSS2JUy1nkkcPwWQC3wx5ekhL3Ca9xi7yYBCAPsup2JFSbp5iYUaeWiCxF6w8I1MKrjPj6trywQ6"; // NOLINT + auto token = UnblindedToken::decode_base64(token_base64); + + unblinded_tokens_->RemoveToken(token); + unblinded_tokens_->RemoveToken(token); + + // Assert + auto count = unblinded_tokens_->Count(); + EXPECT_EQ(2, count); +} + +TEST_F(ConfirmationsUnblindedTokensTest, RemoveAllTokens) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(7); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + EXPECT_CALL(*mock_confirmations_client_, SaveState) + .Times(1); + + unblinded_tokens_->RemoveAllTokens(); + + // Assert + auto count = unblinded_tokens_->Count(); + EXPECT_EQ(0, count); +} + +TEST_F(ConfirmationsUnblindedTokensTest, RemoveAllTokens_NoTokens) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(0); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + EXPECT_CALL(*mock_confirmations_client_, SaveState) + .Times(1); + + unblinded_tokens_->RemoveAllTokens(); + + // Assert + auto count = unblinded_tokens_->Count(); + EXPECT_EQ(0, count); +} + +TEST_F(ConfirmationsUnblindedTokensTest, TokenExists) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(3); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + std::string token_base64 = "nEHl6RxMncjw0NKaRxrdpa5iZ7bD+nvBm4yifAYrFgEPJ9DluocwsSS2JUy1nkkcPwWQC3wx5ekhL3Ca9xi7yYBCAPsup2JFSbp5iYUaeWiCxF6w8I1MKrjPj6trywQ6"; // NOLINT + auto token = UnblindedToken::decode_base64(token_base64); + auto exists = unblinded_tokens_->TokenExists(token); + + // Assert + EXPECT_TRUE(exists); +} + +TEST_F(ConfirmationsUnblindedTokensTest, TokenExists_UnknownToken) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(3); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + std::string token_base64 = "DEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEFDEADBEEF"; // NOLINT + auto token = UnblindedToken::decode_base64(token_base64); + auto exists = unblinded_tokens_->TokenExists(token); + + // Assert + EXPECT_FALSE(exists); +} + +TEST_F(ConfirmationsUnblindedTokensTest, Count) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(6); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + auto count = unblinded_tokens_->Count(); + + // Assert + EXPECT_EQ(6, count); +} + +TEST_F(ConfirmationsUnblindedTokensTest, IsEmpty) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(0); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + auto empty = unblinded_tokens_->IsEmpty(); + + // Assert + EXPECT_TRUE(empty); +} + +TEST_F(ConfirmationsUnblindedTokensTest, IsNotEmpty) { + // Arrange + auto unblinded_tokens = GetUnblindedTokens(9); + unblinded_tokens_->SetTokens(unblinded_tokens); + + // Act + auto empty = unblinded_tokens_->IsEmpty(); + + // Assert + EXPECT_FALSE(empty); +} + +} // namespace confirmations diff --git a/vendor/bat-native-confirmations/test/data/catalog.json b/vendor/bat-native-confirmations/test/data/catalog.json new file mode 100644 index 000000000000..c8716531aa17 --- /dev/null +++ b/vendor/bat-native-confirmations/test/data/catalog.json @@ -0,0 +1,79295 @@ +{ + "version": 1, + "ping": 7200000, + "campaigns": [ + { + "campaignId": "7ac6082f-eec5-4169-871d-09fd7e9c3093", + "name": "onlinepharm", + "startAt": "2017-09-24T19:31:32.541Z", + "endAt": "2019-09-24T19:31:32.549Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a850b388-c3ab-466f-88fe-ab7079de59f6", + "creativeSets": [ + { + "creativeSetId": "f4e27415-740a-43af-9e68-c4b25a27b11f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8f4387fe-2463-4fde-bf82-536684c68e31", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "PetMeds - Medications for Dogs - Take 20% Off Using Code SAVE20", + "title": "1800petmeds", + "targetUrl": "www.1800petmeds.com" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "sOqbf6PQ3c-", + "name": "Online Pharmacy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e379f473-07d8-47c3-b8f1-062d7099cb85", + "name": "cups", + "startAt": "2017-09-24T19:31:33.332Z", + "endAt": "2019-09-24T19:31:33.332Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e8c6a344-ad57-4a3a-9ec0-ecb6092b27fd", + "creativeSets": [ + { + "creativeSetId": "6dfb42cc-e45e-40e2-ba6f-5741d594829d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a8629bfd-3f25-4a92-82b4-0d1122421cc1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bold & Smooth Roasts - Try New 1850™ Brand Coffee", + "title": "1850coffee", + "targetUrl": "www.1850coffee.com/Single_Serve/1850" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "6mVbUr4iL4O", + "name": "Coffee Cups" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "52276cab-a6de-42b0-a70d-1096fb57120e", + "name": "dentalplan", + "startAt": "2017-09-24T19:31:33.943Z", + "endAt": "2019-09-24T19:31:33.943Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3af6ae0b-02b5-4bf2-8f90-b0d23896b477", + "creativeSets": [ + { + "creativeSetId": "0d2adb84-9aab-4343-8ce0-4225621bd96a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "251a9476-48d0-4607-8d6e-eac8cec289c7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dental Care Plan - No Waiting Period on Major Dental Care", + "title": "1Dental", + "targetUrl": "www.1Dental.com/DentalCare" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "L-b6nomirMS", + "name": "Dental Care" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d517495b-a295-4049-b3aa-0e6980acaa4d", + "name": "rugby", + "startAt": "2017-09-24T19:31:34.486Z", + "endAt": "2019-09-24T19:31:34.486Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e5f33115-c38e-44a7-a5cd-1f27c1ef5559", + "creativeSets": [ + { + "creativeSetId": "f2e4c135-313f-4e77-9000-bb2b7825424d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "547c52fa-6ca8-441d-be70-29ed3d05ae3c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rugby 15 - Rugby 15 | 1upmore.com", + "title": "1upmore", + "targetUrl": "1upmore.com/Rugby 15/Rugby 15" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "kQoevuYFc0X", + "name": "Rugby News" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "286ec93f-8e7a-43e0-95b1-7aba00e11497", + "name": "golf", + "startAt": "2017-09-24T19:31:35.083Z", + "endAt": "2019-09-24T19:31:35.083Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5d126cc3-0023-4b11-a0ec-92888c989ea8", + "creativeSets": [ + { + "creativeSetId": "73a3804e-56cd-4a93-a277-01871eab9509", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2f709cf5-a322-4b07-b92e-6bdbabd91691", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Golf Bags Clearance", + "title": "2016Prices", + "targetUrl": "2016Prices.com/Golf Bags" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "hDQ_wObOKVe", + "name": "Golf Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8a876c05-22e0-499a-9c9f-e76d37ade18c", + "name": "onlinepharm", + "startAt": "2017-09-24T19:31:35.708Z", + "endAt": "2019-09-24T19:31:35.708Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "281e3adf-3c55-45d1-ae15-134e39bac82d", + "creativeSets": [ + { + "creativeSetId": "7f9729fa-deb0-4b9c-8567-d9974b7180cc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a50f1013-8c26-49fa-8f5b-a9ebdc164f26", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Discount Pharmacy - Online Promo Codes, Top Offers", + "title": "2018prices", + "targetUrl": "2018prices.com/Pharmacy" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "sOqbf6PQ3c-", + "name": "Online Pharmacy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "58fe6bd4-1e83-4655-8cfc-87260417c5ab", + "name": "dnatesting", + "startAt": "2017-09-24T19:31:36.391Z", + "endAt": "2019-09-24T19:31:36.391Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d33911c6-38b6-48b7-b578-521ee3abce88", + "creativeSets": [ + { + "creativeSetId": "6cb50bb4-c96a-408f-bc28-b44d1244bd18", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e5dd8be3-2236-4aaf-8dc1-b71519c67e12", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "23andMe DNA Testing – Order Now - 23andme.com", + "title": "23andme", + "targetUrl": "www.23andme.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "pPUDW42mDiO", + "name": "Genealogy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "282a6ed7-d99a-4f6d-9895-3234625d143f", + "name": "loans", + "startAt": "2017-09-24T19:31:36.944Z", + "endAt": "2019-09-24T19:31:36.944Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d5f2d5a5-f1d0-4fb3-a136-5dac6b374eda", + "creativeSets": [ + { + "creativeSetId": "b467ec06-dcb8-4da3-88bd-2541471cdad1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a23eea17-cba1-45d0-b73b-88dc10a5acab", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "$500-$35,000 Personal Loans - Bad Credit Ok | 247loanpros.com", + "title": "247loanpros", + "targetUrl": "www.247loanpros.com/Bad-Credit/Personal_Loans" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "BwhnRpkM8sF", + "name": "Personal Loans" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ea5eaab2-bb18-4f8f-a6a0-b99c7c9e816e", + "name": "pets", + "startAt": "2017-09-24T19:31:37.795Z", + "endAt": "2019-09-24T19:31:37.796Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "92152a90-cb7e-4755-b7ad-91a6444208e9", + "creativeSets": [ + { + "creativeSetId": "99ad81bf-ef61-4958-ac31-0208b0433c7f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "62eaadf2-4d4d-48a8-8d65-55d09e1bdf0e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pet Supplies - Great Deals Online", + "title": "365bargains", + "targetUrl": "365bargains.net/Pet/Supplies" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "cJeWKlUNo4Y", + "name": "Dog Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9091a32a-9044-401e-823b-54f6af24c21e", + "name": "loans", + "startAt": "2017-09-24T19:31:38.357Z", + "endAt": "2019-09-24T19:31:38.357Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "642e9294-f88d-4d33-a12b-2f19f0788db5", + "creativeSets": [ + { + "creativeSetId": "a6c6abbd-439f-41ba-8bd8-170d922fc69d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2b7f55fb-af9f-44c3-9090-da812368ea51", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "$500 - $35000 Personal Loans - America's Choice - Act Now", + "title": "365fastloans", + "targetUrl": "www.365fastloans.com/Personal_Loans" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "BwhnRpkM8sF", + "name": "Personal Loans" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9cc19459-4021-4a9f-bc78-9e1fe512b8f6", + "name": "ecommerce", + "startAt": "2017-09-24T19:31:38.929Z", + "endAt": "2019-09-24T19:31:38.929Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "097e9fc9-6172-430b-acb2-7e1c9333cc86", + "creativeSets": [ + { + "creativeSetId": "29cadfcf-ff45-458b-b67b-148c73354889", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8c1c3f99-172e-40e0-9e5d-ba20a8c8401b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Ecommerce Websites - 3dcart Makes it Simple. | 3dcart.com", + "title": "3dcart", + "targetUrl": "www.3dcart.com/eCommerce/Website" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "zgMSYI-gfMo", + "name": "eCommerce Websites" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1c58843e-0755-46bd-8364-5540833145b6", + "name": "weightloss", + "startAt": "2017-09-24T19:31:39.502Z", + "endAt": "2019-09-24T19:31:39.503Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b46fa03e-ba0d-4a59-bb64-e6e90abf20a6", + "creativeSets": [ + { + "creativeSetId": "4564ffca-8a2a-4af4-89e5-e81ca3797bfa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1ac26c52-a4e7-49ec-a91d-6e522d784f9e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Way to Loose Weight - Healty Diet Plan | 3weekdiet.com", + "title": "3weekdiet", + "targetUrl": "www.3weekdiet.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e0729ecc-48f2-4b5f-b385-f083c2c2d553", + "name": "cups", + "startAt": "2017-09-24T19:31:40.724Z", + "endAt": "2019-09-24T19:31:40.724Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b51e2e55-93cc-4371-b1d2-7c11077753d8", + "creativeSets": [ + { + "creativeSetId": "88291cd8-f553-468b-a3fd-7cda319ea9ab", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "31a9e5d5-2a07-44a1-adf7-990fd11f2220", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "4imprint – Custom Coffee Cups | 4imprint.com", + "title": "4imprint", + "targetUrl": "www.4imprint.com/Mugs" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "6mVbUr4iL4O", + "name": "Coffee Cups" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9feb9934-ebd2-4923-8500-ff6075358e5a", + "name": "framing", + "startAt": "2017-09-24T19:31:41.426Z", + "endAt": "2019-09-24T19:31:41.426Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1fcc3243-f3de-42d5-ac00-cffa4cd339b4", + "creativeSets": [ + { + "creativeSetId": "c9f235ed-c129-4031-84e2-37e16ec71ae3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2e351c6d-fe20-40c0-9139-16308ebffe8c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Affordable Custom Framing | 567 Framing Brooklyn‎", + "title": "567framing", + "targetUrl": "www.567framing.com/ ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "18fq9aiLp0z", + "name": "body art" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bc9166e3-3f8f-4323-987e-d2b458da4873", + "name": "onlinegames", + "startAt": "2017-09-24T19:31:42.001Z", + "endAt": "2019-09-24T19:31:42.001Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a0edf813-8531-43a3-8230-2f9891e10da2", + "creativeSets": [ + { + "creativeSetId": "b16c972e-c108-4722-b072-1b2a6c68a309", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4877b0ee-f0fc-4b44-af2a-57af3441dd6b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online Games For Pc - Play now - Online Games 2018.", + "title": "60freegames", + "targetUrl": "www.60freegames.com/Free-to-Play/Online-Games" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "o7Q1hjps7Vm", + "name": "Online PC Games" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "41866a54-f245-4438-a671-b37bc8518158", + "name": "TV", + "startAt": "2017-09-24T19:31:42.577Z", + "endAt": "2019-09-24T19:31:42.577Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "eb87c3e9-e9f7-48a8-9589-d448c4154485", + "creativeSets": [ + { + "creativeSetId": "e5fa5640-3d34-45ed-8fa6-fc1ce4be5954", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4129a2d4-3d8f-48a8-bfce-b074817ef665", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "A&E | Watch Full Episodes of Your Favorite Shows", + "title": "A&E", + "targetUrl": "http://www.aetv.com/" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "9pYSQBrO0gv", + "name": "arts & entertainment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f93fce58-9d2b-4737-b256-b522279e3dee", + "name": "science", + "startAt": "2017-09-24T19:31:43.452Z", + "endAt": "2019-09-24T19:31:43.452Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1ff8a0d4-89f8-4d7a-ad12-d4e077bd2b11", + "creativeSets": [ + { + "creativeSetId": "dd4076ff-1a28-46f8-addc-4b741903e085", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "42df2dfb-47eb-4997-a52c-adaecf4d15f7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Advocate For Science - Join AAAS Today", + "title": "AAAS", + "targetUrl": "http://promo.aaas.org/tomorrows_science_needs_advocates/?utm_medium=paid-search&utm_source=bing&utm_campaign=tbc-q12018-alpha-acq&utm_content=intereststopic-scienceterms&dmc=P8A1O2BG" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "_IUoUSoc_ol", + "name": "anatomy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "52ffef5f-9d0b-4ec6-9606-570532297e86", + "name": "carinsurance", + "startAt": "2017-09-24T19:31:44.040Z", + "endAt": "2019-09-24T19:31:44.040Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2ba3e8d2-2209-47c8-b309-65adb835d701", + "creativeSets": [ + { + "creativeSetId": "b92634a2-f36c-4384-a88c-70cac6c5d5c5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6c6350d7-747d-444f-9ef0-c4dc1c36a308", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "AARP Car Insurance - from The Hartford - Over 50", + "title": "Aarp.thehartford", + "targetUrl": "aarp.thehartford.com/auto/quote" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "oYzWfQaOXCj", + "name": "Car Insurance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "18964f02-aced-4a6c-aabd-0278009189f5", + "name": "bingo", + "startAt": "2017-09-24T19:31:44.654Z", + "endAt": "2019-09-24T19:31:44.654Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "633b905a-7868-4e83-aeaf-6b6640d91835", + "creativeSets": [ + { + "creativeSetId": "0bb8ea49-1497-49c6-94e1-c1597510def6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e70765f7-1280-40b8-90a3-45260afc6e98", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Abbott Bingo Supplies", + "title": "Abbottbingoproducts", + "targetUrl": "www.abbottbingoproducts.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "tnXE6QYG4tO", + "name": "Volleyball Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5f9d5b8e-cc26-4beb-b08b-ef5f6793a098", + "name": "jobs", + "startAt": "2017-09-24T19:31:45.488Z", + "endAt": "2019-09-24T19:31:45.488Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f3c4f8b7-11ab-4961-8dda-91233b99ae5e", + "creativeSets": [ + { + "creativeSetId": "8fef324b-5255-44cf-92a5-997c9ff857c6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3c19c1c1-eb17-45f7-b2fd-f26894140768", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Easy Work From Home Job - Set Up School Fundraisers", + "title": "Abcfundraising", + "targetUrl": "www.abcfundraising.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "9Alas5QGK_f", + "name": "Contractor Jobs" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9d225071-2d0d-422d-b7e7-06619bdab33b", + "name": "exercise", + "startAt": "2017-09-24T19:31:46.129Z", + "endAt": "2019-09-24T19:31:46.129Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9de717ef-139e-4222-8e5e-a94dfa9e2e83", + "creativeSets": [ + { + "creativeSetId": "32a65665-6a48-4f62-8901-ea36fd692fd5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bf5da188-f608-4828-a01f-92aa6a478b66", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "AbeBooks.com Official | abebooks.com", + "title": "Abebooks", + "targetUrl": "www.abebooks.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "Gn19-1NmjlI", + "name": "Exercise Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2f418d78-452b-4af1-9f8b-87ee97a8a88d", + "name": "religion", + "startAt": "2017-09-24T19:31:46.425Z", + "endAt": "2019-09-24T19:31:46.425Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9de717ef-139e-4222-8e5e-a94dfa9e2e83", + "creativeSets": [ + { + "creativeSetId": "9d46f4e2-d844-4379-84b7-39a7e8e11ff1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "574dc049-7a5b-4175-a82c-41c30779dc84", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "AbeBooks.com Official", + "title": "Abebooks", + "targetUrl": "www.abebooks.com" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "WOkWXQNNvUq", + "name": "Christian Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ed362eca-1ba0-4e29-b75a-208af2514c8e", + "name": "society", + "startAt": "2017-09-24T19:31:46.755Z", + "endAt": "2019-09-24T19:31:46.755Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9de717ef-139e-4222-8e5e-a94dfa9e2e83", + "creativeSets": [ + { + "creativeSetId": "07a46268-0938-4e96-8757-b9667ee8e9ac", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d91f7370-0909-4505-9d7f-954ab8978c3a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "AbeBooks.com Official", + "title": "Abebooks", + "targetUrl": "www.abebooks.com" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "Fd-YZYI1wwN", + "name": "Online Ebooks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a43cb654-f333-411f-8f37-e00b1e28d6dc", + "name": "jewllery", + "startAt": "2017-09-24T19:31:47.370Z", + "endAt": "2019-09-24T19:31:47.370Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b942edfb-e909-4407-8232-a90f8e62cd5f", + "creativeSets": [ + { + "creativeSetId": "f3c04a0b-ddc0-4b44-a2d4-272b48421824", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4a0c045e-1278-4b62-8e0c-0ce96394c05f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Stunning Pearl Jewellery Gifts - Luxury At Affordable Prices.", + "title": "Absolutepearlscouk", + "targetUrl": "www.absolutepearls.co.uk/Pearl-Jewellery" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8105c1f7-e13f-4198-aad6-1d69a55d09bd", + "name": "radio", + "startAt": "2017-09-24T19:31:47.925Z", + "endAt": "2019-09-24T19:31:47.925Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "af781ea7-8aa9-4b8b-b1f9-2cf2d85835fc", + "creativeSets": [ + { + "creativeSetId": "88db64fb-3894-48f1-abcf-e6a808caadcb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "56a05d54-e877-41ad-a2de-769557671ca0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Listen To Free Radio Stations - Never Run Out Of Song Skips", + "title": "Accuradio", + "targetUrl": "www.accuradio.com" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "fRsTAYO2C1M", + "name": "Radio Streaming" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7868613b-490e-489c-b157-2f83f99db3a2", + "name": "health", + "startAt": "2017-09-24T19:31:48.503Z", + "endAt": "2019-09-24T19:31:48.503Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "29e551e1-1e30-4a3c-9b40-302db85be10e", + "creativeSets": [ + { + "creativeSetId": "23811696-1259-4c92-a63e-8038dab9b640", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f5e24a1d-5731-49fd-806f-545bfdc084dd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Medi-Cal Recipients Only - Incontinence Supply at No Cost | activelifemed.com", + "title": "Active Life Med", + "targetUrl": "https://activelifemed.com/medi-cal/" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "drU6EIAxfb9", + "name": "bowel incontinence" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e6547d47-642b-45f1-ac28-a9df43a712db", + "name": "sexed", + "startAt": "2017-09-24T19:31:49.116Z", + "endAt": "2019-09-24T19:31:49.116Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "46b5918a-0d85-4f74-83b5-1292d1399612", + "creativeSets": [ + { + "creativeSetId": "7c0f7389-13c7-474e-842e-06bc0fb5f6c1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e202074c-aeaf-4be2-ba6a-65491da9a120", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Causes Of Pulmonary Embolism - 12 Symptoms and Treatments", + "title": "Activebeat", + "targetUrl": "www.activebeat.com/Embolism/Health" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "DNAGJbbNFl-", + "name": "Sex Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "359ed791-8b2a-454f-ad13-c1cd21f9b378", + "name": "sports", + "startAt": "2017-09-24T19:31:49.415Z", + "endAt": "2019-09-24T19:31:49.415Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "46b5918a-0d85-4f74-83b5-1292d1399612", + "creativeSets": [ + { + "creativeSetId": "d8da9580-6aa2-472e-8019-5f634e2243b7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "206e7cf9-f12d-42d6-b243-df4271d9602f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Get In Shape With Martial Arts - Best Martial Arts For Exercise", + "title": "Activebeat", + "targetUrl": "www.activebeat.com/MartialArts/Fitness" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "M2Rtnq7snDL", + "name": "Martial Arts Training" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ed6323a0-f03e-42a1-a860-61ba24655756", + "name": "sports", + "startAt": "2017-09-24T19:31:49.996Z", + "endAt": "2019-09-24T19:31:49.996Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "70b5be61-4bd4-4010-999c-6a8dc0f631c2", + "creativeSets": [ + { + "creativeSetId": "65069742-9662-4da1-ae1b-6997249298a9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4618107d-ff92-49ed-a964-f48d1c28f418", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Active Ride Shop?? - Skate Deck Sale", + "title": "Activerideshop", + "targetUrl": "www.activerideshop.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FWG6gM9kOij", + "name": "Skateboards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ea1e4105-df4e-48c0-8db7-b853468f87ca", + "name": "society", + "startAt": "2017-09-24T19:31:50.550Z", + "endAt": "2019-09-24T19:31:50.550Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "03943a43-8b77-4a8d-9af0-e22d1236f647", + "creativeSets": [ + { + "creativeSetId": "b16a92c0-72d5-4e5c-bffd-bb65f3cfbeb8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "33abccb0-e3af-44ca-9532-b3456ac02bc1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Easy Online Booking System - Online Book System", + "title": "Acuityscheduling", + "targetUrl": "www.acuityscheduling.com/Start_Free_Now" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "Fd-YZYI1wwN", + "name": "Online Ebooks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a38ab142-a790-4622-81bb-39e50f6c49f8", + "name": "adult", + "startAt": "2017-09-24T19:31:51.343Z", + "endAt": "2019-09-24T19:31:51.343Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c464b5c0-b9d9-446e-a742-68496adef2cc", + "creativeSets": [ + { + "creativeSetId": "90166750-90fc-4a62-8418-022095fb79fb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dedaea85-b166-400c-903b-edc7ad660533", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Adam & Eve® Online Sex Shop - The #1 Source for Adult Toys.", + "title": "Adameve", + "targetUrl": "www.adameve.com" + } + } + ], + "segments": [ + { + "code": "BLz4HWBCFN", + "name": "Adult" + }, + { + "code": "l3UPx578DUq", + "name": "Adult Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "baa8626e-8b53-4858-8b3e-335a3ac942c0", + "name": "students", + "startAt": "2017-09-24T19:31:52.036Z", + "endAt": "2019-09-24T19:31:52.036Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f85d8e33-aa7c-4772-8ba9-df6adcc8b44e", + "creativeSets": [ + { + "creativeSetId": "78cbfaa7-29ab-4697-b060-dc276a89c888", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9d1b16cf-5dd7-43e4-90ab-bf3d36afd1f1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Adobe.com | Creative Cloud for Students | Live Life Creatively", + "title": "Adobe", + "targetUrl": "www.adobe.com/CreativeCloud/Students" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "HJWyQTrQEe3", + "name": "Adobe Courses" + } + ] + }, + { + "creativeSetId": "32002ab2-a4c0-48f7-af81-fd816d922f6d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4db82354-a919-45fc-9541-9e56ee0340d3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "InDesign for Students - Make your next move. | adobe-students.com", + "title": "Adobe", + "targetUrl": "http://www.adobe-students.com/creativecloud/buy/students.html?sdid=KKUDA&mv=search&s_kwcid=AL!3085!10!78958698621523!20793107414&ef_id=WmZBUAAAAF4YWyKh:20180206000036:s" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "kuv0J6eTQnC", + "name": "design" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cb466bae-2ec9-4444-94f7-22f6bdf70188", + "name": "students", + "startAt": "2017-09-24T19:31:52.882Z", + "endAt": "2019-09-24T19:31:52.883Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "adbc4584-26f8-41f7-8987-f3ec1e96758e", + "creativeSets": [ + { + "creativeSetId": "33b94d26-4064-45fe-b405-b4639a2a948d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "421d172d-3ba7-422b-aaad-43b3f8247a8f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Creative Cloud for Students - Live Life Creatively - Join", + "title": "Adobe-students", + "targetUrl": "www.adobe-students.com/CreativeCloud/Students" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "HJWyQTrQEe3", + "name": "Adobe Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "34a25170-8de1-4f18-8ab5-26afc0a18afa", + "name": "gymnastics", + "startAt": "2017-09-24T19:31:53.465Z", + "endAt": "2019-09-24T19:31:53.465Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "820bca1d-f3bb-4669-bbcb-a4b4e8c4f355", + "creativeSets": [ + { + "creativeSetId": "b66ffe99-8c8e-4f88-9588-1ef62ebd228c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0be1e04d-f0c2-445f-920c-3187ed90c8ee", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Gymnastics Awards - Save Big on Quality Sports Awards", + "title": "AdTrophy", + "targetUrl": "www.AdTrophy.com/Gymnastics" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "nW9RcA3E3JA", + "name": "Gymnastics Awards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cc2d09ae-28fb-4371-bdb6-4a119671a47d", + "name": "adult", + "startAt": "2017-09-24T19:31:54.047Z", + "endAt": "2019-09-24T19:31:54.047Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cea2192a-9f4e-4368-b67c-ad4dd000bba8", + "creativeSets": [ + { + "creativeSetId": "be0fce99-2ddf-42a3-8394-4311656cf2be", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "598f15c4-d1db-421e-8bde-c3d445e53869", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Adult DVDs Cheap and Fast - Fast same day shipping", + "title": "AdultDVD", + "targetUrl": "AdultDVD.com" + } + } + ], + "segments": [ + { + "code": "BLz4HWBCFN", + "name": "Adult" + }, + { + "code": "l3UPx578DUq", + "name": "Adult Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7d8a4e73-bb7a-442e-be5f-95b8c9651430", + "name": "protein", + "startAt": "2017-09-24T19:31:54.673Z", + "endAt": "2019-09-24T19:31:54.673Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2d98a1be-0b8c-41ff-8c41-622c0969ac9d", + "creativeSets": [ + { + "creativeSetId": "496d3383-146a-4d03-93a3-fda760ebc170", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d2a01575-4f0a-4277-878f-d3491ccad57c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy ISS Oh Yeah! Protein - Chocolate and Vanilla flavor", + "title": "Advsupplements", + "targetUrl": "advsupplements.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "2SU6dGfT9-t", + "name": "Protein Shakes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0753ab87-333b-4ce5-b6a7-ab4a2e6bef4e", + "name": "travel", + "startAt": "2017-09-24T19:31:55.502Z", + "endAt": "2019-09-24T19:31:55.502Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "660e4d69-b30d-40fd-991a-07e0c47f92ec", + "creativeSets": [ + { + "creativeSetId": "53992b66-cee7-4418-a407-e72eac3367bf", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "188e2c29-f3db-4cbf-8368-b937d00da604", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hotel Deals - Last Minute Deals Up to 80% - Deal Promotion", + "title": "Agoda", + "targetUrl": "www.agoda.com/Deals/Deals" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6mVE5rciM5p", + "name": "Hotel Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "efc2d419-9e57-406d-bd9a-c79e4e290677", + "name": "classes", + "startAt": "2017-09-24T19:31:56.143Z", + "endAt": "2019-09-24T19:31:56.143Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "006fc852-dabc-4f81-907e-9674038ec184", + "creativeSets": [ + { + "creativeSetId": "f27f192c-3746-46cf-9562-09ffb2000a6e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "faad0ae0-97e0-4f09-b5d4-74cce2919525", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The Art Institutes® - Graphic Design Online (BS)", + "title": "Aionline", + "targetUrl": "lp.aionline.edu/graphic-design" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "EjsX_m6RTAg", + "name": "Graphic Designers" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "030a05c8-507a-4e2b-acc8-4d1211031e3d", + "name": "classes", + "startAt": "2017-09-24T19:31:56.713Z", + "endAt": "2019-09-24T19:31:56.713Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "77b56885-1db8-4891-96f2-9e82e4dcc1f9", + "creativeSets": [ + { + "creativeSetId": "781b32b5-4bed-4085-a213-b524146f6c8d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "91035bd3-c6e8-44a1-b226-b6b2f96729ab", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The Art Institutes® - Media Arts & Animation Online", + "title": "AiOonline", + "targetUrl": "lp.aionline.edu/animation" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "K1d6Q52s4WP", + "name": "Animation Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "488cc6b6-cf92-483f-97e3-27ee5cc9caa3", + "name": "vacation", + "startAt": "2017-09-24T19:31:57.509Z", + "endAt": "2019-09-24T19:31:57.509Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "af58a3c2-e22f-46c0-b386-9f648826ea5e", + "creativeSets": [ + { + "creativeSetId": "c58e30c4-f951-4844-8c6a-53506e1cc07b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "14cd33e6-e5de-4b42-9c41-d1676da9fde6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Vacation - The Unique Alternative To Hotels", + "title": "Airbnb", + "targetUrl": "www.airbnb.com/Vacation-Rentals" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "xrH2KKuKBDm", + "name": "Cruise Vacations" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "948ac106-e611-49a9-a3bb-0a6ab99f146d", + "name": "flights", + "startAt": "2017-09-24T19:31:58.160Z", + "endAt": "2019-09-24T19:31:58.160Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ab865316-2447-4542-a529-c686613e2909", + "creativeSets": [ + { + "creativeSetId": "b830e222-1b6f-4de3-9b86-c108b4d2f334", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8f1339aa-6d9d-41fd-8eb0-ee3ca9093462", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Fares With Air Canada - Flights to India | aircanada.com", + "title": "Aircanada", + "targetUrl": "www.aircanada.com/Book-Online/India" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "0LyFuY7_Cse", + "name": "Flight Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7937a1b8-4c60-4a5e-8390-349ac4f251d5", + "name": "onlinecourse", + "startAt": "2017-09-24T19:31:58.733Z", + "endAt": "2019-09-24T19:31:58.733Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "299261e7-cad5-45b6-b3fb-0ea77f279008", + "creativeSets": [ + { + "creativeSetId": "b4dad8cb-3ce8-4926-8a47-3aa934a05073", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "175fde12-c53a-4f79-a478-4a9b602c53b1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online Degree Programs - No Application Fee Required", + "title": "AIUSchools", + "targetUrl": "online.aiuschools.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "rNd-q2umuLA", + "name": "IT Online Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "745cf83f-8ca8-4fd1-9f59-f80f117dc85c", + "name": "wrestling", + "startAt": "2017-09-24T19:31:59.387Z", + "endAt": "2019-09-24T19:31:59.387Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0803411b-2943-42a9-8159-81ea3a7909a5", + "creativeSets": [ + { + "creativeSetId": "db6dab30-131a-44cb-95de-d984bc7ecdb3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "71d193c5-6271-4290-bd08-57dfbd519095", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Championship Title Belts | ajsbelts.com", + "title": "AJ Belts", + "targetUrl": "http://www.ajsbelts.com/" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "7_Za0EpP7as", + "name": "wrestling" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "aead0758-1f53-4c04-9883-ff98dc48763c", + "name": "wrestling", + "startAt": "2017-09-24T19:31:59.972Z", + "endAt": "2019-09-24T19:31:59.972Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "824efcd7-8276-4d0b-a7ba-0f3e5f923fea", + "creativeSets": [ + { + "creativeSetId": "f67a8902-2887-4272-a22d-320a74dde7ec", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "892fd815-e539-4397-82ee-c6bfffc17046", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Replica Wrestling Belts", + "title": "Ajsbelts", + "targetUrl": "www.ajsbelts.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "J5bdxnl4xfj", + "name": "Wrestling Belts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ad6d5785-f962-4bde-aaec-cc92ed6e782a", + "name": "cooking", + "startAt": "2017-09-24T19:32:00.540Z", + "endAt": "2019-09-24T19:32:00.540Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ce149632-4ac2-494d-b931-1206efd1a710", + "creativeSets": [ + { + "creativeSetId": "56a0a1c5-c667-4b7a-a4a6-8160527e7e7f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7c33b57b-373a-41eb-a0a8-e5d42bffcda4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fresh pasta machines | Plants for pasta factories‎", + "title": "Aldo-cozzi", + "targetUrl": "www.aldo-cozzi.com/machines/fresh_pasta ‎ +39 0331 557200" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "AqMmPbWQnUE", + "name": "Fresh Pasta" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7a75fb38-fcfb-41d0-b9f9-7889fd5d4fb4", + "name": "gambling", + "startAt": "2017-09-24T19:32:01.583Z", + "endAt": "2019-09-24T19:32:01.583Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0d355c93-9ee4-4608-b136-46261913196b", + "creativeSets": [ + { + "creativeSetId": "5be8720a-7b09-4bd2-a808-ef2addc51a0e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a35f5af8-f848-42bc-a889-f84802a3a67b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Waiting For Your Next Big Win - Gambling Addiction Treatment", + "title": "Algamus", + "targetUrl": "www.algamus.org/Sports-Betting" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "F7q5REWSRoB", + "name": "Sports Betting" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ed5d28fa-a607-4a7f-876d-400ac9a17950", + "name": "horserace", + "startAt": "2017-09-24T19:32:02.141Z", + "endAt": "2019-09-24T19:32:02.141Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "85deb546-89fe-49d8-86e3-9c290f6174cd", + "creativeSets": [ + { + "creativeSetId": "16666b06-8dbc-4100-9434-eebf607444dc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "629b3acb-c67b-4896-b104-401daee1fdda", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Horse Race Handicapping 101 - Start Using Science To Win", + "title": "AlgorithimFactors.com", + "targetUrl": "http://www.algorithmfactors.com/" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "ajDmkssdVw-", + "name": "horse racing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ba69a24a-5d10-45ad-a9e0-eab9701b515a", + "name": "finance", + "startAt": "2017-09-24T19:32:02.756Z", + "endAt": "2019-09-24T19:32:02.756Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d608c60d-6a76-4846-b4ac-4502009bf906", + "creativeSets": [ + { + "creativeSetId": "c6ee6899-e44d-4235-8545-806e7e95adc5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fed25807-1ac8-4e6a-bed5-3463b829e778", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Independent Financial Advisor - Read Must Know Information Now", + "title": "Allanswers", + "targetUrl": "www.allanswers.com/Medical" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "z7floCfZA_P", + "name": "Financial Advisors" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8b8b0332-61e3-4f4c-a83b-f8b52fdb385c", + "name": "deafness", + "startAt": "2017-09-24T19:32:03.369Z", + "endAt": "2019-09-24T19:32:03.369Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3516360d-1e3b-41aa-bf5a-35f997c22cca", + "creativeSets": [ + { + "creativeSetId": "63fabdd7-dea0-4ea0-8e6b-ca55970b435d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "27ec9832-780c-44fe-9f08-f05723f8838b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Deafness – Read Must Know Information Now | allanswers.com", + "title": "Allanswers.com", + "targetUrl": "http://www.allanswers.com/topic/20/Deafness/?utm_campaign=665DnkT&utm_term=deafness&utm_medium=e&g_ti=kwd-304410134576&g_de=c&g_ci=364695774&g_ai=9683797650&utm_content=1" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "e-bkSrU9OUx", + "name": "deafness" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b420e3a5-5873-4ac6-b752-61cf85674e60", + "name": "psych", + "startAt": "2017-09-24T19:32:04.532Z", + "endAt": "2019-09-24T19:32:04.532Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "629cb315-6330-443d-aac3-a1acc916b0dd", + "creativeSets": [ + { + "creativeSetId": "74c9b30e-9450-4c9f-ba83-127e2c482cbf", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "69a15ddc-a003-41a1-af3c-6c0bf65c8e5c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bachelor's in Psychology - Alliant Int'l. University | info.alliant.edu", + "title": "Alliant Int'l University", + "targetUrl": "http://info.alliant.edu/alliant-psychology-simple-page/?source=PPC&provider=Bing&utm_source=Bing&utm_medium=PPC&utm_campaign=*Psychology%20(CSPP)%20-%20Search&utm_term=psychology&placement={placement}&device=c" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "NC_wBSbCeE_", + "name": "psychology & psychiatry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e4eba847-edcb-47ca-964b-dd8da88fbac4", + "name": "bbq", + "startAt": "2017-09-24T19:32:05.141Z", + "endAt": "2019-09-24T19:32:05.141Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2e1ecfd5-ed3f-493f-bc96-3102f8bc2e07", + "creativeSets": [ + { + "creativeSetId": "36804695-d450-413d-90ac-edea55c8a607", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f33d23e9-5d6c-4cc9-857d-572750c3b999", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Weber Grills Sale - Find & Explore - Start Searching Here", + "title": "AllLocal", + "targetUrl": "AllLocal.net/Weber_Grills/Sale" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "w2RZcyzoMxq", + "name": "Barbecues" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2e3962b9-9722-48f2-b3ee-a1cc3fe82b00", + "name": "furniture", + "startAt": "2017-09-24T19:32:05.701Z", + "endAt": "2019-09-24T19:32:05.702Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5947ff05-88f3-49cb-9a26-60003009374e", + "creativeSets": [ + { + "creativeSetId": "19f53e32-625c-4955-9631-c4324e717764", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b1d823c1-d6dd-47d6-bb6a-1853ef463036", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "AllModern® Furniture", + "title": "AllModern", + "targetUrl": "www.AllModern.com/Home-Furniture" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "JdIppC2dyV9", + "name": "Home Furniture" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c1f0c071-71c5-47d9-8af4-836dd69c4e7c", + "name": "decor", + "startAt": "2017-09-24T19:32:06.046Z", + "endAt": "2019-09-24T19:32:06.046Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5947ff05-88f3-49cb-9a26-60003009374e", + "creativeSets": [ + { + "creativeSetId": "bfda723c-b926-4278-b319-6c5fdde2dd16", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "70fa9346-1cff-4f4e-9e1e-c72f7fb1d1e6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home decor | AllModern.com", + "title": "AllModern", + "targetUrl": "www.AllModern.com/Home-Decor" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "T4rhcMPPBhp", + "name": "Home Décor" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b6ec3dc5-fe32-47d0-9435-5b5b58f178b4", + "name": "decor", + "startAt": "2017-09-24T19:32:06.815Z", + "endAt": "2019-09-24T19:32:06.816Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "dc6d2aa6-0cba-47d8-b10b-66467d7007f7", + "creativeSets": [ + { + "creativeSetId": "8a2c97a5-006c-430b-b1b5-d1b57723d1eb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "12fd60e7-fac1-4db5-b9cc-f33304c1165f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Art Frames - Ready to Hang & Ships Fast. | allposters.com", + "title": "Allposters", + "targetUrl": "www.allposters.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "18fq9aiLp0z", + "name": "body art" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "509ad8e1-a7ab-4f7e-b8fe-48c9a1502653", + "name": "tea", + "startAt": "2017-09-24T19:32:07.393Z", + "endAt": "2019-09-24T19:32:07.393Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0d784670-d2d8-4a77-a96a-3ff07bda8ced", + "creativeSets": [ + { + "creativeSetId": "fad12dd1-ccf9-441a-8d1c-b3c6419606b5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ff75db5f-ba22-44b1-a323-9413e9c4c5c6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Tea Drinks Recipes - Allrecipes.com", + "title": "Allrecipes.com", + "targetUrl": "http://allrecipes.com/recipes/139/drinks/tea/" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "5TXMHBDVqA7", + "name": "tea" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b2158984-b2f0-423e-baec-e74a2acc680b", + "name": "degrees", + "startAt": "2017-09-24T19:32:08.603Z", + "endAt": "2019-09-24T19:32:08.603Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0e614a65-d33e-42e5-b947-cbce9c85ff04", + "creativeSets": [ + { + "creativeSetId": "5f9762a9-3ee6-4ce9-be10-c5c4755e9ba1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bd170465-eb58-4713-8f1e-dacd60a211e9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Animation Degree Information - Search for Animation Degree", + "title": "Alothome", + "targetUrl": "alothome.com/animation/degree" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "K1d6Q52s4WP", + "name": "Animation Degree" + } + ] + }, + { + "creativeSetId": "ad652c51-1861-4ba6-af4d-1b7ece1a5e73", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "04080e74-6c62-43e4-b936-6355dde33389", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Degrees In Film Production - Try the Alothome.com Search", + "title": "Alothome", + "targetUrl": "alothome.com/Degrees In Film Production" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "BAhEnDxcxBo", + "name": "Film Production Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7a241374-5df8-4e9b-a553-ce8a96f4a6e0", + "name": "marketing", + "startAt": "2017-09-24T19:32:09.211Z", + "endAt": "2019-09-24T19:32:09.211Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0e614a65-d33e-42e5-b947-cbce9c85ff04", + "creativeSets": [ + { + "creativeSetId": "55ba93d1-5e7c-4fbe-a2d4-f50a3618e0e0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "46cb45e9-d45d-445f-bc5a-e1d9138abf85", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "E-Mail Marketing Information - Search for E-Mail Marketing", + "title": "Alothome", + "targetUrl": "alothome.com/e-mail/marketing" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "rN7XjveZc4b", + "name": "Email Marketing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "047266b6-bdf5-40f4-9d23-d9badc137354", + "name": "banks", + "startAt": "2017-09-24T19:32:09.539Z", + "endAt": "2019-09-24T19:32:09.539Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0e614a65-d33e-42e5-b947-cbce9c85ff04", + "creativeSets": [ + { + "creativeSetId": "5b445543-95d3-4534-9e37-8e35462def74", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4e26aaed-9b8d-4072-96fe-cc2f54d5bced", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bank Accounts Search Listings - Search for Bank Accounts Info", + "title": "Alothome", + "targetUrl": "alothome.com/bank-accounts" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "7MiD5IH1W6t", + "name": "Bank Accounts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d67725a5-d29a-484e-aa1a-9984a934bfea", + "name": "religion", + "startAt": "2017-09-24T19:32:09.897Z", + "endAt": "2019-09-24T19:32:09.898Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0e614a65-d33e-42e5-b947-cbce9c85ff04", + "creativeSets": [ + { + "creativeSetId": "f509da73-cde6-4bda-b515-6d2d3a1c19fe", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "be304e51-025d-4549-91b3-b7a75a0ca314", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Islamic Books Info - Search for Islamic Books", + "title": "Alothome", + "targetUrl": "alothome.com/Islamic Books" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "EUUwhzvuKC4", + "name": "Islamic Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e1401eae-87d4-4c11-9154-45428b922539", + "name": "books", + "startAt": "2017-09-24T19:32:10.379Z", + "endAt": "2019-09-24T19:32:10.379Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0e614a65-d33e-42e5-b947-cbce9c85ff04", + "creativeSets": [ + { + "creativeSetId": "56736de6-2a26-43ea-adbe-29cad1d33d4c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9b22f92a-efec-458b-ad7a-97c516facbc1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Physicist Books Info - Search for Physicist Books", + "title": "Alothome", + "targetUrl": "alothome.com/Physicist Books" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "AQ9eV3TbmJq", + "name": "Physics Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "92fb1096-bcb5-4488-8ac2-89216a1e4cc0", + "name": "hobbies", + "startAt": "2017-09-24T19:32:10.707Z", + "endAt": "2019-09-24T19:32:10.707Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0e614a65-d33e-42e5-b947-cbce9c85ff04", + "creativeSets": [ + { + "creativeSetId": "d786b2ef-7e5b-493a-b789-dc2f467496ed", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "71925fcb-84e4-48ad-9cff-5fdea4f6154e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The New Dart Search Listings - Search for The New Dart Info", + "title": "Alothome", + "targetUrl": "alothome.com/the-new-dart" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "gxL4h38VZWH", + "name": "Darts Supplies" + } + ] + }, + { + "creativeSetId": "6e62ec73-7a75-4982-a19f-268e73746028", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "10a73880-45fe-435c-8807-e4cd7954a7af", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Golf Suppliers Info - Search for Golf Suppliers", + "title": "Alothome", + "targetUrl": "alothome.com/Golf Suppliers" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "hDQ_wObOKVe", + "name": "Golf Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8528a1e5-c185-4085-a7b8-18b0c511e6fa", + "name": "orthopedic", + "startAt": "2017-09-24T19:32:11.598Z", + "endAt": "2019-09-24T19:32:11.598Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f8cbc9de-496f-4ea2-bdb7-14c43b1973e6", + "creativeSets": [ + { + "creativeSetId": "84f9dab9-acdd-454c-94d7-63aa6ed2ebbd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f656c881-701d-496e-b8a1-6e0406c1963d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 10 Orthopedic Surgeons - Get Your Local Listings Here. | alotlocal.com", + "title": "ALotLocal.com", + "targetUrl": "http://alotlocal.com/business?query=orthopedic+surgeon&camp_id=22809&matchtype=b&gkey=orthopedic&network=s&device=c&adgroupid=1250144826901847&adid=78134080471514&Campaign=284094970&keywordid=78134130451935?msclkid=370ff968dc6018bbbd4ba31021395857&utm_source=bing&utm_medium=cpc&utm_campaign=Orthopedic%20Surgeon%20en-Local%20Search%20-%20Computer%20and%20Tablet%20(22809)&utm_term=top%2010%20orthopedic%20surgeons&utm_content=Orthopedic%20Surgeon%20-%20B" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "4T7wKVmdSQK", + "name": "orthopedic" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e3ed9193-89b1-46a3-b528-900a1123f11f", + "name": "database", + "startAt": "2017-09-24T19:32:12.245Z", + "endAt": "2019-09-24T19:32:12.245Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "82cd17c5-c5f2-448f-8ac1-e5d0b6405f8c", + "creativeSets": [ + { + "creativeSetId": "2a285be3-af35-4354-add7-7e947ad17302", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1cbc77b5-b4c6-4618-95e3-f940235366cf", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Database Conversion Tool", + "title": "Altova", + "targetUrl": "www.Altova.com/MapForce" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "P2WrQgJRNfq", + "name": "Compare Databases" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4ddb2ed1-c7d0-4700-b6a4-24856ea0677c", + "name": "hobbies", + "startAt": "2017-09-24T19:32:12.802Z", + "endAt": "2019-09-24T19:32:12.803Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "58450569-82a5-46e5-a2f9-fdd9afbc28c5", + "creativeSets": [ + { + "creativeSetId": "dde892c6-8dfa-4fb3-b7e3-35ac1c28660c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b75b6f2e-5a18-4be6-ab71-cd28471f3f9e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Save With AMain - The Official Site For RC Hobbies", + "title": "AMain Hobbies", + "targetUrl": "https://www.amainhobbies.com/?utm_group=A_Main_Hobbies_-_MB&utm_type=b&utm_source=bing&utm_medium=cpc&utm_campaign=Branded&utm_term=amainhobbies%20discounts&utm_content=A%20Main%20Hobbies%20-%20MB" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "-1CkYNvdqxZ", + "name": "antiques" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "066ae65d-a1a5-4c3a-8ea8-27d7a925a30a", + "name": "adult", + "startAt": "2017-09-24T19:32:13.411Z", + "endAt": "2019-09-24T19:32:13.411Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9a75a90-5775-4d59-977a-21aac9581e91", + "creativeSets": [ + { + "creativeSetId": "e11600fe-ae31-421c-9f95-59b36868027b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "037c38a5-93a3-462f-a2bd-de1153e6d947", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "For Adults | Amazon.com", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/s/?ie=UTF8&keywords=for+adults&index=toys-and-games&tag=geminipcstand-20&ref=pd_sl_9duwju05f9_e" + } + } + ], + "segments": [ + { + "code": "BLz4HWBCFN", + "name": "Adult" + }, + { + "code": "bPKqSaBVGqq", + "name": "adult" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "634caca1-b32e-402b-a37a-053fb3c327ae", + "name": "cooking", + "startAt": "2017-09-24T19:32:13.729Z", + "endAt": "2019-09-24T19:32:13.729Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9a75a90-5775-4d59-977a-21aac9581e91", + "creativeSets": [ + { + "creativeSetId": "ccd7f5fe-73c0-4531-9f37-f4c7b0a0b843", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f9480f38-5df8-41e5-a890-e41eefe5cd4c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Buyer - Amazon - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/cookware" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "1Jz9ZYkAanF", + "name": "Buy Video Games" + } + ] + }, + { + "creativeSetId": "ea58352a-c901-4512-8dc7-b96f47b3604b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "175c6302-6cf7-4490-8af3-13a449154743", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Brewery Kit at Amazon", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/s/?ie=UTF8&keywords=brewery+kit&tag=mh0b-20&index=aps&hvadid=3525379061&hvqmt=b&hvbmt=bb&hvdev=c&ref=pd_sl_9leg9if3yu_b" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "DD-TEhEW17I", + "name": "beer" + } + ] + }, + { + "creativeSetId": "de4a8389-5faa-4ba7-aedb-a5bbfd2d5cf3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "61e97589-7ab5-468d-897b-1e199488263f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Coffee Cupes on Amazon - Low Prices for Coffee Cupes", + "title": "Amazon", + "targetUrl": "www.amazon.com/popular/items" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "6mVbUr4iL4O", + "name": "Coffee Cups" + } + ] + }, + { + "creativeSetId": "4da13aef-e43b-45ae-bb7c-aeb7b0e5f3f9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b743900c-9bc6-4231-bd81-09483fe43e30", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Healthy Recipes Book - Amazon Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com/books/cooking" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "9Roh9lJ0tSd", + "name": "Cooking Recipes" + } + ] + }, + { + "creativeSetId": "188e2c7e-8973-41fe-a321-d2672a2a84ef", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e5f81c7b-f942-44b7-b3f5-1eeba7120e9d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fresh Pasta at Amazon.com", + "title": "Amazon", + "targetUrl": "www.Amazon.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "AqMmPbWQnUE", + "name": "Fresh Pasta" + } + ] + }, + { + "creativeSetId": "be89c5b5-b540-4e9c-b41a-541ae3d497b1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "59eeb0d6-770b-4741-99b4-e006331a6c16", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Food Pasta at Amazon.com", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/s/?ie=UTF8&keywords=food+pasta&tag=mh0b-20&index=aps&hvadid=78546367180091&hvqmt=b&hvbmt=bb&hvdev=c&ref=pd_sl_2p4xuwglgj_b" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "KK7NbdQ4Qiw", + "name": "pasta" + } + ] + }, + { + "creativeSetId": "810fa1e7-8a9d-4c52-8221-c04890a79627", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "88b1c5ac-4f2a-44ce-88a5-21ae0326e5d5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Protain Shakes at Amazon", + "title": "Amazon", + "targetUrl": "www.amazon.com/Protain Shakes" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "2SU6dGfT9-t", + "name": "Protein Shakes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d29cfd85-0839-461b-bac8-b97f5e309181", + "name": "general", + "startAt": "2017-09-24T19:32:15.671Z", + "endAt": "2019-09-24T19:32:15.672Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9a75a90-5775-4d59-977a-21aac9581e91", + "creativeSets": [ + { + "creativeSetId": "36af6d79-0af8-4c0f-b2a4-e569de6dd030", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1a8ee1fc-d102-4e8c-aea5-fc084e319f95", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "An Encyclopedia Of Battles at Amazon?? - Amazon Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "DmJDqfAFY9a", + "name": "Encyclopedia Online" + } + ] + }, + { + "creativeSetId": "cfa56e10-41b6-4556-9e5f-59d658d6f1c3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "13ab8cb9-9db0-4345-a75a-feb2ea0bff70", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Amazon.com® Official Site - Huge Selection and Amazing Prices", + "title": "Amazon", + "targetUrl": "Amazon.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "sSHTp7EuwPZ", + "name": "Brewery Kits" + } + ] + }, + { + "creativeSetId": "f65aac08-3ce0-47ff-85d1-c4195864b974", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dfdac4e9-7a0e-47cd-83f9-58b38f512245", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Amazon.com® Official Site - Huge Selection and Amazing Prices", + "title": "Amazon", + "targetUrl": "Amazon.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "lFMT5ZDQdjc", + "name": "Juice Drinks" + } + ] + }, + { + "creativeSetId": "56f36518-9daf-4730-9c07-0ba60df3eb4d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8c5a026d-524b-48be-92fa-83dfef4461d6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Amazon.com® Official Site - Huge Selection and Amazing Prices", + "title": "Amazon", + "targetUrl": "Amazon.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "HXyi8S4OgtE", + "name": "Pottery Tools" + } + ] + }, + { + "creativeSetId": "737672ad-a30f-4383-95e3-19a238a8e1fb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c6638fd7-3abd-45f0-a63e-82418232ed2e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Amazon.com® Official Site - Huge Selection and Amazing Prices", + "title": "Amazon", + "targetUrl": "Amazon.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "eJu7bz6XQx4", + "name": "RC Vehicles" + } + ] + }, + { + "creativeSetId": "11f34e6d-e0d6-4ff7-95a4-bc58675b47c2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e019f078-106b-43d7-b5fe-7a9dcb19e19a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Amazon® Official Site - Huge Selection & Great Prices", + "title": "Amazon", + "targetUrl": "www.amazon.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "IdSgRp0c7Tn", + "name": "Stock Photos" + } + ] + }, + { + "creativeSetId": "7d8d9957-c82a-4e9e-bf96-b35ba03b3b6c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "020530ef-263f-48f3-91b2-19c0b833b708", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Amazon® Official Site - Huge Selection & Great Prices", + "title": "Amazon", + "targetUrl": "www.amazon.com" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "u3b4RF02Ctr", + "name": "Artificial Lawns" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "64be5757-79e6-4baf-ba99-3e8b1f8f514b", + "name": "music", + "startAt": "2017-09-24T19:32:17.592Z", + "endAt": "2019-09-24T19:32:17.592Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9a75a90-5775-4d59-977a-21aac9581e91", + "creativeSets": [ + { + "creativeSetId": "52c5c664-6303-4f8b-858f-fe0087e4f63a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "38272426-b899-4ea2-a29b-ae03b330e78a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Smart Speaker For Streaming Music - Free Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/electronics/home-audio" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "yk5gcAl32Yu", + "name": "Music Streaming" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8717fec9-efdf-44d2-bab4-005126b23e06", + "name": "forestry", + "startAt": "2017-09-24T19:32:18.892Z", + "endAt": "2019-09-24T19:32:18.893Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9a75a90-5775-4d59-977a-21aac9581e91", + "creativeSets": [ + { + "creativeSetId": "678cfc3e-936c-46e5-aadb-578217a7a072", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "35d715c3-ddde-4cdd-9b61-98248751f0ab", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Forestry Supplies - Amazon - Low Prices - Forestry Supplies", + "title": "Amazon", + "targetUrl": "www.amazon.com/home" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "A7P6uoAIgzo", + "name": "Forestry Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "eb48077e-78af-45e2-bb2e-6ff50c362640", + "name": "fuel", + "startAt": "2017-09-24T19:32:19.203Z", + "endAt": "2019-09-24T19:32:19.204Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9a75a90-5775-4d59-977a-21aac9581e91", + "creativeSets": [ + { + "creativeSetId": "6258b56f-1deb-4a59-8f1c-91d911463844", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bb166a01-c57a-49f5-a631-9794cbe137be", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Endurance Fuel 5 - Amazon - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/personal-care" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "OAA-T668LRa", + "name": "Fuel Cards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "496e6a08-7e6f-4c26-9467-334035783cb2", + "name": "home", + "startAt": "2017-09-24T19:32:19.583Z", + "endAt": "2019-09-24T19:32:19.583Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9a75a90-5775-4d59-977a-21aac9581e91", + "creativeSets": [ + { + "creativeSetId": "f9f75dda-fe43-4e02-a421-682e95a02f96", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9d257514-1ffc-4e1e-949e-b3c59e6faf24", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Party Supplies at Amazon.com - Shop decorations and More!", + "title": "Amazon", + "targetUrl": "www.amazon.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "JdIppC2dyV9", + "name": "Home Furniture" + } + ] + }, + { + "creativeSetId": "935baa4b-b692-4e71-8025-a9782d75b00b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5e9ebb8e-25fe-4eaa-ada5-47fd84dc8838", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Decor Quotes For Walls - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/home-improve/painting" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "T4rhcMPPBhp", + "name": "Home Décor" + } + ] + }, + { + "creativeSetId": "e2a9a722-fd70-4db7-8a92-1f72881d7a8a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c3e6068c-0a4a-4cc5-acea-b0228e079033", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Decor Quotes For Walls - Amazon.com Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com/home-improve/painting" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "iOSOYZ7Fm9M", + "name": "Home Decorating" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3391815f-b410-4bfa-aa99-3b79fec93300", + "name": "finance", + "startAt": "2017-09-24T19:32:20.439Z", + "endAt": "2019-09-24T19:32:20.440Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9a75a90-5775-4d59-977a-21aac9581e91", + "creativeSets": [ + { + "creativeSetId": "385350b8-a1ae-485f-86c9-5914cebadc3b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "42d777cd-1b37-43a7-b13a-51cf39a33ca5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Turbotax 2012 Business Download - Amazon.com Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com/software" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "25hWYRpip_l", + "name": "Turbo Tax" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6814af38-e4ea-4daa-9d8a-582ebee2101d", + "name": "tech", + "startAt": "2017-09-24T19:32:20.745Z", + "endAt": "2019-09-24T19:32:20.745Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9a75a90-5775-4d59-977a-21aac9581e91", + "creativeSets": [ + { + "creativeSetId": "4a8285d8-2991-4094-8726-b4c6330e26c0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6574beae-c179-4dee-b6dc-1758ec607cce", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Phones & More on Amazon - Shop Low Prices & Top Brands", + "title": "Amazon", + "targetUrl": "www.amazon.com/phones/more" + } + } + ], + "segments": [ + { + "code": "05KGovyhnUj", + "name": "cell phones" + }, + { + "code": "PDcNk9LToal", + "name": "cell phones" + } + ] + }, + { + "creativeSetId": "14e26316-3413-419b-a762-bba02233bccf", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b4f9d9b5-67f0-4a2f-9596-8d19a9c6a499", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Dell Computer - Amazon - Amazon.com Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com/electronics" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "r-ofzMLNsK8", + "name": "Dell Computers" + } + ] + }, + { + "creativeSetId": "f5460487-322f-4096-affc-08341f45bd26", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ede25d7c-23f0-42ea-b600-a58df3ab429c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Mac Power Supply Adapter", + "title": "Amazon", + "targetUrl": "Amazon.com/computers" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "5Puf4sqhfzx", + "name": "Mac Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "35ffc676-c382-4e02-a6c7-756880cdbc70", + "name": "hobbies", + "startAt": "2017-09-24T19:32:21.839Z", + "endAt": "2019-09-24T19:32:21.839Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9a75a90-5775-4d59-977a-21aac9581e91", + "creativeSets": [ + { + "creativeSetId": "08aa34b2-112f-4785-9473-7cbd5a88c1d4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "18738763-59b5-4b42-b018-3f92a0cbdc02", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Astrology And Horoscopes Free - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/app-store" + } + } + ], + "segments": [ + { + "code": "VmJBdpZEByG", + "name": "Folklore" + }, + { + "code": "CYMfcvOonn5", + "name": "Daily Horoscopes" + } + ] + }, + { + "creativeSetId": "e9a68366-3c67-4eef-8868-96260aa336c1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a72f4b70-df13-412e-857a-2170539ac4ad", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Art Craft - Buy art craft at Amazon", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/s/?ie=UTF8&keywords=art+craft&index=aps&tag=geminipcstand-20&ref=pd_sl_4i1h428ka1_b" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "uTPwB9u696f", + "name": "arts & crafts" + } + ] + }, + { + "creativeSetId": "3fa79b1f-6cfb-4133-8fdf-36e050419d6e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e9a15aa0-a775-41b1-8aa0-83efbd1277c1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Bonoculars Birdwatching - Free Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/electronics/camera-photo" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "tVTtOXMuslE", + "name": "Birdwatching Equipment" + } + ] + }, + { + "creativeSetId": "ecbba178-4235-4040-88a4-f9b72e4e78fb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ccf53240-7a64-4e21-a0e0-f130558c75b6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Hobby Board Games - Amazon.com Official Site | amazon.com \r\n", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/s/?ie=UTF8&keywords=hobby+board+games&tag=mh0b-20&index=aps&hvadid=78271535675656&hvqmt=e&hvbmt=be&hvdev=c&ref=pd_sl_8b43j13l1n_e" + } + }, + { + "creativeInstanceId": "3bc3804c-b3ec-48cf-8006-f1b523dff85d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Board Games", + "title": "Amazon", + "targetUrl": "Amazon.com/Kitchen" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "y-dD1TIXfNn", + "name": "Board Games" + } + ] + }, + { + "creativeSetId": "2cc83ff5-f867-496b-9a6e-71ec2b17f4a5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "abe104e4-f206-45c3-bbad-5ee5bec1ec76", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Country Swing Dance Lessons Dvd - Shop Low Prices & Top Brands", + "title": "Amazon", + "targetUrl": "www.amazon.com/popular/items" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "tDcqDSsaTpB", + "name": "Dance Lessons" + } + ] + }, + { + "creativeSetId": "c35fe023-e84c-41b7-9529-59a64b91be5c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1b3c5b45-66fc-441a-a6fa-69082089b0dc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Genealogy at Amazon - Buy Books at Amazon.com and Save", + "title": "Amazon", + "targetUrl": "www.Amazon.com/books" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "pPUDW42mDiO", + "name": "Genealogy" + } + ] + }, + { + "creativeSetId": "2238f1a5-8722-4d95-9358-46dca2c377aa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3952a635-69f1-4ed9-afd0-8ab18897bfdd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Reduction Dies For Coins - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/home-improve/hand-tools" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "K24r-df9CcZ", + "name": "Rare Coins" + } + ] + }, + { + "creativeSetId": "cec67882-d449-4f7b-9d1c-849406afb7f9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0029975f-60f1-45b8-abd2-0745a4071cca", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rare And Ultra Rare Shopkins - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/toys-games/action-figures" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "12wGC9Ye4QL", + "name": "Rare Stamps" + } + ] + }, + { + "creativeSetId": "8dead595-0b01-47ed-9c96-facdbcc4d223", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "566dce66-b9e1-426f-b71c-464d12f015d0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Doobie Brothers - Save on about Scout", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/dp/B01BM1JJ4S?tag=geminipcstand-20&ref=pd_sl_4ft3an869q_b" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "88qReItU92b", + "name": "scouting" + } + ] + }, + { + "creativeSetId": "08833936-568e-461f-9e1a-4914776855a7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0d1ff8ed-000a-4962-b5c8-2ef19d72e7b7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sewiing Supplies - Amazon", + "title": "Amazon", + "targetUrl": "www.Amazon.com/crafts-sewing" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "93bPE8nabJd", + "name": "Sewing Supplies" + } + ] + }, + { + "creativeSetId": "a75e80b5-6dee-4e1f-b011-5d9a4ecbc272", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4296bb5b-d49a-4959-9992-f6ec8b92dbf7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Sports Nets For Baseball - Amazon.com Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com/sports-outdoors/team-sports" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "F7q5REWSRoB", + "name": "Sports Betting" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cef4a5c1-d078-4f16-bbe3-53080d02be02", + "name": "health", + "startAt": "2017-09-24T19:32:25.118Z", + "endAt": "2019-09-24T19:32:25.118Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9a75a90-5775-4d59-977a-21aac9581e91", + "creativeSets": [ + { + "creativeSetId": "20f49555-1cee-4232-a258-134e8e325f73", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "524828af-460b-4bf5-957f-2281ea84c445", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Vegan Protein Drink Ready To Drink - Amazon.com Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com/groceries/beverages" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "EpjpWnjpgxV", + "name": "Drink Recipes" + } + ] + }, + { + "creativeSetId": "e575a77d-21e4-479d-b3d2-69b4605a415e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6ad1a78e-3ec9-4e73-b8f5-574662632d97", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Alternative Medicine Books at Amazon® - Amazon Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "AdfV-Z4M1dC", + "name": "Alternative Medicine Books" + } + ] + }, + { + "creativeSetId": "ff665f2c-1b4f-4f05-8f28-ed9d19e5f977", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f08bb2c2-84d5-4143-981a-352db836fcea", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Asthma Machine Portable - Amazon.com Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com/personal-care/health" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "FFlMXuImzk5", + "name": "Asthma Treatment" + } + ] + }, + { + "creativeSetId": "8a7105e2-9f43-4559-8818-bf6b87568150", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a1329d1b-e8a3-44ad-925d-c035ee872ea3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Austism Books on Amazon - Low Prices for Austism Books", + "title": "Amazon", + "targetUrl": "www.amazon.com/books" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "y03q2Xsu_qb", + "name": "Autism Books" + } + ] + }, + { + "creativeSetId": "2f6814b6-b35c-4c09-8f55-73e7528ea745", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3ec88594-794c-45fb-b250-4a6b12607387", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Buy Ointment: Amazon - Amazon.com Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com/groceries/health-family" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "5Ry6TcY_ODM", + "name": "Buy Vitamins" + } + ] + }, + { + "creativeSetId": "f198154f-5663-4bb5-af8d-d84a29017fb5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "48800517-6f34-47c2-8e78-d2823570538a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cancer Book for Kids", + "title": "Amazon", + "targetUrl": "Amazon.com/Cancer Book for Kids" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "An9yYZl6Px3", + "name": "Cancer Books" + } + ] + }, + { + "creativeSetId": "9499b935-adaa-40ff-b2af-f7ff8c8b3ab2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9f0ee45f-b250-4f37-887d-8d5e48dfaa94", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Chronic Headache - Amazon - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/personal-care" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "RhUDc8iP5Xa", + "name": "Chronic Pain Treatment" + } + ] + }, + { + "creativeSetId": "b8f574f1-6189-42a2-9d30-4ead9280a0a6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c514afb8-efb1-4334-9dc6-a7f446552e67", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Books On Dermatology - Amazon Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com/books/medical-books" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "-dQjfkaxWaZ", + "name": "Dermatology Books" + } + ] + }, + { + "creativeSetId": "c409eca6-0597-44d7-9abf-e4f4915824a1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "30183321-9e70-44be-98d0-aa2968f9fb99", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "20 Diet Book - Amazon Books - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/books/cooking" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "aQGewv5ybwZ", + "name": "Dieting Books" + } + ] + }, + { + "creativeSetId": "d1da9e51-13ed-4b65-9031-f5729e5f1292", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "86e2116b-459d-46da-b28f-7ad50f367a07", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Exercise Ball Book at Amazon?? - Amazon Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "Gn19-1NmjlI", + "name": "Exercise Books" + } + ] + }, + { + "creativeSetId": "6bbcb9fa-2f8d-4b0e-a172-0a6575086d5a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4852da96-afa2-415f-b1a4-ae471cb0eef8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hiv Home Test Kit Oraquick - Shop Low Prices & Top Brands", + "title": "Amazon", + "targetUrl": "www.amazon.com/personal/care" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "ljRVUx5AHbA", + "name": "Hiv Education" + } + ] + }, + { + "creativeSetId": "5ddad9de-3cdc-4f59-837c-0a6661651253", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "da9b071a-85b4-475e-8dbb-fe3b8343ecdf", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Livelong Nutrition - Amazon.com Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com/personal-care/nutrition" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "lWAbLH7wUoL", + "name": "Nutrition Shop" + } + ] + }, + { + "creativeSetId": "6fe06963-db13-456e-b994-631f2818459a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d404bdce-01fe-480e-ba51-158001441d3c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Orthopaedic Book - Amazon Official Site - amazon.com", + "title": "Amazon", + "targetUrl": "www.amazon.com/books/medical-books" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "OAHRLfYZDW5", + "name": "Orthopaedic Books" + } + ] + }, + { + "creativeSetId": "42d8eb55-b05a-4ae0-a2cc-3dd2fe3826a4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bdfbf433-8d6a-44ae-bc1e-49ae3d5655f9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pediatric Education at Amazon® - Amazon Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "ZMWPpFl5yOJ", + "name": "Paediatrics Education" + } + ] + }, + { + "creativeSetId": "2d59ed01-a134-4638-bf90-6589c13a97fb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bb0b4f7e-c914-4e02-a7fd-e93d3266f9c8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pediatrics at Amazon | Amazon.com", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/s/?ie=UTF8&keywords=pediatrics&tag=mh0b-20&index=aps&hvadid=14306301488&hvqmt=e&hvbmt=be&hvdev=c&ref=pd_sl_1hkkebmicd_e" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "H9az-8AKZpQ", + "name": "pediatrics" + } + ] + }, + { + "creativeSetId": "6b7c714a-2177-4981-b1fa-9750286ec48b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "06d04b49-9fbd-4439-88fb-57026f168f0f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Thyroid Books at Amazon - Amazon.com", + "title": "Amazon", + "targetUrl": "www.Amazon.com/Books" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "Q9F_XhEg8W_", + "name": "Thyroid Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "600f0cb9-1950-4571-90e7-f598f130a3e7", + "name": "books", + "startAt": "2017-09-24T19:32:29.953Z", + "endAt": "2019-09-24T19:32:29.953Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9a75a90-5775-4d59-977a-21aac9581e91", + "creativeSets": [ + { + "creativeSetId": "ad15534c-e28a-40e4-9cbc-557b2fb78cd0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9eba25aa-52df-4498-8733-0bec346b0267", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Arch Books at Amazon", + "title": "Amazon", + "targetUrl": "Amazon.com/kidsbooks" + } + } + ], + "segments": [ + { + "code": "5G4C9Gbl_AF", + "name": "History" + }, + { + "code": "DPRmtWVA4dO", + "name": "History Books" + } + ] + }, + { + "creativeSetId": "e8b232c3-01c8-41db-b1c5-3ee2122780bc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9cd8ece3-2507-4222-b128-60b46ef28d40", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Media And Terrorism - Amazon Official Site - amazon.com", + "title": "Amazon", + "targetUrl": "www.amazon.com/books/nonfiction" + } + } + ], + "segments": [ + { + "code": "xdewbpM2V5-", + "name": "Military" + }, + { + "code": "Hut3q5NthJL", + "name": "Terrorism Books" + } + ] + }, + { + "creativeSetId": "1b47cb5d-6e1c-4366-9823-e9f3a9ddf624", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a94402af-6d30-4368-ae6a-5228011e3e8a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Philosophy at Amazon - Free shipping on qualified orders", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/s/?ie=UTF8&keywords=philosophy%27&tag=mh0b-20&index=beauty&hvadid=77859183567581&hvqmt=e&hvbmt=be&hvdev=c&ref=pd_sl_5rjnygszgq_e" + } + }, + { + "creativeInstanceId": "8151211e-1628-49bb-8203-f5ee135b3ee6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Philosophy at Amazon", + "title": "Amazon", + "targetUrl": "www.Amazon.com/Beauty" + } + } + ], + "segments": [ + { + "code": "WeD6iqpYcRh", + "name": "Philosophy" + }, + { + "code": "rjZBSwH_A5h", + "name": "Philosophy" + } + ] + }, + { + "creativeSetId": "9cd76b33-5d7f-4db5-94fd-5efdf6b16634", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d7eadb1a-e9d3-4ddf-b195-7c3b9a8e9ca1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The Politics Book - Low Prices on The Politics Book \r\n", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/s/?ie=UTF8&keywords=the+politics+book&tag=mh0b-20&index=aps&hvadid=78271528038294&hvqmt=b&hvbmt=bb&hvdev=c&ref=pd_sl_52p9brrfkd_b" + } + } + ], + "segments": [ + { + "code": "IKz_FG_xPdH", + "name": "politics" + }, + { + "code": "oJysHwAJJW_", + "name": "politics" + } + ] + }, + { + "creativeSetId": "e0db3d2e-473b-41e8-bef2-4b9432ff8d00", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "35d68671-f6a5-401e-853b-63d81353c5c1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Botany at Amazon - Mauseth. Free Shipping on Qualified Orders", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/dp/0763753459/?tag=mh0b-20&hvadid=77996622726961&hvqmt=b&hvbmt=bb&hvdev=c&ref=pd_sl_2gvji1325b_b" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "q152Zy9UM2j", + "name": "botany" + } + ] + }, + { + "creativeSetId": "ac4dc652-52e9-49ac-bba9-627027aa6cc4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "924fbe82-ab77-4dfd-a8b9-73762731f12d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Botany Books at Amazon", + "title": "Amazon", + "targetUrl": "www.Amazon.com" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "MJlJ0GAmjmL", + "name": "Botany Books" + } + ] + }, + { + "creativeSetId": "d51b775b-987b-487b-ae20-50aadedf364d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6f67d879-bc5a-473d-b568-3edaf11e175c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Chemistry Education - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/books/science" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "Q1LjD-it3o5", + "name": "Chemistry Education" + } + ] + }, + { + "creativeSetId": "ca264383-523d-4b1d-b802-b7b4d4bb4433", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c6171070-7c60-406c-80df-7daa331a2f37", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "How Economics Shapes Science | amazon.com", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/dp/0674049713/?tag=mh0b-20&hvadid=78271538219739&hvqmt=b&hvbmt=bb&hvdev=c&ref=pd_sl_4dr3rz9lhc_b" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "qxIHhv09eAy", + "name": "economics" + } + ] + }, + { + "creativeSetId": "e54ad25c-6a95-40e2-b6ac-e4a280f88d71", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "81b1b3ea-618a-4c3b-bb49-b67817a1b72a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Economic Books at Amazon® - Amazon Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com/Economic Books" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "TZT3-8UTU4y", + "name": "Economics Books" + } + ] + }, + { + "creativeSetId": "485a0ad9-8f27-435f-b744-d5c432cad8e3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5b2202bc-a76b-48a1-9c8c-4aa661d0bca4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Save on The Geography Lesson - Amazon?? Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "wz0LfYE3w8k", + "name": "Geography Education" + } + ] + }, + { + "creativeSetId": "f963d097-680a-40e7-813d-c78f9fec30b7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f1f10408-a3d2-4c2a-be40-be981d6d436e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Science Geology | amazon.com", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/s/?ie=UTF8&keywords=science+geology&tag=mh0b-20&index=aps&hvadid=77927938595696&hvqmt=e&hvbmt=be&hvdev=c&ref=pd_sl_9pxzy10g5h_e" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "L9S-SfHN6SH", + "name": "geology" + } + ] + }, + { + "creativeSetId": "da0629ec-1517-47b9-8012-bfb996fdbf2e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b12d82cd-ea59-4afe-8dda-5d2a7802de30", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Geology Protractor", + "title": "Amazon", + "targetUrl": "www.Amazon.com" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "wD_uOo81OfO", + "name": "Geology Shop" + } + ] + }, + { + "creativeSetId": "4685f67b-149b-4d7a-bd29-535b616e1f62", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "423cf22b-b424-48fa-a47f-c28758f0a22c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Paleontology Books on Amazon", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/s/?ie=UTF8&keywords=paleontology+books&tag=mh0b-20&index=aps&hvadid=77790501201154&hvqmt=b&hvbmt=bb&hvdev=c&ref=pd_sl_8q7ognnk2n_b" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "BYzkmQHtyNI", + "name": "palaeontology" + } + ] + }, + { + "creativeSetId": "cb1bc548-4911-474d-a5ba-8027ee4e5571", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8658c9be-a3b8-4e0b-acdf-b0f919a008f0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Paleontology Books", + "title": "Amazon", + "targetUrl": "www.amazon.com/Paleontology Books" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "Ra6GjWV-Ogj", + "name": "Palaeontology Books" + } + ] + }, + { + "creativeSetId": "e2b649a8-d01c-441a-b55d-ed2d9250e08e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "859f47f4-bb71-4103-895e-2f2dc7f9ca6e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Science Physics at Amazon - Free Shipping", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/s/?ie=UTF8&keywords=science+physics&tag=mh0b-20&index=stripbooks&hvadid=3488268956&hvqmt=e&hvbmt=be&hvdev=c&ref=pd_sl_6p2xwf21xx_e" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "GETPpK4r12s", + "name": "physics" + } + ] + }, + { + "creativeSetId": "eb779744-208e-4982-b1df-676135cea50e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2ab100f5-72a9-4f3e-a5f9-8cc9b243d639", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Science Hills: Amazon - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/pet-supplies/dogs" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "UFzEkc76aqX", + "name": "Science News" + } + ] + }, + { + "creativeSetId": "56f8c063-eeab-4ecf-a42f-1a0dcc8db5cc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4b5bf3aa-3716-4447-8b73-e3ddcf2f9a42", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Human Virology on Amazon - Low Prices for Human Virology", + "title": "Amazon", + "targetUrl": "www.amazon.com/books" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "WhG0ZmrSTOW", + "name": "Virology News" + } + ] + }, + { + "creativeSetId": "c03818c8-19e5-403f-be05-f0a5a98167b8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4994ad96-98a0-4a81-aef5-2a4d778bca80", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Charles H. Kraft - Free Shipping on Qualified Orders \r\n", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/dp/1570750858/?tag=mh0b-20&hvadid=78546369392381&hvqmt=b&hvbmt=bb&hvdev=c&ref=pd_sl_8ccufs80od_b" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "GcMoJobtJSJ", + "name": "anthropology" + } + ] + }, + { + "creativeSetId": "9c5b6efb-dae9-4e97-bd66-40ef22a9931a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e61fbdbf-637b-4e47-90c2-5d38830c79dc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Mediated Society - Jackson. Free Shipping on Qualified Orders", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/dp/0195431405/?tag=mh0b-20&hvadid=78408931102227&hvqmt=b&hvbmt=bb&hvdev=c&ref=pd_sl_88ggpca68m_b" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "aR6Fhglgp_N", + "name": "sociology" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a50fb1e9-33b7-471d-a6c0-057011ae577a", + "name": "pets", + "startAt": "2017-09-24T19:32:35.213Z", + "endAt": "2019-09-24T19:32:35.213Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9a75a90-5775-4d59-977a-21aac9581e91", + "creativeSets": [ + { + "creativeSetId": "306f4c35-ede3-4386-80a9-4d295b7e9f65", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "82c2c479-2ed4-4ba4-883c-787690a84127", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Cute Cat Office Supplies - Amazon.com Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com/office-supplies" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "6BRJuRThFS_", + "name": "Cat Supplies" + } + ] + }, + { + "creativeSetId": "09ffa528-8ef3-43d3-8dbc-7b63f76c0556", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "12486c27-71f1-4cef-866d-a33ac753e9bc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Dog Top: Amazon - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/apparel/womens-shops" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "x3JqE5H5N3r", + "name": "Pet Store" + } + ] + }, + { + "creativeSetId": "bcd60dd5-4b89-4c93-86e4-afe7be400903", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3a2865ac-e9c8-4c49-9d75-efeec3fa48af", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Mealworms Reptiles on Amazon - Low Priced Mealworms Reptiles", + "title": "Amazon", + "targetUrl": "www.amazon.com/pet/supplies" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "rH6iVpeEME2", + "name": "Reptile Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "75b44b9a-c9c1-48a2-b08c-88791e756d71", + "name": "religion", + "startAt": "2017-09-24T19:32:36.134Z", + "endAt": "2019-09-24T19:32:36.134Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9a75a90-5775-4d59-977a-21aac9581e91", + "creativeSets": [ + { + "creativeSetId": "129d939c-7b50-46ba-82a4-6f0752c5ff33", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9581455f-29a0-49ee-b1f0-214c87ead311", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Religion Buddhism - Low Prices", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/s/?ie=UTF8&keywords=religion+buddhism&tag=mh0b-20&index=stripbooks&hvadid=1465111768&hvqmt=b&hvbmt=bb&hvdev=c&ref=pd_sl_5po2l3f3n0_b" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "r7hG-4kBNgn", + "name": "buddhism" + } + ] + }, + { + "creativeSetId": "6e13ebff-27eb-4a76-b819-500242e6699d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5b68c61a-536f-4923-bde6-dbfab1f1ba0f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Introducing Hinduism - Free Shipping", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/dp/1848311141/?tag=mh0b-20&hvadid=3523216614&hvqmt=b&hvbmt=bb&hvdev=c&ref=pd_sl_38wvz0jqp5_b" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "sg9QVrjuRaL", + "name": "hinduism" + } + ] + }, + { + "creativeSetId": "5548f466-3b30-4daa-ae6b-688538cfdaec", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9ddebaa5-93e3-47c9-b98e-3644d629b030", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hinduism Books at Amazon", + "title": "Amazon", + "targetUrl": "Amazon.com/books" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "w5JSnOzclQZ", + "name": "Hinduism Books" + } + ] + }, + { + "creativeSetId": "4dfb16ff-71dd-4051-8889-204f8de908cc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a79c7aca-4d39-403e-ba0f-90fb781742c8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Islam In Books at Amazon", + "title": "Amazon", + "targetUrl": "Amazon.com/books" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "EUUwhzvuKC4", + "name": "Islamic Books" + } + ] + }, + { + "creativeSetId": "9fcb462b-3092-476d-98d6-ca43ffeca1ee", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8bf3ce19-250e-4a7c-9841-3208db4591f0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Judaism Books at Amazon® - Amazon Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "mTbd3Gmk0cr", + "name": "Judaism Books" + } + ] + }, + { + "creativeSetId": "01284ce0-1a54-4bec-8487-122807102f3b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a11b4c2c-922c-4d9a-93c9-7df61b0a1ace", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Shinto at Amazon", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/s/?ie=UTF8&keywords=shinto&tag=mh0b-20&index=aps&hvadid=12090624478&hvqmt=e&hvbmt=be&hvdev=c&ref=pd_sl_69gdfna84s_e" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "7sz6dEgjRCE", + "name": "shinto" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9c34c37b-01d2-40a5-b37a-29742242eda3", + "name": "film", + "startAt": "2017-09-24T19:32:38.152Z", + "endAt": "2019-09-24T19:32:38.152Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9a75a90-5775-4d59-977a-21aac9581e91", + "creativeSets": [ + { + "creativeSetId": "72018dbd-a7c7-4b62-814b-e2bc2833146a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8fcf945c-5078-46a0-95a4-682904e0fdd5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Society - Stream the Full Movie Online - Watch Complete Movies", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/s/?ie=UTF8&keywords=society&tag=mh0b-20&index=dvd&hvadid=78477693740983&hvqmt=e&hvbmt=be&hvdev=c&ref=pd_sl_fw3rwwgys_e" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "vq5TUkPldvR", + "name": "society" + } + ] + }, + { + "creativeSetId": "501dbe5d-43f6-45e5-a8b8-da3028b8fab6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8d577904-225a-412f-9c06-9cc1b01795f1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Action Movies 4k", + "title": "Amazon", + "targetUrl": "Amazon.com/Movies" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "mRgPV84LYAT", + "name": "Stream Movies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f4533f5b-9a28-4d6a-94b9-0b17ce2095d0", + "name": "kids", + "startAt": "2017-09-24T19:32:38.804Z", + "endAt": "2019-09-24T19:32:38.804Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9a75a90-5775-4d59-977a-21aac9581e91", + "creativeSets": [ + { + "creativeSetId": "9bea06a3-3166-4ae1-9bf8-b0c5a6baf4bd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3d914659-0103-4f0f-9292-d7efe75db99d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Toddler Activewear - Amazon.com Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com/apparel/girls" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wRnrM16xXmY", + "name": "Athletic Clothing" + } + ] + }, + { + "creativeSetId": "ac6cc871-6729-4766-aee2-9b883e5ffdc6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4f5af92a-825b-48b1-834b-69911ea84c6a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop My First Train Set - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/toys-games" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6dab1nE-Ik7", + "name": "Train Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2d189a36-aba1-4f1d-84a6-323cf0abcfc4", + "name": "sports", + "startAt": "2017-09-24T19:32:39.480Z", + "endAt": "2019-09-24T19:32:39.480Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9a75a90-5775-4d59-977a-21aac9581e91", + "creativeSets": [ + { + "creativeSetId": "df95415d-fd62-4bb9-b774-966f3d34b312", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "30e833bd-3fbb-4e7c-b3ed-b5c4b71f9593", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Basketball Training - Amazon.com", + "title": "Amazon", + "targetUrl": "Amazon.com/sports" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FiDfXRZJaDS", + "name": "Basketball Training" + } + ] + }, + { + "creativeSetId": "ac3fa0ce-8142-4186-b564-ccb506b2b8e9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ff057185-9731-4c5a-89a2-b1d7eda9ad9d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Men's Picks at Amazon", + "title": "Amazon", + "targetUrl": "Amazon.com/fashion" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "vVZgFB3iWow", + "name": "Bodybuilding Store" + } + ] + }, + { + "creativeSetId": "1bfe1e4e-7c20-4686-8784-4511f9993b39", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "39527bd6-31e5-4045-8f5f-a8eaaeed27b3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Mens Rockabilly Bowling Shirts - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/apparel/mens-shops" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "e5hD9xkeyjO", + "name": "Bowling Gear" + } + ] + }, + { + "creativeSetId": "eb60e66a-7cf4-4eeb-a513-cd35523efe6a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d2d3688c-f8aa-4f04-8eee-cdf5d830699a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy American Boxing on Amazon - Low Prices for American Boxing", + "title": "Amazon", + "targetUrl": "www.amazon.com/clothes/shoes" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "mqSw-gRLA7p", + "name": "Boxing Tickets" + } + ] + }, + { + "creativeSetId": "da1b777e-c69e-47e8-9606-73fa05035ece", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fed2a17d-edf2-44ce-b55f-46577482c174", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pom Poms Cheerleading Dozen - Amazon.com Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com/sports-outdoors/team-sports" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "ar7C1cuDv9N", + "name": "Cheerleading Pom Poms" + } + ] + }, + { + "creativeSetId": "08477da0-1340-41c2-b0f4-10cca97798cf", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b5a317d9-b75e-407b-8f85-0cd299755325", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Mountain Climbing Gear Kit - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/sports-outdoors/outdoor" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "zJrrQvnmCnp", + "name": "Climbing Gear" + } + ] + }, + { + "creativeSetId": "7d58e7f4-0b4c-4df9-babc-4720723072c6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4e2f8430-a14d-41c4-acf4-8ad69ed716cd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Darts Heavy - Amazon - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/sports-outdoors/leisure" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "gxL4h38VZWH", + "name": "Darts Supplies" + } + ] + }, + { + "creativeSetId": "238188a9-de2a-4ce6-ab0f-9a2bab65d5d3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "536c8e36-b8ff-49f9-8a95-00f3818252dd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dris Dive Gear at Amazon", + "title": "Amazon", + "targetUrl": "Amazon.com/sports" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "fH7PFGfR2R8", + "name": "Diving Gear" + } + ] + }, + { + "creativeSetId": "171f426e-5306-4f55-bc1a-6c91c0f3898a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "77a1a7c3-4089-4577-a59d-6bba1b030a5d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Amazon® Official Site - Huge Selection & Great Prices", + "title": "Amazon", + "targetUrl": "www.amazon.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "tAc14oAedDq", + "name": "Fishing Gear" + } + ] + }, + { + "creativeSetId": "acc378c2-108c-4fbb-87fd-745fc1ba8156", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "de87a1db-29bc-4b64-8c0e-027e707cea5b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pink Football Mouthpiece - Amazon.com", + "title": "Amazon", + "targetUrl": "Amazon.com/sports" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "cYoy1u-mrxD", + "name": "Football Supplies" + } + ] + }, + { + "creativeSetId": "89940e75-fa73-4d11-94c0-cb6491206223", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "693fb9a5-f4a3-43a1-85aa-b067e9c74312", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Golf Supplies - Shop Our Sporting Goods Store - Amazon.com", + "title": "Amazon", + "targetUrl": "Amazon.com/golf" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "hDQ_wObOKVe", + "name": "Golf Supplies" + } + ] + }, + { + "creativeSetId": "d203c24f-1897-4f70-aab5-25717e90cc51", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1cbee2cb-f2c6-4517-bcc7-aec738b2e7c6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Live Hockey on Amazon - Low Prices for Live Hockey", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/s/?ie=UTF8&keywords=live+hockey&tag=mh0b-20&index=mobile-apps&hvadid=77996659618352&hvqmt=b&hvbmt=bb&hvdev=c&ref=pd_sl_3zpwkdlwfy_b" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "I2UKwXSSuZB", + "name": "hockey" + } + ] + }, + { + "creativeSetId": "22ecd633-62f5-42c3-a547-1902f4746bf4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d1f589e3-74a0-4fad-bfcf-3a20bc0bd497", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Equinity Xl Horse: Amazon - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/pet-supplies/horses" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "cS2Wr4k8VpH", + "name": "Horse Racing" + } + ] + }, + { + "creativeSetId": "9d193631-876f-4fe9-a479-b6a3e15d70cd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ec154d34-5dc9-450a-9c37-cb0c209b7b65", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Rugby 2mg - Amazon - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/personal-care/health" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "kQoevuYFc0X", + "name": "Rugby News" + } + ] + }, + { + "creativeSetId": "38238b9a-3f47-409a-b4f8-14ac42dee3e2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3847f018-d796-4123-b8f5-dbd56638fc53", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop The Skateboard - Amazon - Free 2-day Shipping w/ Prime", + "title": "Amazon", + "targetUrl": "www.amazon.com/sports-outdoors/skateboards" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FWG6gM9kOij", + "name": "Skateboards" + } + ] + }, + { + "creativeSetId": "ae528d5f-bcc1-49d8-86cd-fcec05ddc0b4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2036032d-d12e-4828-863d-a4a494a036a0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Skating at Amazon | Amazon.com", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/s/?ie=UTF8&keywords=skating&index=stripbooks&tag=geminipcstand-20&ref=pd_sl_9d5do6lcaj_b" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "r7OmZgdi76D", + "name": "skating" + } + ] + }, + { + "creativeSetId": "b01d6297-275c-42a3-8012-bd64a1bb7a4f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2bca3b2f-156c-44f0-81a7-027f607f6353", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Ski Supplies on Amazon - Low Prices for Ski Supplies", + "title": "Amazon", + "targetUrl": "www.amazon.com/clothes/shoes" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "7kNV7uZ9Ium", + "name": "Skiing Supplies" + } + ] + }, + { + "creativeSetId": "ecbe0038-8790-44f7-84d2-aff0152c320c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e316509d-6583-47a9-b240-f0cdae69a763", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Soccer Sklz Training Equipment - Amazon.com Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com/sports-outdoors/team-sports" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wnYgEl7cckf", + "name": "Soccer Gear" + } + ] + }, + { + "creativeSetId": "4de12597-f4e3-4ba0-83e7-37438b7d562f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ccfc0cbc-7374-484b-a807-38d3e624e2dc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Surfing at Amazon.com", + "title": "Amazon", + "targetUrl": "https://www.amazon.com/s/?ie=UTF8&keywords=surfing&tag=mh0b-20&index=aps&hvadid=3489086131&hvqmt=e&hvbmt=be&hvdev=c&ref=pd_sl_3yajouo0ms_e" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "kQ3hqchj95S", + "name": "surfing" + } + ] + }, + { + "creativeSetId": "c314cd0c-839f-46b6-872b-1c0f23a9fcf9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "26a09cd4-f293-4ef0-aa67-28bbd185874c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Swimming Gear - Amazon - Amazon.com Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "BgfSFihlac8", + "name": "Swimming Gear" + } + ] + }, + { + "creativeSetId": "ad3d9fa3-7a13-43bd-827e-9ca70086e1a4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b9ea6397-ef86-405b-900d-d7a3900f9bc0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Volleyball Supplies - Shop Our Sporting Goods Store", + "title": "Amazon", + "targetUrl": "Amazon.com/volleyball" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "tnXE6QYG4tO", + "name": "Volleyball Supplies" + } + ] + }, + { + "creativeSetId": "91480e47-dd4b-42d5-b82c-310181a7a14b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1075c3c1-bbae-467e-b7c1-e7a4357f8baa", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Wwwe Belt: Amazon - Amazon.com Official Site", + "title": "Amazon", + "targetUrl": "www.amazon.com/apparel/womens-shops" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "J5bdxnl4xfj", + "name": "Wrestling Belts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6a3e434b-7eec-4b21-8b28-d6f17403426d", + "name": "jewelry", + "startAt": "2017-09-24T19:32:47.430Z", + "endAt": "2019-09-24T19:32:47.430Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b2e599e7-2240-4696-beee-a9810cf8e1d2", + "creativeSets": [ + { + "creativeSetId": "c8fc0d07-2b74-438c-95c9-2ed9aab4ad9e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2762ffa3-fee3-49f8-85cb-81557d7924be", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Jewlery Stores - at Amazon.co.uk", + "title": "Amazoncouk", + "targetUrl": "www.amazon.co.uk/Jewlery Stores" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4a17be54-f471-4d46-8d9c-bd633fe26034", + "name": "general", + "startAt": "2017-09-24T19:32:48.012Z", + "endAt": "2019-09-24T19:32:48.012Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "88ea9229-3f2e-4cad-8585-582f09508d6e", + "creativeSets": [ + { + "creativeSetId": "be3c9d61-82a4-4da9-b347-f49966045530", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9eee02cf-34c4-42d8-a5eb-360075cf680b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "What Is Folklore? - American Folklore Society", + "title": "American Folklore Society", + "targetUrl": "http://www.afsnet.org/?page=WhatIsFolklore" + } + } + ], + "segments": [ + { + "code": "VmJBdpZEByG", + "name": "Folklore" + }, + { + "code": "kgkXeoOxkv5", + "name": "folklore" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "43466322-5b56-43b0-b164-abbe89c21d56", + "name": "finance", + "startAt": "2017-09-24T19:32:48.631Z", + "endAt": "2019-09-24T19:32:48.632Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "44e3da9b-7e75-4e7a-a608-6faffe862703", + "creativeSets": [ + { + "creativeSetId": "d0ead3e1-9c56-474d-9ae3-686bf5d8de12", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cb23b504-c850-471e-8d63-58cbcff31a20", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "American Express - Don't Live Life Without It℠", + "title": "Americanexpress", + "targetUrl": "www.americanexpress.com/backing" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "KclHbUft33H", + "name": "Personal Finance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9f6bb16a-4845-469d-ae86-623662a5c4d2", + "name": "travel", + "startAt": "2017-09-24T19:32:48.930Z", + "endAt": "2019-09-24T19:32:48.931Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "44e3da9b-7e75-4e7a-a608-6faffe862703", + "creativeSets": [ + { + "creativeSetId": "d40d15b9-3ab6-4725-abf3-30d4aa3c6395", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ff68cbef-1562-4764-9211-b44f28a960ee", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "American Express - Don't Live Life Without It???", + "title": "Americanexpress", + "targetUrl": "www.americanexpress.com/backing" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "lvYt-vwY0ml", + "name": "Travel Tours" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "660a4bc6-1c09-42da-b193-eafc5ad6774c", + "name": "jewlry", + "startAt": "2017-09-24T19:32:49.684Z", + "endAt": "2019-09-24T19:32:49.684Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "fe6c0d9a-b928-4eff-8d8b-1fe930bb5898", + "creativeSets": [ + { + "creativeSetId": "5d9c37f4-ed2f-4545-be3f-dfb0b6d05560", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "64176ac8-323e-4930-b312-c8d574925fb1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pearl Jewelry‎", + "title": "Americanpearl", + "targetUrl": "www.americanpearl.com/ ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0e8dbe16-f30c-48db-84b2-a544e61cc438", + "name": "drugtest", + "startAt": "2017-09-24T19:32:50.456Z", + "endAt": "2019-09-24T19:32:50.456Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6025752d-0afb-4c24-a07c-e69880947b55", + "creativeSets": [ + { + "creativeSetId": "6d1997ad-565d-4ab8-88a8-e75b55380741", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fcb31539-24c4-4c96-a2c2-74d92e318a35", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Instant Drug Test Kits - American Screening", + "title": "Americanscreeningcorp", + "targetUrl": "www.americanscreeningcorp.com" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "ZFoOZxsAWHI", + "name": "Drug Tests" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6f9257a1-fd33-419c-a906-edf4e0676d1f", + "name": "furniture", + "startAt": "2017-09-24T19:32:51.054Z", + "endAt": "2019-09-24T19:32:51.054Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "55da5815-fa1c-4ed9-99ee-85428e552f58", + "creativeSets": [ + { + "creativeSetId": "a549bf48-8b23-4ab8-b5d3-1ff301d3db2d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3b5a3d52-3d7b-4bbf-b574-a86d9f43652b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "33% Off Amish Furniture - Amish Outlet Store", + "title": "Amishoutletstore", + "targetUrl": "amishoutletstore.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "JdIppC2dyV9", + "name": "Home Furniture" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5ae92b3d-79ef-4885-b316-5c7cd6e7f48e", + "name": "train", + "startAt": "2017-09-24T19:32:51.640Z", + "endAt": "2019-09-24T19:32:51.640Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5975691c-4892-49ab-be18-637e35e494de", + "creativeSets": [ + { + "creativeSetId": "aa8f4dea-290d-4496-9867-91bdc248b76f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "95a15aa4-404c-42ec-b345-d6c3b8278425", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Amenities - Amtrak?? Official Site", + "title": "Amtrak", + "targetUrl": "www.amtrak.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6dab1nE-Ik7", + "name": "Train Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "01ebda50-2051-4eef-ace3-b2bca4cca698", + "name": "general", + "startAt": "2017-09-24T19:32:52.228Z", + "endAt": "2019-09-24T19:32:52.229Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "69dcb88f-ab24-4da5-8976-3744e2f10607", + "creativeSets": [ + { + "creativeSetId": "080b08b0-9888-485a-a679-38a2c4dceb19", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ee7a16d1-662e-4930-ab77-b6bbf9c58b74", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find your Genealogy | Ancestry.com", + "title": "Ancestry", + "targetUrl": "Ancestry.com/Genealogy" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "pPUDW42mDiO", + "name": "Genealogy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "393c45e3-1c4d-4ca7-b5b9-cf20bceea293", + "name": "general", + "startAt": "2017-09-24T19:32:52.790Z", + "endAt": "2019-09-24T19:32:52.791Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1d2ee933-4f35-46df-8811-756b346e0570", + "creativeSets": [ + { + "creativeSetId": "a7236452-f605-4729-a738-a9b54076597f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0a8154b7-78c8-4f25-bda1-f3e988983686", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find your Genealogy - Ancestry.com ®", + "title": "Ancestry.com", + "targetUrl": "https://www.ancestry.com/?slid=&pgrid=1574362955&ptaid=kwd-24726727404%3aloc-190&msclkid=f06e622241521eb14ffd3857d532a4a2&o_xid=21892&o_lid=21892&o_sch=Paid+Search+Non+Brand" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "pPUDW42mDiO", + "name": "Genealogy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e2608913-77f2-41ee-9fcf-641e3f00ad62", + "name": "jewelry", + "startAt": "2017-09-24T19:32:53.690Z", + "endAt": "2019-09-24T19:32:53.690Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c5e66090-ad5b-48aa-b5f1-6778bea9a953", + "creativeSets": [ + { + "creativeSetId": "5a91a9ff-155d-4c23-9640-e1b431e09d6e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e6e13f5f-1e1d-4302-bd87-6b972270bd30", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Cultured Pearl Jewelry | Best Prices. Ships Worldwide‎", + "title": "Angara", + "targetUrl": "www.angara.com/Pearl-Jewelry ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3c572ced-5cb4-4d94-9d6e-cc921c58ae04", + "name": "autism", + "startAt": "2017-09-24T19:32:54.277Z", + "endAt": "2019-09-24T19:32:54.277Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a01a8cf6-c614-43de-9dbc-d0d6daf53a84", + "creativeSets": [ + { + "creativeSetId": "8be5bb0a-2bb3-4436-b839-d4cddeb1beb0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "00dd542e-6f22-43fa-8781-9836da736e09", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "High Functioning Autism (HFA) - Quick Facts & Info on Autism", + "title": "Angelsense", + "targetUrl": "www.angelsense.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "y03q2Xsu_qb", + "name": "Autism Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "58f09f49-99c1-4456-8a95-44c0dc80fd39", + "name": "intern", + "startAt": "2017-09-24T19:32:55.915Z", + "endAt": "2019-09-24T19:32:55.916Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b4dd6530-5ab6-4ca9-a093-c3ca11c56801", + "creativeSets": [ + { + "creativeSetId": "33ebf049-8ba9-48b7-b2a2-2fc2e28d4005", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "edaa90fb-e97d-4f29-a362-b6dc5cb621b9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Animation Intern (New)", + "title": "Animation-Intern.jobsgalore", + "targetUrl": "Animation-Intern.jobsgalore.com" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "K1d6Q52s4WP", + "name": "Animation Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7b1f05a0-8405-4469-88df-01fcd12857fd", + "name": "MS", + "startAt": "2017-09-24T19:32:56.464Z", + "endAt": "2019-09-24T19:32:56.465Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bd49b29b-bfc7-4753-a7f2-ca24699df6cd", + "creativeSets": [ + { + "creativeSetId": "c9ff90d1-44de-4e48-b0a0-c267a15b2664", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9f6eef6e-4d2a-45a1-9732-ece6fe44a58b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Morgan Stanley - Find A Financial Advisor | morganstanley.com", + "title": "Anstanley", + "targetUrl": "www.morganstanley.com/wealth" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "z7floCfZA_P", + "name": "Financial Advisors" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c71d9a0a-8cdb-4ab2-b6e1-ca8b517632f7", + "name": "volleyball", + "startAt": "2017-09-24T19:32:57.035Z", + "endAt": "2019-09-24T19:32:57.035Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8957f2b4-cd10-4b2c-9d00-05acc35034ef", + "creativeSets": [ + { + "creativeSetId": "234f6b89-07ca-4a63-9f6f-df828e150288", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "edd15d96-478a-40ba-bfc8-c3b7d34b24ec", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Official Volleyballs - NFHS Approved Volleyballs, $35.95", + "title": "Anthem Sports", + "targetUrl": "https://www.anthem-sports.com/volleyball-equipment/volleyballs.html?msclkid=da62ba63446e1e526a81e01bdd7c239a&utm_source=bing&utm_medium=cpc&utm_campaign=CPCS_Volleyball&utm_term=volleyballs&utm_content=Official%20Volleyballs" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "LhFqDrfb5ag", + "name": "volleyball" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e8d15c1d-081b-4b77-bb6b-75d95d28cb9d", + "name": "football", + "startAt": "2017-09-24T19:32:57.809Z", + "endAt": "2019-09-24T19:32:57.809Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9831b8ff-7ac9-4c5a-be99-737f163cfe4e", + "creativeSets": [ + { + "creativeSetId": "22a6df9a-91ee-4fc8-8149-f0408e6143b6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d0f0ad9f-ae42-4f6e-bb54-c408b7bc4e26", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Football Supplies For Sale - Shop Brand Name Sporting Goods", + "title": "Anthem-sports", + "targetUrl": "www.anthem-sports.com/Supplies/Football" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "cYoy1u-mrxD", + "name": "Football Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e74b5bdc-bdbe-4da4-91c1-98eef6a87cdf", + "name": "soccer", + "startAt": "2017-09-24T19:32:58.182Z", + "endAt": "2019-09-24T19:32:58.182Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9831b8ff-7ac9-4c5a-be99-737f163cfe4e", + "creativeSets": [ + { + "creativeSetId": "713a8f31-3037-4819-9d74-a434030ceac5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3f07ed54-681f-4582-9287-4c43deccac18", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Soccer Gear & Equipment - Shop Brand Name Sporting Goods", + "title": "Anthem-sports", + "targetUrl": "www.anthem-sports.com/Gear/Soccer" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wnYgEl7cckf", + "name": "Soccer Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "040e41f8-6cde-4f64-8172-eb328087c71e", + "name": "volleyball", + "startAt": "2017-09-24T19:32:58.533Z", + "endAt": "2019-09-24T19:32:58.533Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9831b8ff-7ac9-4c5a-be99-737f163cfe4e", + "creativeSets": [ + { + "creativeSetId": "0ea5b3f2-5a9f-4f9c-9682-69ac7f2e5046", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ca8899a6-4ff0-43b3-8452-e96408c34645", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Volleyball Supplies For Sale - Shop Coach Certified Equipment", + "title": "Anthem-sports", + "targetUrl": "www.anthem-sports.com/Supplies/Volleyball" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "tnXE6QYG4tO", + "name": "Volleyball Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8175668d-db1e-4e26-9a78-edc699f16a94", + "name": "horoscopes", + "startAt": "2017-09-24T19:32:59.070Z", + "endAt": "2019-09-24T19:32:59.070Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0c601a69-055b-48de-8a9d-461565fa5f64", + "creativeSets": [ + { + "creativeSetId": "bbf8309e-2e63-485d-95bc-c84cbcb51f55", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ccdd0b9b-d7db-46b5-8d4c-345bbdbdd542", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Daily Horoscopes - Check Your Horoscope Now | anytimeastrology.com", + "title": "Anytime Astrology", + "targetUrl": "http://www.anytimeastrology.com/index.jhtml?&partner=^CSB^xdm153&utm_source=bing&s1=bsearch&s2=528120cb38d5448aaf1a2300c8ee71d05a78f0db&s3=&s4=&s5=&utm_campaign=304114884&utm_term=astrology&kid=kwd-81089028341492%3Aloc-190&aid=1297423815971410&ad=81089003730021&msclkid=b77a14c9a97218fa2b974eb1585e0839" + } + } + ], + "segments": [ + { + "code": "VmJBdpZEByG", + "name": "Folklore" + }, + { + "code": "Ksb0GCllrtq", + "name": "astrology" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9e272d32-8ea8-4378-9d35-293f438c8d71", + "name": "fitness", + "startAt": "2017-09-24T19:32:59.856Z", + "endAt": "2019-09-24T19:32:59.856Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3baee7c2-7737-41cf-af3c-e5b6f5271938", + "creativeSets": [ + { + "creativeSetId": "871fd46c-973a-4eff-b6cd-2ca92c8528cb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "267d0181-fa4b-4d8f-864f-95ba0f18f4a1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Anytime Fitness Club - Get Fit & Healthy. | welcometoanytime.com", + "title": "Anytime Fitness Club", + "targetUrl": "https://www.welcometoanytime.com/bg/berkeley/" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "xzyLazh-2f3", + "name": "health & fitness" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4aacea12-cbfe-44c6-a693-65c31759ed53", + "name": "Trains", + "startAt": "2017-09-24T19:33:00.521Z", + "endAt": "2019-09-24T19:33:00.521Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e0f2e3da-6458-4e97-bc1b-6072f7dd861d", + "creativeSets": [ + { + "creativeSetId": "035c9bc9-08e2-4f42-8ea7-8895a8a38ece", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3060495a-55c4-49ed-acf4-c68c564f74ae", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Trains - Get Train Routes, Schedule & Fares", + "title": "AnyTrainsGuide.com", + "targetUrl": "http://train.anytransitguide.com/31v9c/?&a=qLwvEiNE&akey=trains&subid=trains&subid2=33588975045-291555677478&subid3=Trains+001B&c_sk=f4e5fdc62daa8c2cf5961d90d08f41ebf1ef795f&c_pid=52&c_guid=3664E475-9A2F-4C45-875F-B9E03A3EB836&c_lp=2463" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "IMAWjON4tLk", + "name": "trains" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "640d2c55-b9b1-4fc1-9ba1-02d638cb28b5", + "name": "mac", + "startAt": "2017-09-24T19:33:01.086Z", + "endAt": "2019-09-24T19:33:01.086Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d56c3f8c-353d-4a08-8af6-495e81228e7a", + "creativeSets": [ + { + "creativeSetId": "ada7a2c5-4e05-442c-a9ad-c2c9e8d66537", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b1284960-92f0-4e01-a33b-4af8abaa72b0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "iMac - Apple", + "title": "Apple", + "targetUrl": "www.apple.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "5Puf4sqhfzx", + "name": "Mac Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d2192cd9-ed3c-4f02-96ee-6fcb92609c51", + "name": "debt", + "startAt": "2017-09-24T19:33:01.659Z", + "endAt": "2019-09-24T19:33:01.660Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2020341f-2255-410a-9716-078e411443c6", + "creativeSets": [ + { + "creativeSetId": "5b71162d-a377-476c-8f32-6db3e583eb3d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8909c7da-0863-4af9-a441-3d546b86e815", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Debt Free in 24-48 Months - Consolidate Debt of $20K-$100K", + "title": "Apply.NationalDebtRelief", + "targetUrl": "Apply.NationalDebtRelief.com/Consolidation/Consult-Now" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "z7floCfZA_P", + "name": "Financial Advisors" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cc49dc87-c8eb-4f49-97e3-ef6d62e1b749", + "name": "publish", + "startAt": "2017-09-24T19:33:02.212Z", + "endAt": "2019-09-24T19:33:02.212Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e3eee072-b327-44e6-a40e-98d508322824", + "creativeSets": [ + { + "creativeSetId": "75637932-d6a3-4253-9c3e-92b965d93ccb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d5cf9679-404d-4e5a-ae90-7602a878fe92", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Self Publish Your Book - From Simon & Schuster and AS", + "title": "Archwaypublishing", + "targetUrl": "www.archwaypublishing.com/SelfPublishing" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "KjrAF8XxEDc", + "name": "Book Publishing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6e543374-d669-4569-837d-f466064a69cc", + "name": "dental", + "startAt": "2017-09-24T19:33:02.789Z", + "endAt": "2019-09-24T19:33:02.789Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "466d687b-674e-438c-9020-fb45b551a5d6", + "creativeSets": [ + { + "creativeSetId": "69ceb21f-a1ac-4b64-bbd7-723914e1db0a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "516a8bb7-4a77-4f30-a037-58330200f4fe", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Arka Family Dental,Sterling VA - Dental Clinic", + "title": "Arkafamilydentist", + "targetUrl": "arkafamilydentist.com/contact" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "L-b6nomirMS", + "name": "Dental Care" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "eefc2353-89d2-44af-a1cd-b29d50a84091", + "name": "motorcycles", + "startAt": "2017-09-24T19:33:03.366Z", + "endAt": "2019-09-24T19:33:03.366Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "454a404c-9ec2-4590-aee2-cb5f658770bf", + "creativeSets": [ + { + "creativeSetId": "f6141fa7-d7c8-4639-b2b2-b62853ff05ad", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c49254e6-d133-46f2-b11a-68756f9fbb68", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Arlen Ness Motorcycles - New & Used Motorcycles | arlenness-motorcycles.com", + "title": "Arlen Ness Motorcycles", + "targetUrl": "https://arlenness-motorcycles.com/Home/pub_cr_id/80126922990101?primary_serv=arlenness-motorcycles.com&utm_source=reachlocal&utm_campaign=adgroup_motocycles&utm_medium=ppc&utm_term=motocycles&utm_content=motocycles&scid=3465005&cid=2442134&tc=18020515373297335&rl_key=debfc8067d4b2a96643f9079bfeaba5e&kw=24470956&dynamic_proxy=1&rl_track_landing_pages=1&rl_retarget=1" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "SyFNLxIohE4", + "name": "motorcycles" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "915a1d15-8cf1-4915-a8be-68c1082bc080", + "name": "art", + "startAt": "2017-09-24T19:33:03.937Z", + "endAt": "2019-09-24T19:33:03.937Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "34f03d22-cac7-46f4-85a6-2dac03c67f16", + "creativeSets": [ + { + "creativeSetId": "4a49604f-3da4-4a7f-bf27-dd92182b1bf5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cd09665f-d92e-4ef2-9f46-4f7c1184b6ca", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Art.com - Official Site - Quality Art Prints & Posters", + "title": "Art", + "targetUrl": "www.art.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "18fq9aiLp0z", + "name": "body art" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d65223a9-8b9b-4b93-90a4-a8f203f1b1df", + "name": "lawn", + "startAt": "2017-09-24T19:33:04.549Z", + "endAt": "2019-09-24T19:33:04.549Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "abc22d5d-99ef-4d1b-9414-225625ad7615", + "creativeSets": [ + { + "creativeSetId": "34bbdd8c-c1b3-4431-a9dc-bd61ecca7ca2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "22546a27-952e-4902-8498-6068535a8266", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Artificial Lawn Service - Free Consultation & Quote", + "title": "Artificialturfestimates", + "targetUrl": "www.artificialturfestimates.com" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "u3b4RF02Ctr", + "name": "Artificial Lawns" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e7f1638c-6389-45bf-bd6b-a76783e0d442", + "name": "general", + "startAt": "2017-09-24T19:33:05.168Z", + "endAt": "2019-09-24T19:33:05.169Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b2ad20e7-8fbd-406f-b610-3dd4a46e20e3", + "creativeSets": [ + { + "creativeSetId": "f5b5fd03-c75b-4ce8-a684-85c02065c6ed", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5a9bb3e0-24df-4b95-8720-02b21d7720cc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Arts & Letters Daily - ideas, criticism, debate", + "title": "Arts & Letters Daily", + "targetUrl": "https://www.aldaily.com/" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "8beiQIsi17z", + "name": "literature" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "41b393c4-bde6-4d22-83b0-7bdefd5dea47", + "name": "general", + "startAt": "2017-09-24T19:33:05.751Z", + "endAt": "2019-09-24T19:33:05.751Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "64de9fa1-2062-4927-8da6-b1633a187b13", + "creativeSets": [ + { + "creativeSetId": "d0f6591a-c8fe-4bb5-a8fc-f32df81837ce", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d2994a4f-00d3-42ed-b8e7-6efe9d8587b1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Art To Frame™ Official Site – Largest Online Frame Store", + "title": "Arttoframe", + "targetUrl": "www.arttoframe.com/Official" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "18fq9aiLp0z", + "name": "body art" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f4951441-f25f-4f9a-9228-26c40ff81b0f", + "name": "general", + "startAt": "2017-09-24T19:33:06.362Z", + "endAt": "2019-09-24T19:33:06.362Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0fd6af1a-6ed9-4595-b334-ab6790697201", + "creativeSets": [ + { + "creativeSetId": "df137e15-b4a9-4d0b-8d33-c85cbe0541a6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b99b327e-e1a0-4de3-8e02-d69ba1e5f63c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Aruba All Inclusive - The Caribbean's Premier Island", + "title": "Aruba", + "targetUrl": "www.aruba.com/all-inclusive" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "xrH2KKuKBDm", + "name": "Cruise Vacations" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c2f7a105-0e1c-44ad-b9c9-f50e1a5e89c9", + "name": "onlineedu", + "startAt": "2017-09-24T19:33:06.899Z", + "endAt": "2019-09-24T19:33:06.900Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b036ca10-51f5-4f49-8d2a-275933076c94", + "creativeSets": [ + { + "creativeSetId": "18d7189f-e8de-4e7d-9031-885b2c4da32b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4295564b-bb6b-401b-ab8a-c9d5f0664c8b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "College Degree Program Online - Ashford University® Online", + "title": "AsfordEdu", + "targetUrl": "discover.ashford.edu/Accredited/Affordable" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "ANs-xRChItO", + "name": "College Degrees Online" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c6c8c4cb-ab82-419b-bb53-9d4157ed93e6", + "name": "onlineedu", + "startAt": "2017-09-24T19:33:07.790Z", + "endAt": "2019-09-24T19:33:07.790Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "51486148-b9cd-4675-a673-ce40595b1731", + "creativeSets": [ + { + "creativeSetId": "0448340b-e640-4ea2-b900-261ff29ea4a3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "51e7a768-0c1d-4ae3-9dd7-10cb1583ece6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Education Degree Online - Accredited Ashford University®", + "title": "AshordEdu", + "targetUrl": "onlinedegrees.ashford.edu/Accredited/Affordable" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "w5KTA-1-lyt", + "name": "Online Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "da745907-f533-4dd7-b7ed-a8a1f4a35a89", + "name": "general", + "startAt": "2017-09-24T19:33:08.425Z", + "endAt": "2019-09-24T19:33:08.425Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "09fcf4f2-8413-48b3-b38d-89e8d47cf6c7", + "creativeSets": [ + { + "creativeSetId": "fe9167d2-9373-4cbb-8e2a-04290cb149f2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2703764f-5ca3-44f7-aaae-226c48f9ca4a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Meet Asian Singles - Safe & Secure Services - Join Today", + "title": "Asiandating", + "targetUrl": "www.asiandating.com/Dating/Asian" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "tEYym_TVzMg", + "name": "Christian Meet" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2242a5f3-13ac-4608-b426-d4ee800e058c", + "name": "general", + "startAt": "2017-09-24T19:33:09.327Z", + "endAt": "2019-09-24T19:33:09.327Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4802cb52-2ff5-4d33-bab3-ec8d86205b49", + "creativeSets": [ + { + "creativeSetId": "02a29d1f-cb19-46d0-b6e9-c707d95f34f3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0db8ed2d-1d3e-4252-9ca5-c5aee433fa0f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Asthma Symptoms - Identify The Triggers", + "title": "Asthmatreatmentrx", + "targetUrl": "www.asthmatreatmentrx.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "FFlMXuImzk5", + "name": "Asthma Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b6a0cfdb-8d8d-470c-aec7-d732caf79ef5", + "name": "general", + "startAt": "2017-09-24T19:33:09.969Z", + "endAt": "2019-09-24T19:33:09.970Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3738f000-a576-46f8-9b71-200b6052ca36", + "creativeSets": [ + { + "creativeSetId": "1a73e9a6-f1ef-4156-9f85-905ba49ca067", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "179b77dd-8c68-41ef-ab16-1b1c11a01d25", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "\"Shocking\" 2018 Horoscope - See What's In Store For You", + "title": "Astrologyanswers", + "targetUrl": "astrologyanswers.com/Horoscope" + } + } + ], + "segments": [ + { + "code": "VmJBdpZEByG", + "name": "Folklore" + }, + { + "code": "CYMfcvOonn5", + "name": "Daily Horoscopes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c78e39cf-31ad-4d28-8e04-952293f616f8", + "name": "general", + "startAt": "2017-09-24T19:33:10.534Z", + "endAt": "2019-09-24T19:33:10.534Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3633d476-39c4-4c19-9e85-4bc6153b41cf", + "creativeSets": [ + { + "creativeSetId": "04bd8cf1-3c68-4b05-9aab-41100c8153ae", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6cf118db-b534-47d1-bc4a-004a3adf634a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Astronomy Magazine - Subscribe, Renew, or Gift. | order.com-sub.info", + "title": "Astronomy Magazine", + "targetUrl": "http://www.magazine-agent.com-sub.info/Astronomy/Welcome" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "Immio_OK-8F", + "name": "astronomy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2bbd40f2-c0df-42fe-b043-cec3609db8f4", + "name": "film", + "startAt": "2017-09-24T19:33:11.102Z", + "endAt": "2019-09-24T19:33:11.102Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "36c46ba1-8f26-4221-a272-fff95745492d", + "creativeSets": [ + { + "creativeSetId": "8953da54-157f-48a8-a4dc-958768841d7f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "aa94a1f2-0fff-4c3d-bf2f-ec50278b16b1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Film & Media Studies Degree - Available 100% Online.", + "title": "AsuOnline", + "targetUrl": "go.asuonline.asu.edu/film-and-media/learn_more" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "BAhEnDxcxBo", + "name": "Film Production Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4937f0e0-c217-4fc4-8a4c-44262bd86412", + "name": "general", + "startAt": "2017-09-24T19:33:11.703Z", + "endAt": "2019-09-24T19:33:11.703Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3fc2088e-6735-4ad9-8195-0b107d71e6ec", + "creativeSets": [ + { + "creativeSetId": "0b9973c1-7ffb-4fb6-a380-3a2292c5f413", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d833d403-5cc8-4558-8a25-8895eb614161", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Develop Your Education - ASU Degrees, 100% Online", + "title": "AsuOnlinedu", + "targetUrl": "go.asuonline.asu.edu/accredited_univ/degrees_online" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "ANs-xRChItO", + "name": "College Degrees Online" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1326c9b5-d42c-4498-a5aa-996a3c72c788", + "name": "general", + "startAt": "2017-09-24T19:33:12.312Z", + "endAt": "2019-09-24T19:33:12.312Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "93ee41b5-e3bc-4bc6-9c79-df86df8785e7", + "creativeSets": [ + { + "creativeSetId": "fd808fe9-782c-44f8-af97-6681b086e25b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "84b26e60-bc8b-42d8-9fb1-6ba1b70b1b72", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Wholesale Art Supplies - For Professionals & Businesses", + "title": "Aswexpress", + "targetUrl": "www.aswexpress.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "18fq9aiLp0z", + "name": "body art" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f0f30534-c32d-4281-b162-6bef3d30dd75", + "name": "general", + "startAt": "2017-09-24T19:33:13.119Z", + "endAt": "2019-09-24T19:33:13.119Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ec4f23d3-f591-43d4-aa34-0823aca5a966", + "creativeSets": [ + { + "creativeSetId": "dc269c37-6d61-42f1-a602-404d241bd174", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "742c6481-a77c-4019-9f10-e8b9238306ea", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Athleta® Official Site - New Winter Arrivals", + "title": "Athleta", + "targetUrl": "http://athleta.gap.com/?tid=atps000798&kwid=1&ap=7&utm_source=bing&utm_medium=cpc&utm_campaign=ATUS_General_Misspellings_Search_Branded_Exact_Null_National&utm_term=athletica&utm_content=General&gclid=CJjTt9qqj9kCFZddfgodZCYK9g&gclsrc=ds" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "-Ol0mK-SzAG", + "name": "athletics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "082f4bf8-4999-421c-a730-f8f9e12fd9d7", + "name": "general", + "startAt": "2017-09-24T19:33:13.688Z", + "endAt": "2019-09-24T19:33:13.688Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0fd9dd10-0666-4221-a75a-b85faa98bc5c", + "creativeSets": [ + { + "creativeSetId": "2bd9a8aa-ea4b-406f-89bc-34489fd0f2e9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "705f61fd-f4b8-4470-9416-3bc7cfeed922", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Atlantis, Paradise Island - Bahamas at Heart", + "title": "Atlantisbahamas", + "targetUrl": "atlantisbahamas.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6gRfXQJbCmu", + "name": "Vacation Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "59d5d0ab-738e-44ac-a1be-430101c942dc", + "name": "general", + "startAt": "2017-09-24T19:33:14.282Z", + "endAt": "2019-09-24T19:33:14.282Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0cde9f05-95d5-4f7d-a749-caccbea63bf0", + "creativeSets": [ + { + "creativeSetId": "21d1e947-80ce-49a0-9466-9b426a5b431d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4d69e2cd-6cf5-4855-8b02-3e5d08e968e2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Powerful Jira Service Desk - 7-Day Free Trial | atlassian.com", + "title": "Atlassian", + "targetUrl": "www.atlassian.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "P9Lfpxf-FV6", + "name": "Management Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fefeb470-6f14-4e96-9a71-5bdf256c9125", + "name": "General", + "startAt": "2017-09-24T19:33:14.897Z", + "endAt": "2019-09-24T19:33:14.897Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "00555358-f8fd-4c1f-92a4-c7171b4e1734", + "creativeSets": [ + { + "creativeSetId": "128837d3-da8e-4fd6-8602-046c1a2ea425", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "52c2fb86-d831-4414-ba10-8aabd1bd3896", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "AT&T® Unlimited &More℠ Premium - More Choice & Perks on Us", + "title": "Att", + "targetUrl": "www.att.com" + } + } + ], + "segments": [ + { + "code": "05KGovyhnUj", + "name": "cell phones" + }, + { + "code": "PDcNk9LToal", + "name": "cell phones" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cdb2da03-e8c6-45f1-be2e-f7a0e430ce38", + "name": "general", + "startAt": "2017-09-24T19:33:15.671Z", + "endAt": "2019-09-24T19:33:15.672Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7a32f58c-00ad-410a-8000-994e3892d394", + "creativeSets": [ + { + "creativeSetId": "219ac09e-0ab6-424f-b3c3-ee236a425e47", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6ab4a593-48e2-4a19-949b-d77569d9ded0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Audible.com Official Site - Download a Free Audiobook", + "title": "Audible", + "targetUrl": "www.audible.com/FreeTrial" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mNcox6LeedN", + "name": "Anatomy Books" + } + ] + }, + { + "creativeSetId": "f0429bec-7490-4b71-a96a-5ef1ca064e5c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e83a81bf-5f83-4cbb-8400-d3f597d26c40", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Audible.com Official Site - Listening is the New Reading", + "title": "Audible", + "targetUrl": "www.audible.com/FreeTrial" + } + } + ], + "segments": [ + { + "code": "5G4C9Gbl_AF", + "name": "History" + }, + { + "code": "A8IougsHirI", + "name": "Archaeology Books" + } + ] + }, + { + "creativeSetId": "57351073-06eb-4832-b1db-d9acfb90401b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f7738afb-536d-4750-8d60-96fdffd5d12c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Download a Free Audiobook - With Audible 30 Day Trial", + "title": "Audible", + "targetUrl": "www.audible.com/FreeTrial" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "AQ9eV3TbmJq", + "name": "Physics Books" + } + ] + }, + { + "creativeSetId": "a1becf5e-ff83-4fd5-9a49-b252ac1d340d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c4f2cb43-d2a9-417b-842f-8947df37c9de", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Audible.com Official Site - Listening is the New Reading", + "title": "Audible", + "targetUrl": "www.audible.com/FreeTrial" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "Fd-YZYI1wwN", + "name": "Online Ebooks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "28bb0e96-79dc-4939-b72d-7afac8274bd6", + "name": "general", + "startAt": "2017-09-24T19:33:17.091Z", + "endAt": "2019-09-24T19:33:17.092Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "de5765d8-8498-446f-90f6-57806709506b", + "creativeSets": [ + { + "creativeSetId": "fa2ff904-5c92-4c4a-8681-41415fbc8c29", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9ffcc437-accb-4593-9689-8a50d405c313", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hearing Aids for Seniors", + "title": "Audicus", + "targetUrl": "www.Audicus.com/Hearing-Aids" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "LRNthVMNdVU", + "name": "Hearing Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "46cb29aa-9fc5-4391-a914-e76707e18091", + "name": "general", + "startAt": "2017-09-24T19:33:17.789Z", + "endAt": "2019-09-24T19:33:17.789Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "08d52f2d-d1c4-42b2-b1e1-2359b7151ca3", + "creativeSets": [ + { + "creativeSetId": "24e7983d-7269-4840-acc3-051ca6208561", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9df107dd-9e48-40bc-8f2f-6d16dbd4126a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Austin Kayak - Shop Now | austinkayak.com", + "title": "Austinkayak", + "targetUrl": "www.austinkayak.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "5nUrFtckCYM", + "name": "Kayaking Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3ea4c8ce-e2f8-450b-8cc1-4ebc1eac53cc", + "name": "general", + "startAt": "2017-09-24T19:33:18.479Z", + "endAt": "2019-09-24T19:33:18.480Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9bcc536f-e8c6-4eb4-b010-9109759d1516", + "creativeSets": [ + { + "creativeSetId": "2b65bab4-7818-43b6-bae4-1accaf51317b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e8638698-f5d7-4ead-a7f0-110a43df77fd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Autism Parenting Magazine - Moms Choice Gold Award Winner | autismparentingmagazine.com", + "title": "Autism Parenting Magazine", + "targetUrl": "https://www.autismparentingmagazine.com/" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "s5LYn91KVq1", + "name": "autism" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1f8a7deb-51e7-45db-920e-a9598e824615", + "name": "general", + "startAt": "2017-09-24T19:33:19.179Z", + "endAt": "2019-09-24T19:33:19.179Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "af52362f-138f-4619-8e76-5b80e03e173c", + "creativeSets": [ + { + "creativeSetId": "ed2b779c-8303-47c7-abac-d5d5a8148174", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7c1894c8-290c-42cb-8b30-5e29ad6c51a5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cheap $19 Car Insurance - VA Rates as Low as $18.99/Mo", + "title": "Autoinsurance.insure", + "targetUrl": "autoinsurance.insure.com/Virginia" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "oYzWfQaOXCj", + "name": "Car Insurance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ddcebfcf-6232-4472-a79f-60095e1461f8", + "name": "general", + "startAt": "2017-09-24T19:33:19.783Z", + "endAt": "2019-09-24T19:33:19.783Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "42089e2d-5dde-44f8-a9f6-39724a7a44db", + "creativeSets": [ + { + "creativeSetId": "136d8812-d128-49f8-97be-b0ee304ecb27", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8321f057-3e15-45dc-afb4-c3f4b4f258f3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "AutoPartsWay® USA | autopartsway.com", + "title": "Autopartsway", + "targetUrl": "www.autopartsway.com" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "px5LkO5yZzb", + "name": "Auto Parts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b9bbbb8f-890b-4944-82b1-0ba51903e765", + "name": "general", + "startAt": "2017-09-24T19:33:20.376Z", + "endAt": "2019-09-24T19:33:20.377Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "def4b067-88e9-4f5c-a5d6-e408fdf57b88", + "creativeSets": [ + { + "creativeSetId": "c3367348-956a-4b09-960a-94f98ca470cf", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f2a43465-94a7-4671-a633-8ac572350b7b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2018 — GMC Truck Clearance - (Sale Ends Soon!)", + "title": "Autosite", + "targetUrl": "dealers.autosite.com/gmc/clearance" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "TrWA-UI4zhY", + "name": "Pickup Trucks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "eb5ba063-6e7e-4aec-beb4-d697da41b942", + "name": "convertibles", + "startAt": "2017-09-24T19:33:21.926Z", + "endAt": "2019-09-24T19:33:21.926Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4cfae95e-a910-4bcf-9a68-683f61a45ecc", + "creativeSets": [ + { + "creativeSetId": "4fdb7669-1885-4014-b27f-fed8ab12024d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2d8e5aa1-c75d-46e1-91c3-c7f6605bd593", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Convertibles For Sale - Find Convertibles With Autotrader®", + "title": "Autotrader", + "targetUrl": "https://www.autotrader.com/cars-for-sale/Convertible?LNX=SPBINGNONBRANDBODYSTYLE&cid=OA2x8e0E_dc|pcrid|12483823457|slid||tid|26285djp59179" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "KRML3IewM34", + "name": "convertibles" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d31666b7-bd71-4be4-b8bb-ef6c29eba8a7", + "name": "used", + "startAt": "2017-09-24T19:33:22.274Z", + "endAt": "2019-09-24T19:33:22.275Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4cfae95e-a910-4bcf-9a68-683f61a45ecc", + "creativeSets": [ + { + "creativeSetId": "c11a4c61-5ccc-48f4-9be1-0e4bf1517993", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8a6e7a46-fd26-4d0f-b4b9-534dd0997f17", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Used Cars At Autotrader® - From Click To Car In Seconds", + "title": "Autotrader", + "targetUrl": "www.Autotrader.com/CarUsed" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "b4xuJT0IZ_f", + "name": "Used Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "61b3d60c-37df-4ef3-8db5-2223c956a315", + "name": "general", + "startAt": "2017-09-24T19:33:22.887Z", + "endAt": "2019-09-24T19:33:22.888Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "58c80673-53e0-4dbf-9f31-9b23df10c184", + "creativeSets": [ + { + "creativeSetId": "f622bc11-9a65-48fc-836d-458acf92ff92", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1eeb0ee8-2ba7-472f-9375-d0d0d4f78767", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Reliable Auto Parts Online - Free Shipping On $25+ Orders", + "title": "Autozone", + "targetUrl": "www.autozone.com/Auto_Parts" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "px5LkO5yZzb", + "name": "Auto Parts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "20c563fa-8c7c-4d00-a300-4375f754ece1", + "name": "general", + "startAt": "2017-09-24T19:33:24.164Z", + "endAt": "2019-09-24T19:33:24.164Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a055662a-083c-4ddd-80ec-c4e070c741db", + "creativeSets": [ + { + "creativeSetId": "f5add778-b114-45af-afd5-601f78fb725a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "22476826-4054-495d-8440-9b3b1e4178d1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Websites Hosting on AWS - Cloud Website Hosting Solution", + "title": "Aws.amazon", + "targetUrl": "aws.amazon.com/webapps" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "zgMSYI-gfMo", + "name": "eCommerce Websites" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0d4d63b8-ff36-4fcc-b3e0-de213b94136d", + "name": "general", + "startAt": "2017-09-24T19:33:24.729Z", + "endAt": "2019-09-24T19:33:24.729Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7d121e2d-ac02-49f0-b652-f5bc54cd1ec2", + "creativeSets": [ + { + "creativeSetId": "7a956506-9fc2-4d6e-ab1c-d3cd89670c5c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "86f814e4-6b58-473f-99f2-223887e75cf5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "BARCO 4x4 Pickup Truck Rental - Free Quotes, Unlimited Mileage", + "title": "Ba", + "targetUrl": "www.barcorentatruck.com" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "TrWA-UI4zhY", + "name": "Pickup Trucks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5f16d679-b1e8-43ef-8e8e-0231fb4e923b", + "name": "general", + "startAt": "2017-09-24T19:33:25.484Z", + "endAt": "2019-09-24T19:33:25.484Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bc79a2fc-0a70-4447-b89d-3d8866f34d16", + "creativeSets": [ + { + "creativeSetId": "25caeaf5-bee6-473c-aede-8454138bd367", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5b1d9e86-0e8e-492b-8686-4ff001fa30dd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Artificial Lawn Installers - Call Back Nine Greens | backninegreens.com \r\n", + "title": "Back Nine Greens", + "targetUrl": "http://www.backninegreens.com/?utm_source=reachlocal&utm_medium=cpm&utm_campaign=sembackninegreenssanfrancisco&scid=3588725&cid=2450390&tc=18013113493782994&rl_key=2056c4649869679ef7d05757d8a1a679&kw=4348635&pub_cr_id=71124695998814&dynamic_proxy=1&primary_serv=www.backninegreens.com&rl_track_landing_pages=1&rl_retarget=1&rl_retarget_none=38_313162_1" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "LY0TOvRDAjR", + "name": "garden" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "76b74c8d-5660-425e-9c83-e24583e6615d", + "name": "general", + "startAt": "2017-09-24T19:33:26.071Z", + "endAt": "2019-09-24T19:33:26.071Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "93379a92-9a94-40a6-a5f3-088e7908d7da", + "creativeSets": [ + { + "creativeSetId": "0e677567-1a3b-41b2-81af-b1e282b9cadd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c729dabd-fc1e-4251-9881-56ca0fe7dc22", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Baha Mar® is Now Open - Explore the Resort | bahamar.com", + "title": "Bahamar", + "targetUrl": "bahamar.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6mVE5rciM5p", + "name": "Hotel Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2d39e7a1-cbe3-4e0c-bfa0-f854a1f96423", + "name": "general", + "startAt": "2017-09-24T19:33:26.671Z", + "endAt": "2019-09-24T19:33:26.671Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "29404dab-1f55-43f9-9810-6a8e9dec836e", + "creativeSets": [ + { + "creativeSetId": "2405ebd8-35d9-47ce-8c04-e100009e7f28", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e7f517e1-b2bd-408b-9363-84b8822328ec", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "CNC Woodworking Router - (#1 in Woodworking Machinery)", + "title": "Baileigh", + "targetUrl": "www.baileigh.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "sa6bkvlxwxQ", + "name": "Woodworking Projects" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a7e71c87-bfad-437d-807b-19c5f8b61373", + "name": "general", + "startAt": "2017-09-24T19:33:27.415Z", + "endAt": "2019-09-24T19:33:27.415Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e5fedf32-b4e0-4bd2-b037-6b34d37c2899", + "creativeSets": [ + { + "creativeSetId": "14acd938-7e8d-43d7-886f-9e16fde19e7d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0869873f-3b4f-4be6-99b4-5aea8ac49398", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pottery Tools", + "title": "Baileypottery", + "targetUrl": "www.baileypottery.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "HXyi8S4OgtE", + "name": "Pottery Tools" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "25ec30c2-2460-4b1e-9120-9277fbe925f5", + "name": "general", + "startAt": "2017-09-24T19:33:28.033Z", + "endAt": "2019-09-24T19:33:28.033Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ef943a13-11ff-4edb-b655-7706abb18032", + "creativeSets": [ + { + "creativeSetId": "eddaacab-4f69-48d5-a4b2-0b38dfabf385", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3466e05b-afe1-4bb4-95ed-0c154cf573ba", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Baker College - Online Degrees - Accredited. Affordable.", + "title": "BakerEdu", + "targetUrl": "discover.baker.edu" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "ANs-xRChItO", + "name": "College Degrees Online" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b49cc96a-cc46-4c7b-aab5-91b7f26994e5", + "name": "general", + "startAt": "2017-09-24T19:33:28.623Z", + "endAt": "2019-09-24T19:33:28.623Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8f8d302b-b5d5-411e-bce9-b2c12c6c6a4a", + "creativeSets": [ + { + "creativeSetId": "657b11bf-ee38-48f7-9f30-79cb6db3082f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2937fd27-10fc-4b22-94e7-b05734a8355c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Your Neighborhood Pharmacy - At Baker's® | bakersplus.com", + "title": "Bakersplus", + "targetUrl": "www.bakersplus.com/YourLocal/Pharmacy" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "sOqbf6PQ3c-", + "name": "Online Pharmacy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "159ad1bc-e653-41f0-82cf-4729747cd7c7", + "name": "smoking", + "startAt": "2017-09-24T19:33:29.066Z", + "endAt": "2019-09-24T19:33:29.066Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8f8d302b-b5d5-411e-bce9-b2c12c6c6a4a", + "creativeSets": [ + { + "creativeSetId": "9e99b5c1-ab44-4e2e-a940-8305507b163e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7e2250eb-e44b-4b4d-9c9c-808fa75c98e7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Want To Quit Smoking? - Get Help With Baker's®", + "title": "Bakersplus", + "targetUrl": "www.bakersplus.com/Smoking/Cessation" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "TAoUE1tinMK", + "name": "Quit Smoking" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "79dfb6e6-c496-4e02-98ae-cb5313efb008", + "name": "selfpub", + "startAt": "2017-09-24T19:33:29.832Z", + "endAt": "2019-09-24T19:33:29.832Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "79b5ba04-e8e2-4939-97c8-a78a4cda8a17", + "creativeSets": [ + { + "creativeSetId": "6f84e9ae-6b85-4173-8d65-6777b7bbcd08", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c37cf5ff-b0eb-4d35-837b-c83582d5809c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hay House Self-Publishing - With Balboa Press | balboapress.com", + "title": "Balboapress", + "targetUrl": "www.balboapress.com/SelfPublishing/Inspirational" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "KjrAF8XxEDc", + "name": "Book Publishing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "adedafc5-fb47-4844-89f1-302d0cbcdc6a", + "name": "general", + "startAt": "2017-09-24T19:33:30.386Z", + "endAt": "2019-09-24T19:33:30.387Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cc8bc5d1-ada1-4662-ba93-ea0a88128fe9", + "creativeSets": [ + { + "creativeSetId": "b7d7c212-c1b5-49f2-bde5-ab60402cb7bd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d77f3f02-9c47-464e-98f5-a5c68080bf19", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy More, Save More Event - Ballard Designs Official Site", + "title": "Ballarddesigns", + "targetUrl": "www.ballarddesigns.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "JdIppC2dyV9", + "name": "Home Furniture" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1280ddb6-3aba-4990-be76-c09b9666a90b", + "name": "general", + "startAt": "2017-09-24T19:33:30.925Z", + "endAt": "2019-09-24T19:33:30.926Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ba7fcb8f-5fdb-463c-9ce9-c822edc02984", + "creativeSets": [ + { + "creativeSetId": "6d2e7d0f-2071-47ed-a58d-8423f5a53d42", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4fcfdea6-54c4-452a-b549-27df47ecc616", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Today's Refinance Rates – Compare Rates in Seconds", + "title": "Bankrate", + "targetUrl": "www.bankrate.com/Refinance/Rates" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "dtTKtVFdpje", + "name": "Refinance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "57687050-bb84-46a8-a961-50d296ebb28d", + "name": "general", + "startAt": "2017-09-24T19:33:31.632Z", + "endAt": "2019-09-24T19:33:31.633Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6b5f6e49-90dd-4f18-9291-4f8b52dfe14d", + "creativeSets": [ + { + "creativeSetId": "f64421e2-a304-4091-afc5-00316deee69d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7e22b07c-7eb9-4239-9f9f-76b5c7605bdd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Low Cost Bankruptcy - No Longer Can Pay Your Bills", + "title": "BankruptcyLawFirms", + "targetUrl": "BankruptcyLawFirms.com/StartFresh" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "E_MEtpVexy1", + "name": "Find a Lawyer" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8cf3a1eb-609b-4946-8610-d3132744cee0", + "name": "home", + "startAt": "2017-09-24T19:33:32.441Z", + "endAt": "2019-09-24T19:33:32.441Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ee2ac542-6f60-4189-b8f7-9b0d80eafe48", + "creativeSets": [ + { + "creativeSetId": "5acf2cec-3c80-40a8-a369-c396f4489977", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "77cc3a18-72bf-4c85-884a-c94bf74302a1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Coffee K Cups - Grab This Exclusive Deal", + "title": "Bargainus", + "targetUrl": "bargainus.net/coffee_k_cups" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "6mVbUr4iL4O", + "name": "Coffee Cups" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "60267288-4e34-4350-8cde-6340db6d68e1", + "name": "photos", + "startAt": "2017-09-24T19:33:32.781Z", + "endAt": "2019-09-24T19:33:32.781Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ee2ac542-6f60-4189-b8f7-9b0d80eafe48", + "creativeSets": [ + { + "creativeSetId": "409234e9-683c-461c-b4a4-adcf23ac4cfb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f90eed09-5032-45b5-90f9-a9e6e9a46a8d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Stock Photos - Top Tips & Recommendations", + "title": "Bargainus", + "targetUrl": "bargainus.net" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "IdSgRp0c7Tn", + "name": "Stock Photos" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "665a8bb7-173f-439d-afbe-a83e7e21b82c", + "name": "pets", + "startAt": "2017-09-24T19:33:33.594Z", + "endAt": "2019-09-24T19:33:33.594Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c0c4fd09-946c-424f-b048-ef4dd4024935", + "creativeSets": [ + { + "creativeSetId": "eb0eac96-6c9b-44b0-b063-f28a39316267", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3eec3b9d-ef20-4068-984a-dac967fdd0d3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The Best Dog Toys - BarkShop™ Official Site", + "title": "Barkshop", + "targetUrl": "barkshop.com/BarkShop/Toys" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "cJeWKlUNo4Y", + "name": "Dog Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "530c1156-462b-4d2c-a1e9-4e3233c013b8", + "name": "sale", + "startAt": "2017-09-24T19:33:34.162Z", + "endAt": "2019-09-24T19:33:34.162Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b1d4441f-28b6-485c-8260-baa87b71e73d", + "creativeSets": [ + { + "creativeSetId": "d38d95f9-1ece-4df7-8c2a-91c5666f9525", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fc3c353b-8373-4ad9-972d-b1ffdb633d1c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "50% Off Sitewide - Barneys Warehouse Summer Sale", + "title": "Barneyswarehouse", + "targetUrl": "www.barneyswarehouse.com/FourthOfJuly/SummerSale" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "cKE--V39Tbj", + "name": "clothing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1d2da7d1-afc9-4c9b-969a-99885187bc65", + "name": "general", + "startAt": "2017-09-24T19:33:34.728Z", + "endAt": "2019-09-24T19:33:34.729Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "dbfc9818-fc31-4ef1-a31b-c767510d3135", + "creativeSets": [ + { + "creativeSetId": "5b2c4d20-c096-4610-a178-54bde1773b60", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0fd05327-4051-432f-a9eb-8a0942f3ef6d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Baseball Digest Magazine – Magazine Subscription Offer", + "title": "Baseball Digest", + "targetUrl": "https://www.com-sub.biz/magazine-subscription/baseball-digest.html" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "jDIwvWkgn3d", + "name": "baseball" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e4de4909-4ad6-442b-88aa-7242bb90c4fb", + "name": "general", + "startAt": "2017-09-24T19:33:35.551Z", + "endAt": "2019-09-24T19:33:35.551Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3d9fbbcc-0544-4670-994e-41dd4a5a9431", + "creativeSets": [ + { + "creativeSetId": "763068de-a680-49b8-99d2-7a9ccb2c9e80", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ea2256b2-dec9-40be-b9d1-e6279c099196", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Napoleon Portable Grills - Easy Shipping, Free Returns", + "title": "Bbqsandgrills", + "targetUrl": "bbqsandgrills.com/Napoleon-Grills" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "w2RZcyzoMxq", + "name": "Barbecues" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cdb29b31-2702-48ea-a69c-7e784e2b303e", + "name": "general", + "startAt": "2017-09-24T19:33:36.116Z", + "endAt": "2019-09-24T19:33:36.116Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0c98aa82-29f3-4405-a9d7-284d5cc1be7f", + "creativeSets": [ + { + "creativeSetId": "0c3006e3-31c4-4a14-b5f2-9cfd22ce0502", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7653a3aa-d7ec-4764-9654-c14da6ef4d11", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "BB&T Personal Banking - Banking With Us is Just Easy", + "title": "Bbt", + "targetUrl": "www.bbt.com/Banking" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "7MiD5IH1W6t", + "name": "Bank Accounts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0fca4997-d43f-4f26-9a2d-7bc93b8d2894", + "name": "general", + "startAt": "2017-09-24T19:33:36.680Z", + "endAt": "2019-09-24T19:33:36.680Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d6a20b97-0ce7-4644-a8b8-19ea2874039f", + "creativeSets": [ + { + "creativeSetId": "f803e3fc-b7ee-424e-9e57-fc6d14c0fd9d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c7aa6edd-4eb8-4397-9c81-09b77a5da389", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dancewear made in the USA", + "title": "BDancewear", + "targetUrl": "www.BDancewear.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "tDcqDSsaTpB", + "name": "Dance Lessons" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c88ae807-b4c9-4c88-ab5a-93816579b8e2", + "name": "general", + "startAt": "2017-09-24T19:33:37.671Z", + "endAt": "2019-09-24T19:33:37.671Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "49cff719-652e-41e1-a4d5-d9c2793b7c2e", + "creativeSets": [ + { + "creativeSetId": "46d0d295-1b8b-4123-a362-e37a6214618a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cdfd55d4-9a68-4490-a62f-ebd1c9101ada", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Beachbody Portion Control", + "title": "Beachbody", + "targetUrl": "Beachbody.com/PortionControl" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "aQGewv5ybwZ", + "name": "Dieting Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "73ba923f-040f-47ad-a35f-4c946be631d3", + "name": "general", + "startAt": "2017-09-24T19:33:38.241Z", + "endAt": "2019-09-24T19:33:38.242Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d903a505-8e06-4c25-9525-27cda987976e", + "creativeSets": [ + { + "creativeSetId": "aebcb90b-6338-47d8-82fd-b5a87c2b212c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9e84ca93-68e6-4413-8708-5c140a7fdeca", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Chef Inspired Recipes. | Wow Your Family Tonight.‎", + "title": "Beefitswhatsfordinner", + "targetUrl": "www.beefitswhatsfordinner.com/ ‎" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "9Roh9lJ0tSd", + "name": "Cooking Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "759e45e2-32c0-43e3-abfc-a1446703d197", + "name": "tech", + "startAt": "2017-09-24T19:33:38.832Z", + "endAt": "2019-09-24T19:33:38.832Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "45f3bcbc-9a25-4d23-ab18-49218030e712", + "creativeSets": [ + { + "creativeSetId": "f5ea11ea-fe16-4d89-91c8-378585320364", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a018021e-b624-4544-aa7c-76cc702491ea", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dell Laptop Computers Deals - This Months Top Offers", + "title": "Beelocal", + "targetUrl": "beelocal.net/Dell%20Laptop%20Computers" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "r-ofzMLNsK8", + "name": "Dell Computers" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2a5e1438-cb76-491c-9b27-8d74596d2fc4", + "name": "general", + "startAt": "2017-09-24T19:33:39.362Z", + "endAt": "2019-09-24T19:33:39.362Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4811d5c4-d7e9-4fb1-ace8-1b1de379c21a", + "creativeSets": [ + { + "creativeSetId": "a53dddaf-c055-4e42-addf-011e932cb4cb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bc142fab-1bd2-4015-a18b-e7c36c3b3bf0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "See Who's Texting Now", + "title": "Beenverified", + "targetUrl": "Beenverified.Com/TextSpy#Search" + } + } + ], + "segments": [ + { + "code": "6QLcn3Fnca-", + "name": "Careers" + }, + { + "code": "AkN_-chsgWP", + "name": "Find Work" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bd31a969-b15b-4dab-ada2-432f4420a45e", + "name": "general", + "startAt": "2017-09-24T19:33:39.935Z", + "endAt": "2019-09-24T19:33:39.936Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7cc7bc02-9a3b-4774-a3a2-47362b04aad7", + "creativeSets": [ + { + "creativeSetId": "6bfd3bc2-9aae-4c19-ae55-bf9ded27762d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "60d842bc-56c3-481f-9b14-3fa515443e37", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Complete Duty Belts", + "title": "Belts.qmuniforms", + "targetUrl": "Belts.qmuniforms.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "J5bdxnl4xfj", + "name": "Wrestling Belts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c7d82189-40e1-4a2d-84f4-01dfd081cdbd", + "name": "general", + "startAt": "2017-09-24T19:33:40.529Z", + "endAt": "2019-09-24T19:33:40.529Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1e29085f-e929-4cfc-8456-676f48d66adc", + "creativeSets": [ + { + "creativeSetId": "c211f5c1-b89a-429a-9012-9774090bd4ff", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "488110d6-3a77-45ef-a7f3-df6b21d66f25", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Trusted Forestry Products | BenMeadows.com", + "title": "BenMeadows", + "targetUrl": "BenMeadows.com/Forestry" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "A7P6uoAIgzo", + "name": "Forestry Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0397786e-853b-4872-b72f-1ba53af80a9e", + "name": "general", + "startAt": "2017-09-24T19:33:41.127Z", + "endAt": "2019-09-24T19:33:41.127Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "55d152d6-e839-4039-95a5-d6c966707862", + "creativeSets": [ + { + "creativeSetId": "b95f1805-1dab-4163-b483-e89afd895975", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "caee8efa-8169-4d52-b8c6-74797acf260a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Trusted Forestry Products | BenMeadows.com", + "title": "BenMeadows.com", + "targetUrl": "https://www.benmeadows.com/forestry-supplies-and-equipment-36809861/?cid=RX0330&s_kwcid=AL!3210!10!2088087757!20301268672&ef_id=WmZBUAAAAF4YWyKh:20180205232954:s" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "I72CXPUhbEv", + "name": "forestry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5da1b591-e5e4-4a3f-bdc1-f0bdfed6886b", + "name": "health", + "startAt": "2017-09-24T19:33:41.687Z", + "endAt": "2019-09-24T19:33:41.687Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1f01bc5b-14b5-45f1-9cde-2f0ccd45af1e", + "creativeSets": [ + { + "creativeSetId": "9c23c87e-25e2-4ab4-91a0-57bd72d92ff3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "09915503-e5d2-4d37-af6b-3952af3036f2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Get super cheap Exercise Books - Find Top Exercise Books online", + "title": "Best-deal", + "targetUrl": "www.best-deal.com/Books/Exercise Books" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "Gn19-1NmjlI", + "name": "Exercise Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d92bcb45-142c-45ff-bbce-62dc65794bc7", + "name": "health", + "startAt": "2017-09-24T19:33:42.252Z", + "endAt": "2019-09-24T19:33:42.252Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2479080a-05a7-4865-9fc5-9d31312b4a5d", + "creativeSets": [ + { + "creativeSetId": "92eaafa6-6693-481f-8926-af115f938828", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "58d8bf22-79b5-4584-8821-823e60d4e049", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dermatology Books -60 % off - Shop online on BEST-PRICE.com", + "title": "Best-price", + "targetUrl": "www.best-price.com/Books/Offers" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "-dQjfkaxWaZ", + "name": "Dermatology Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "33d83104-6024-4b00-ba50-a2829a95ad26", + "name": "sports", + "startAt": "2017-09-24T19:33:42.588Z", + "endAt": "2019-09-24T19:33:42.589Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2479080a-05a7-4865-9fc5-9d31312b4a5d", + "creativeSets": [ + { + "creativeSetId": "cd4e065c-d6be-4807-9c99-474415c34151", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c14467ee-a449-48fe-a23f-469f8d5c9793", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top-value Rowing Gear - Huge Choice on BEST-PRICE.com", + "title": "Best-price", + "targetUrl": "www.best-price.com/Sport&Outdoor/Offers" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "YGCofQVxBiL", + "name": "Rowing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3f9d80e6-dc0c-41d3-b49b-36b2491df1fc", + "name": "tech", + "startAt": "2017-09-24T19:33:43.161Z", + "endAt": "2019-09-24T19:33:43.161Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c37d19c3-19d7-4974-a456-b36974f46223", + "creativeSets": [ + { + "creativeSetId": "2e8f4417-dfa0-4b38-8699-d1a89e56cb75", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2e8edd89-d4a8-4a4a-8a51-707c02c5f60f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dell Desktops - at Best Buy®", + "title": "Bestbuy", + "targetUrl": "www.bestbuy.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "r-ofzMLNsK8", + "name": "Dell Computers" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "40d17fa9-db5b-4f43-883c-b078b9644df0", + "name": "fitness", + "startAt": "2017-09-24T19:33:44.103Z", + "endAt": "2019-09-24T19:33:44.104Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7b4ab24d-45ad-4e4e-a8e3-81f9999fdd4b", + "creativeSets": [ + { + "creativeSetId": "ef2d06e8-066a-4203-ad91-7c15ba5fcc85", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b5dfcaa7-6184-4b1f-a9ef-7cc61285b008", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Clearance Mountain Bikes - Save 30% Off Today", + "title": "Bestdeals", + "targetUrl": "www.bestdeals.today/Clearance_Mount" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "2SN69khRzXf", + "name": "Cycling Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1564d7ef-50df-4ef1-8227-bb477e82f0f8", + "name": "cooking", + "startAt": "2017-09-24T19:33:44.687Z", + "endAt": "2019-09-24T19:33:44.687Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c33b12bf-8208-44ea-b974-eafaf644306f", + "creativeSets": [ + { + "creativeSetId": "44803f9d-e7a2-431b-a2a5-f7fb7f5494a4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f96e1c85-c7c3-4985-a8ec-398ca95673ab", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 5 Pasta - Our Top Pick Will Surprise You", + "title": "Bestreviews", + "targetUrl": "www.bestreviews.com/pasta" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "AqMmPbWQnUE", + "name": "Fresh Pasta" + } + ] + }, + { + "creativeSetId": "6cac7e65-d94b-46d5-bcda-309fce553b6a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b5d08db0-b314-4e36-ac12-f7c2ee03b61f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2018's Top 5 Juicers - Compare Products Side by Side", + "title": "Bestreviews", + "targetUrl": "bestreviews.com/juicers" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "lFMT5ZDQdjc", + "name": "Juice Drinks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c7498396-35aa-4fc1-89cb-f6bc56445d7e", + "name": "health", + "startAt": "2017-09-24T19:33:45.291Z", + "endAt": "2019-09-24T19:33:45.291Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c33b12bf-8208-44ea-b974-eafaf644306f", + "creativeSets": [ + { + "creativeSetId": "1baf36fa-fd76-4067-b3e7-68ef864c45ea", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2091dcaf-5225-4a49-ac51-c490de97774d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Thyroid Books of 2017 - We Reviewed All of Them", + "title": "Bestreviews", + "targetUrl": "www.bestreviews.guide/Best/Thyroid_Books" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "Q9F_XhEg8W_", + "name": "Thyroid Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6fe33103-73d5-497f-a378-c5a879457adb", + "name": "hobbies", + "startAt": "2017-09-24T19:33:45.625Z", + "endAt": "2019-09-24T19:33:45.625Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c33b12bf-8208-44ea-b974-eafaf644306f", + "creativeSets": [ + { + "creativeSetId": "6626b446-6a8c-4b7f-88ee-972eef6f2646", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3d1679aa-82e1-4cb2-83cb-5cdb7f4057cb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2017's Top 5 Drones - Compare Products Side by Side", + "title": "Bestreviews", + "targetUrl": "bestreviews.com/drones" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "eJu7bz6XQx4", + "name": "RC Vehicles" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "158ed71f-b83d-4c26-b759-196bd7cefb70", + "name": "books", + "startAt": "2017-09-24T19:33:45.980Z", + "endAt": "2019-09-24T19:33:45.980Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c33b12bf-8208-44ea-b974-eafaf644306f", + "creativeSets": [ + { + "creativeSetId": "2c23e900-8958-4aba-82d6-8d8ec1aea42f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "63bef3ca-c83a-4e97-9220-5a4559cd410a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Economics Books of 2017 - We Reviewed All of Them", + "title": "Bestreviews", + "targetUrl": "www.bestreviews.guide/Best/Economics_Books" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "TZT3-8UTU4y", + "name": "Economics Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f8f0f3b8-186d-4868-8c06-9c1c0d183d4e", + "name": "general", + "startAt": "2017-09-24T19:33:46.535Z", + "endAt": "2019-09-24T19:33:46.536Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f93a903c-2c09-4602-bdc7-ef94b75c4260", + "creativeSets": [ + { + "creativeSetId": "d7838be2-0376-4ed6-a99c-40e69b2fa40d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fcf68f59-f7d1-43a6-845f-f9aa79145942", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "65 Beginner Volleyball Drills - Passing, Setting, Attacking", + "title": "Bestvolleyballdrills", + "targetUrl": "bestvolleyballdrills.com/Volleyball/Drills" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "tnXE6QYG4tO", + "name": "Volleyball Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "84053ae4-8378-4781-88f4-d3bc0e358c76", + "name": "smoking", + "startAt": "2017-09-24T19:33:47.231Z", + "endAt": "2019-09-24T19:33:47.232Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c0f29ef0-21ad-48c8-b84b-c92e7ce9662c", + "creativeSets": [ + { + "creativeSetId": "bad57eb2-098a-4145-b253-5dc2c7c9c56c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fec9bdba-ea60-4a92-90cf-639ffd0e39fd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dangerous Effects Of Smoking - Learn The Health Consequences", + "title": "Betobaccofree", + "targetUrl": "therealcost.betobaccofree.hhs.gov/SmokingEffects" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "TAoUE1tinMK", + "name": "Quit Smoking" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c1305be5-d809-4ce5-bc73-5f943ea570ba", + "name": "econ", + "startAt": "2017-09-24T19:33:47.980Z", + "endAt": "2019-09-24T19:33:47.980Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "767deb25-bcd6-4354-adb0-dfa5b40b00c3", + "creativeSets": [ + { + "creativeSetId": "51de247b-9674-47dd-91ea-dfe62437480f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3f391f46-52af-4c62-aa55-ee53fe73f9ba", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Economics Books - 90% Off - As Low as $3.98", + "title": "Betterworldbooks", + "targetUrl": "www.betterworldbooks.com/Buy_Now/Free_Shipping" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "TZT3-8UTU4y", + "name": "Economics Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "48f1680f-4700-4805-9fff-862e534e8a98", + "name": "general", + "startAt": "2017-09-24T19:33:48.542Z", + "endAt": "2019-09-24T19:33:48.542Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "72b8c2f8-65f4-46ec-9687-7cce20389e11", + "creativeSets": [ + { + "creativeSetId": "e06e1835-7e56-48ab-a383-020fdeba794e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e9f70f81-df28-42b5-92fc-fedc23a6465a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Start Your Ecommerce Business - Awesome Themes, Powerful Tools", + "title": "Bi", + "targetUrl": "www.bigcommerce.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "zgMSYI-gfMo", + "name": "eCommerce Websites" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6d8c9e96-306b-45a3-81f5-fc7cc3819652", + "name": "general", + "startAt": "2017-09-24T19:33:49.235Z", + "endAt": "2019-09-24T19:33:49.235Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6cb2f859-e30b-4fe7-b272-6e00bc6c1ac7", + "creativeSets": [ + { + "creativeSetId": "dae9a3c9-f2a7-449e-9225-131a6dd23be5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2988e517-f770-4457-bcef-5f496b6a8418", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "BidClerk Official Site - Bid On Projects Today | bidclerk.com", + "title": "Bidclerk", + "targetUrl": "bidclerk.com/Services/Bidding" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "9Alas5QGK_f", + "name": "Contractor Jobs" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "abdf04bc-a1b7-4ad3-a327-ff5c33b8b6bc", + "name": "general", + "startAt": "2017-09-24T19:33:49.827Z", + "endAt": "2019-09-24T19:33:49.827Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cf970939-d255-4f55-b0f3-91640ab8ad01", + "creativeSets": [ + { + "creativeSetId": "0db906da-af12-44c0-9cd3-f0b59ca38fa1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a6f89a2e-8b98-4003-8726-d533777a93ac", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Pottery Tools | BigCeramicStore.com", + "title": "BigCeramicStore.com", + "targetUrl": "http://www.bigceramicstore.com/?utm_source=bing&utm_medium=cpc&utm_campaign=NB%3A%20HV%20-%20Pottery%20-%20Exact&utm_term=pottery&utm_content=Pottery%20-%20Exact" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "zTXZrdl4fPW", + "name": "pottery" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "18f8ad60-fa20-467a-828b-4bdd51feb4f0", + "name": "general", + "startAt": "2017-09-24T19:33:50.394Z", + "endAt": "2019-09-24T19:33:50.394Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5ead3689-f4fb-42c6-9d3e-61ce937bb4e6", + "creativeSets": [ + { + "creativeSetId": "c8a57065-38f6-4142-8209-a6c3f3896310", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ee167708-be56-4e90-967f-4be17b3e0648", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Exclusive Women's Fashion | Shop Emerging Designers‎", + "title": "Biglivesco", + "targetUrl": "www.biglives.co/ ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "cKE--V39Tbj", + "name": "clothing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1ce87d46-5e0b-4f70-8f65-2740b1253e9b", + "name": "general", + "startAt": "2017-09-24T19:33:50.969Z", + "endAt": "2019-09-24T19:33:50.970Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "48239cb8-5480-47a0-979d-0823ce39c8ee", + "creativeSets": [ + { + "creativeSetId": "69b352af-53b3-41d5-b055-8740714815e3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c02b81cd-9db5-4230-8121-b54a221b8db1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cyclo Cross up to 60% off", + "title": "Bikesdirect", + "targetUrl": "www.bikesdirect.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "2SN69khRzXf", + "name": "Cycling Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a90b57e0-ad2d-4c81-a171-43937524cf09", + "name": "general", + "startAt": "2017-09-24T19:33:51.646Z", + "endAt": "2019-09-24T19:33:51.647Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e44df1b0-f2ea-4465-a560-f1ef2f1adcdc", + "creativeSets": [ + { + "creativeSetId": "cbeb159d-e88d-4143-bdb4-e7d01dfb1238", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f130efa6-c8a7-44c1-8f06-7c5108954f2d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bird Watching - 1 Year Subscription - $26.95", + "title": "Bird-watching", + "targetUrl": "bird-watching.com-sub.biz" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "tVTtOXMuslE", + "name": "Birdwatching Equipment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "dcdcc23a-d3a5-417a-934c-ca6298686944", + "name": "general", + "startAt": "2017-09-24T19:33:52.188Z", + "endAt": "2019-09-24T19:33:52.188Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5ebb4dd6-a487-4e03-b649-731b5edd2e95", + "creativeSets": [ + { + "creativeSetId": "021a39a4-e2c4-4e44-bbe7-f5a654bc2016", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a10c5c6b-ed39-45a1-a7ec-5418e60e22a5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Birdwatching Magazine - No Tax & Free Shipping | discountmags.com", + "title": "Birdwatching Magazine", + "targetUrl": "https://www.discountmags.com/magazine/birdwatching?a=bads&offer=bads&utm_source=bing&utm_medium=cpc&utm_campaign=CPCS%20-%20DiscountMags.com%20Search&utm_term=birdwatching&utm_content=Birdwatching%20Magazine%20Subscription" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "xUURp_hHmLj", + "name": "birdwatching" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "598e9380-66b7-44a9-a662-e738051f80f5", + "name": "bowling", + "startAt": "2017-09-24T19:33:52.836Z", + "endAt": "2019-09-24T19:33:52.837Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f50f50b9-41c2-4bad-9f4b-23e0b4ee38c3", + "creativeSets": [ + { + "creativeSetId": "400892ab-9025-4ac6-86e9-5f2c91d44f2c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d532dcdd-2a84-4ae9-a98c-f3732f4a101f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2018 Cheap Bowling Gear - Shop Sports & Outdoor Gear", + "title": "Bizrate", + "targetUrl": "www.bizrate.com/Sports-Outdoor/Bowling" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "e5hD9xkeyjO", + "name": "Bowling Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a1714f3e-2e9c-4d8b-b9fe-114998b62cac", + "name": "sports", + "startAt": "2017-09-24T19:33:53.589Z", + "endAt": "2019-09-24T19:33:53.589Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bc0f9b8a-41fe-4bd0-bdf4-9a507d6a9eed", + "creativeSets": [ + { + "creativeSetId": "be5e7ec4-a571-4a7f-927b-32b5002663b3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "952d0ae6-4e2f-420e-89e6-18ccaceefece", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Snowboard Boots – Up to 75% Top Discount Deals", + "title": "Black Friday US", + "targetUrl": "http://blackfridayus.net/topic/21/snowboard+boots/?utm_campaign=xw4eYB1&utm_term=snowboarding&utm_medium=e&g_ti=kwd-303965839834&g_de=c&g_ci=363608942&g_ai=9673526289&utm_content=1" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "oZZhPIa3R15", + "name": "snowboarding" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6149bb2e-5c9c-471c-9530-2af1e7d4e862", + "name": "business", + "startAt": "2017-09-24T19:33:54.267Z", + "endAt": "2019-09-24T19:33:54.267Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e70318e2-ec7a-4269-a194-649d2bcca0fc", + "creativeSets": [ + { + "creativeSetId": "87a2bf9d-f54d-4c59-b820-b0aae4020d01", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "69243e01-4209-4d72-aeba-7dabe976d0ea", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best e mail marketing - Browse For Useful Results Here", + "title": "Blackfridayus", + "targetUrl": "blackfridayus.net/Marketing" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "rN7XjveZc4b", + "name": "Email Marketing" + } + ] + }, + { + "creativeSetId": "4109cd7d-bd8c-4e09-9b80-cde465b3aed4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6c547ece-65a3-4774-a57b-f34afe186608", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Software Automated Marketing - Most Popular Recommendations", + "title": "Blackfridayus", + "targetUrl": "blackfridayus.net/Email-Software/Automated" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "mAWzKREQPg8", + "name": "Automation Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e36afa55-c2b6-4531-92a4-32337a167a76", + "name": "general", + "startAt": "2017-09-24T19:33:55.105Z", + "endAt": "2019-09-24T19:33:55.105Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "fb81a79f-7171-4e32-b29a-428d72ac9453", + "creativeSets": [ + { + "creativeSetId": "32a6cd5a-685c-4ad4-a703-19e12d04ab26", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "84a7e484-ad0a-4127-ae0c-003a60efb44d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Classic Women's Apparel - Blair™ Official Site", + "title": "Blair", + "targetUrl": "www.blair.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "cKE--V39Tbj", + "name": "clothing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ce2b5970-3bad-460e-868f-edeeefe87f0d", + "name": "general", + "startAt": "2017-09-24T19:33:55.847Z", + "endAt": "2019-09-24T19:33:55.847Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5fbaca7c-ccd9-413b-8809-22416959f00f", + "creativeSets": [ + { + "creativeSetId": "d3c03be1-e61f-4d92-a331-65261a70a1cb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "305f7cd0-5f20-4010-b9f8-9e49bb5c4b56", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Up To 90% Off Prescriptions - As Seen On Fox, CNBC, & Today", + "title": "Blinkhealth", + "targetUrl": "www.blinkhealth.com/prescription/discount" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "sOqbf6PQ3c-", + "name": "Online Pharmacy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e0ec15be-7077-4aa4-9ace-4c2e53913d2b", + "name": "general", + "startAt": "2017-09-24T19:33:56.422Z", + "endAt": "2019-09-24T19:33:56.422Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9875cbcb-119a-47bc-9c5a-9ad4bff958c3", + "creativeSets": [ + { + "creativeSetId": "f162b135-9186-45cd-a102-35dbe526a20f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a9e82177-6395-45e3-bbc6-0457b3585938", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Easy-to-Cook Food, Delivered | Blue Apron - Get $50 Off‎", + "title": "Blueapron", + "targetUrl": "www.blueapron.com/food-delivery/food-delivery ‎" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "YnihSiXSdRZ", + "name": "Food Delivery" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1f05129a-5398-4ee5-ba4b-91621264096f", + "name": "general", + "startAt": "2017-09-24T19:33:56.992Z", + "endAt": "2019-09-24T19:33:56.993Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1661efad-fc78-4a55-93dd-19f5b5a9024e", + "creativeSets": [ + { + "creativeSetId": "c234c71e-4c58-42fe-ba37-1e106711bdc6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9133a852-9c49-4485-ad9a-31ada4497cb2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "BluePrint® Juice Cleanse - Get your detox delivered.", + "title": "Blueprint", + "targetUrl": "blueprint.com/organic/cleanse" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "lFMT5ZDQdjc", + "name": "Juice Drinks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7f319b96-ba51-46d7-8af1-3fd1baedcb3f", + "name": "general", + "startAt": "2017-09-24T19:33:57.524Z", + "endAt": "2019-09-24T19:33:57.524Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "81b21314-1647-44be-af87-142e2dd0f3e6", + "creativeSets": [ + { + "creativeSetId": "dc792f3b-30ca-4b58-a472-065c9bbabccb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "57b75537-68d7-4d16-b8bc-2296f9385af2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Charlottesville Wine Tour", + "title": "Blueridgewineexcursions", + "targetUrl": "www.blueridgewineexcursions.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "REQQSgV4UzG", + "name": "Wine" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3f1a0f1e-2542-4cb6-b27a-95c309f4e4ea", + "name": "general", + "startAt": "2017-09-24T19:33:58.093Z", + "endAt": "2019-09-24T19:33:58.093Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b7b5cdef-77ef-430e-98ed-9919743dc479", + "creativeSets": [ + { + "creativeSetId": "6407eee9-4fef-4056-a5ce-0d5cd8a347d2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "964c0e41-67cf-47cc-9be3-f0247fda8e09", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Swimming Pools | BlueWorldPools.com", + "title": "BlueWorldPools", + "targetUrl": "BlueWorldPools.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "BgfSFihlac8", + "name": "Swimming Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "196cdafa-8eb6-4808-b608-9e05c7ec53d0", + "name": "general", + "startAt": "2017-09-24T19:33:58.634Z", + "endAt": "2019-09-24T19:33:58.634Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "938c0fce-54b6-4ced-9745-65c9f3e5aca8", + "creativeSets": [ + { + "creativeSetId": "f71802b4-6418-4776-98d1-cae89269a8fc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4e672457-b251-4dac-9bc4-9d1abcb6525d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Board Game Central", + "title": "Boardgamecentral", + "targetUrl": "boardgamecentral.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "y-dD1TIXfNn", + "name": "Board Games" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b7084403-ac89-4121-83aa-0e1fba225f2e", + "name": "general", + "startAt": "2017-09-24T19:33:59.341Z", + "endAt": "2019-09-24T19:33:59.341Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "29161d03-d511-4eac-ae08-76c384689eda", + "creativeSets": [ + { + "creativeSetId": "e6aa9f7b-2346-4166-87f2-6c02d342978f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "87985653-dbf7-434c-9a46-a75d4915037a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Top Supplements - Browse Latest Sales & Specials", + "title": "Bodybuilding", + "targetUrl": "www.bodybuilding.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "5Ry6TcY_ODM", + "name": "Buy Vitamins" + } + ] + }, + { + "creativeSetId": "dd6d9850-156c-4648-ae94-be934b2558ec", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2aefe063-2ce1-40d6-aab0-4c8e302aa9a7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Bodybuilding Supplements - Helps Build & Repair Muscle", + "title": "Bodybuilding", + "targetUrl": "www.bodybuilding.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "lWAbLH7wUoL", + "name": "Nutrition Shop" + } + ] + }, + { + "creativeSetId": "73f88a8a-23af-41af-8f07-c3186ef949bf", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "01fc192d-c235-4951-a558-8a2cbd02362c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bodybuilding.com B-Elite - Free Shipping on Orders $49+", + "title": "Bodybuilding", + "targetUrl": "www.bodybuilding.com/Store/Bodybuilding" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "vVZgFB3iWow", + "name": "Bodybuilding Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9f79bcae-cdca-451b-bf46-5c716790e3df", + "name": "general", + "startAt": "2017-09-24T19:34:00.382Z", + "endAt": "2019-09-24T19:34:00.383Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8c5eec4e-fcb8-4505-bba2-dd7ab4361bd6", + "creativeSets": [ + { + "creativeSetId": "12ccef41-517c-484e-bf62-1d3b93c79e9b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "36b1f162-7b45-4d52-9582-8d54ca32c5be", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bodybuilding.com - Dymatize Elite Xt 2.2 Lbs", + "title": "Bodybuilding.com", + "targetUrl": "https://www.bodybuilding.com/store/dym/elite-xt.html?mcid=GMN_US_Products-Products_Dymatize_Elite_XT&bbkwid=295188219003" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "rCqP6OsnWxj", + "name": "bodybuilding" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "927dcd43-ab4c-452b-adb6-733d3c219220", + "name": "general", + "startAt": "2017-09-24T19:34:00.927Z", + "endAt": "2019-09-24T19:34:00.927Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "fcff337a-7c2e-4563-9058-2cca662d2817", + "creativeSets": [ + { + "creativeSetId": "6cd3bc91-cf39-4483-901c-f04e163e1dea", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6eef18de-5b40-4907-a229-d153855eb605", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Faster-Harder-Stronger-Longer - PerfectAmino & PerfectAminoXP", + "title": "Bodyhealth", + "targetUrl": "www.bodyhealth.com/pages/new-customers" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "5Ry6TcY_ODM", + "name": "Buy Vitamins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c790b6c4-6170-432c-a2d9-4b713b9a4ebe", + "name": "weight", + "startAt": "2017-09-24T19:34:01.564Z", + "endAt": "2019-09-24T19:34:01.564Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "01af1ddd-73e0-46d5-be89-5c6264be296f", + "creativeSets": [ + { + "creativeSetId": "eb8aab80-62a1-429e-a0a0-ac036f20f32d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2c0fcc5b-342d-4411-bf93-7a3383a301ec", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Menopause Weight Loss MDs - Most Highly Trained Physicians", + "title": "Bodylogicmd", + "targetUrl": "www.bodylogicmd.com/menopause/symptoms" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "125eff61-e93d-4e46-b30c-113b7dde563d", + "name": "health", + "startAt": "2017-09-24T19:34:01.920Z", + "endAt": "2019-09-24T19:34:01.920Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "01af1ddd-73e0-46d5-be89-5c6264be296f", + "creativeSets": [ + { + "creativeSetId": "f12c3958-70cb-4e65-a540-4be8784859cd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e15af54f-db16-4726-92b8-3a9a139b6c20", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find Thyroid Doctors Near You - Most Highly Trained Doctors", + "title": "Bodylogicmd", + "targetUrl": "www.bodylogicmd.com/hormones/thyroid-doctors" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "Q9F_XhEg8W_", + "name": "Thyroid Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8a9e6ea8-c4b0-472b-87ee-53d1c252f3ab", + "name": "general", + "startAt": "2017-09-24T19:34:02.472Z", + "endAt": "2019-09-24T19:34:02.472Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3e7728eb-bf75-401c-a119-0bfc6834f400", + "creativeSets": [ + { + "creativeSetId": "5468e51c-f689-4716-938a-9e8298021482", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1c014c07-6838-4ec5-bb2b-39425b5d6423", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fast Fashion for Women | Trendy Styles For Less‎", + "title": "Bombposh", + "targetUrl": "www.bombposh.com/ ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "mDuvMtm0102", + "name": "fashion" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d3a420b1-558d-4b11-8c8e-9e40954b4608", + "name": "general", + "startAt": "2017-09-24T19:34:03.119Z", + "endAt": "2019-09-24T19:34:03.119Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cc0419d4-6a47-4483-89ab-9d1bd74144e0", + "creativeSets": [ + { + "creativeSetId": "3e8d6a95-3ec8-4e9e-98d6-891808ba07da", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "34e3073e-0aab-405e-9b24-d5ce4978c99e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bonobos Joggers - Perfect Fit Starts Here", + "title": "Bonobos", + "targetUrl": "https://bonobos.com/shop/pants-and-bottoms/sweats?mrkgcl=1200&mrkgadid=3269375158&rkg_id=h-3c5404fb624b6f2e530bc5c47a2ba655_t-1517854404&utm_source=bing&utm_medium=ppc&utm_term=joggers&utm_campaign=none&cvosrc=ppc.bing.none_joggers&creative=72224211202085&device=c&matchtype=e" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "958oq_VlaY6", + "name": "jogging" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6db86f5f-f67b-4e02-95eb-de0b4b4904e3", + "name": "general", + "startAt": "2017-09-24T19:34:03.688Z", + "endAt": "2019-09-24T19:34:03.688Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3a6c50ea-a4e9-478b-8e72-cc1ebffcca9a", + "creativeSets": [ + { + "creativeSetId": "3b20e73b-fd41-4c6a-aa2e-95ecd0ef53d9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "49612052-9ed1-4e5a-9e33-18873782127a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hotels near Keeneland - Lexington. Book Now.", + "title": "Booking", + "targetUrl": "www.booking.com/Keeneland/Hotels" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "cS2Wr4k8VpH", + "name": "Horse Racing" + } + ] + }, + { + "creativeSetId": "6ff72bc6-d7ce-4f69-bed0-906d2a9c1b17", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "935ed09f-89eb-4c19-ad7e-4f102f2583e9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Booking.com: Hotel Deals - Lowest Price Guarantee", + "title": "Booking", + "targetUrl": "Booking.com/hotel-Deals" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6mVE5rciM5p", + "name": "Hotel Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "408ae46f-67fb-47a1-9743-e578e5db2e9f", + "name": "auto", + "startAt": "2017-09-24T19:34:04.518Z", + "endAt": "2019-09-24T19:34:04.518Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ac368d27-b246-4ea5-8247-0d7e87027c82", + "creativeSets": [ + { + "creativeSetId": "49ab945a-6f83-4536-8c82-22c40cf0395d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "381340ee-2d67-471a-95b4-45a3b587d2d5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Last Minute Car Rental Deals - Rental Cars from $7/Day", + "title": "Bookingbuddy", + "targetUrl": "www.bookingbuddy.com" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "TrWA-UI4zhY", + "name": "Pickup Trucks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "dd50fa19-12bd-40a2-8f5c-e0a0545e4ad2", + "name": "travel", + "startAt": "2017-09-24T19:34:05.078Z", + "endAt": "2019-09-24T19:34:05.079Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2dcc8315-4f39-420a-aca3-4d3165a6836a", + "creativeSets": [ + { + "creativeSetId": "2030005d-7e18-4683-9c33-107aa1b118a2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8a970c5f-ff1c-4cb4-8f6e-10288e366cec", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find Cheap Cruise Deals - Search and Compare Cruise Packages", + "title": "BookingBuddy", + "targetUrl": "www.BookingBuddy.com/CheapCruises" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "xrH2KKuKBDm", + "name": "Cruise Vacations" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6b2eb8f5-577e-4c0a-b93d-e1215443b58e", + "name": "travel", + "startAt": "2017-09-24T19:34:05.649Z", + "endAt": "2019-09-24T19:34:05.650Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "26c8aca8-5f8d-4606-90ca-ceb55a028c90", + "creativeSets": [ + { + "creativeSetId": "ef8cd5a2-94ac-4f9e-bb33-fdd8d8affd9c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "05b8d152-e35b-4152-9d5f-f71437991347", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Vacation Package Deals - BookIt.com", + "title": "BookIt", + "targetUrl": "www.BookIt.com/VacationPackages" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6gRfXQJbCmu", + "name": "Vacation Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "efa02afa-1dbf-4cfd-a38a-8f8775e9bf41", + "name": "pets", + "startAt": "2017-09-24T19:34:06.205Z", + "endAt": "2019-09-24T19:34:06.205Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "aa1e3669-7f1d-4531-95c0-20fc7a3e38ca", + "creativeSets": [ + { + "creativeSetId": "bc8a14d0-4f9e-425f-a920-422fc9d0aa99", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c96cf81f-de97-469a-931a-29035dab4efd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cat ID Tags - mailed in 24 hours", + "title": "Boomerangtags", + "targetUrl": "www.boomerangtags.com" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "6BRJuRThFS_", + "name": "Cat Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5c83dab4-2e9f-4c6e-bb3e-f569e5890696", + "name": "cosmetic", + "startAt": "2017-09-24T19:34:06.735Z", + "endAt": "2019-09-24T19:34:06.735Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "16263125-ccba-4389-bbed-845326ae2e49", + "creativeSets": [ + { + "creativeSetId": "d5b4663e-a309-454f-8c75-b875df61047e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1b4f27f9-9efe-4e6d-966f-fc95ddca424e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rethink Your Crows Feet - Learn about Cosmetic Treatment", + "title": "Botox Cosmetic", + "targetUrl": "https://www.botoxcosmetic.com/?cid=sem_bin_43700020074246507" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "kGkDQirkVTI", + "name": "dermatology" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2f0bcf9d-5819-4892-9b1f-b037c8b8229b", + "name": "general", + "startAt": "2017-09-24T19:34:07.611Z", + "endAt": "2019-09-24T19:34:07.611Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0fce374e-5db5-4457-899b-ab8d9d325288", + "creativeSets": [ + { + "creativeSetId": "1e7721de-3c73-4661-a71f-66ec1b3be46b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2cf7181d-c809-4699-acbe-8af716ca9a39", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "70% off Bowling Gear | bowling.com", + "title": "Bowling", + "targetUrl": "www.bowling.com/BowlingGear" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "e5hD9xkeyjO", + "name": "Bowling Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e8c6678c-a65f-48e0-bc33-bc5d493739dd", + "name": "general", + "startAt": "2017-09-24T19:34:08.190Z", + "endAt": "2019-09-24T19:34:08.190Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5f3fc667-2e9e-4f83-ad5c-84b4b194070e", + "creativeSets": [ + { + "creativeSetId": "7ba5f086-4167-404a-9bf6-d91e96b38eb4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9a9b6613-788d-424c-9306-4961fb3fd23f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "BowlingBall.com", + "title": "BowlingBall", + "targetUrl": "www.BowlingBall.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "e5hD9xkeyjO", + "name": "Bowling Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1529badf-0008-4ba0-acaa-b873a4525920", + "name": "general", + "startAt": "2017-09-24T19:34:08.735Z", + "endAt": "2019-09-24T19:34:08.735Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d3d9c252-4283-4ace-afbd-7725e8f24c17", + "creativeSets": [ + { + "creativeSetId": "78b19447-9ce2-473c-b119-1f2ddc723ec6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b09b8819-82a6-497b-b7f0-6fa2bd11393f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find Your Bowling Ball | BowlingBall.com", + "title": "BowlingBall.com", + "targetUrl": "https://www.bowlingball.com/shop/all/bowling-balls/?" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "sNk5cNO4-2b", + "name": "bowling" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "17f53989-3f3e-4d4d-b373-44411ce5b3f8", + "name": "sports", + "startAt": "2017-09-24T19:34:09.433Z", + "endAt": "2019-09-24T19:34:09.433Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bcdd5df9-54ec-406e-b935-3412f93942e4", + "creativeSets": [ + { + "creativeSetId": "2d215340-69aa-4384-b5e0-084bf343d194", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3242071b-e8ae-4149-ac47-912973cf726f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "World Championship Boxing 2018 - Tickets On Sale", + "title": "box-officetickets.com", + "targetUrl": "http://laforum.box-officetickets.com/E/e-2556139/v-671/p-8706?msclkid=7dee2769c4ff14d7c8ac7d115ff0df30&utm_source=bing&utm_medium=cpc&utm_campaign=EventsVivid_671_L.A.%20Forum_Inglewood_CA_US&utm_term=tickets%20for%20world%20championship%20boxing&utm_content=Artist_2556139_World%20Championship%20Boxing_2%2F24%2F2018" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "mIS7FQBEDRg", + "name": "boxing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "576151d7-694d-440d-8e20-7c7feefc71df", + "name": "general", + "startAt": "2017-09-24T19:34:10.064Z", + "endAt": "2019-09-24T19:34:10.065Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "82affa10-2ce0-4f8a-96f3-c0be67eb79b2", + "creativeSets": [ + { + "creativeSetId": "b2afa4a9-37ce-4763-9c3d-17280624751a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "daad780c-ffd6-4031-9369-5856d6bcab4c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Grocery Delivery Service - Bigger Sizes, Bigger Savings", + "title": "Boxed", + "targetUrl": "www.boxed.com/Grocery" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "unFLrtorUoq", + "name": "Alcohol Delivery" + } + ] + }, + { + "creativeSetId": "1093425f-e557-494e-bdfc-9ef628100259", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "35b3aa8c-58a8-457d-9bab-3a1296fe34eb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Grocery Delivery - Boxed™ - Bigger Sizes, Bigger Savings", + "title": "Boxed", + "targetUrl": "www.boxed.com/grocery" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "YnihSiXSdRZ", + "name": "Food Delivery" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a0452d02-33d5-49b0-a25e-cf118c9980dc", + "name": "general", + "startAt": "2017-09-24T19:34:10.976Z", + "endAt": "2019-09-24T19:34:10.976Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a7129767-d784-4b6c-9b6d-75edf0c30e1e", + "creativeSets": [ + { + "creativeSetId": "c0b4e62f-149a-4121-a925-0c619465ff6d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4f3582c5-19ee-4617-9bd0-232c148f3352", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pet Sitting & Dog Walking - Get a Real Pet Sitter", + "title": "Bradentonpets", + "targetUrl": "bradentonpets.com" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "x3JqE5H5N3r", + "name": "Pet Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6cd60ced-e68d-4283-828b-7392206d7782", + "name": "hobbies", + "startAt": "2017-09-24T19:34:12.022Z", + "endAt": "2019-09-24T19:34:12.022Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "754d4a08-205a-4d78-b761-1b16a9fce091", + "creativeSets": [ + { + "creativeSetId": "0b45c9c0-50ea-425d-902e-f03833e33559", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "190c4e9f-04bc-4d49-88b8-ad39afaf4452", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rare Coins - Shop Exclusive Coins - BradfordExchange.com", + "title": "BradfordExchange", + "targetUrl": "www.BradfordExchange.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "K24r-df9CcZ", + "name": "Rare Coins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b5983743-73cd-4eb4-bf0a-e3fd79e557e1", + "name": "general", + "startAt": "2017-09-24T19:34:12.573Z", + "endAt": "2019-09-24T19:34:12.573Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4edea9fd-0ecc-4702-8a60-96f2229e6521", + "creativeSets": [ + { + "creativeSetId": "f1d48094-2c16-4bab-9605-d35aee92c36a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2723d9c8-508c-495f-acd0-441f109fa587", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Personalized Wine Club - Matched To Your Tastes", + "title": "Brightcellars", + "targetUrl": "www.brightcellars.com/Quality/Wine-Club" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "REQQSgV4UzG", + "name": "Wine" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5b2d0989-39cf-4e84-b30e-62e5742208f4", + "name": "entertainment", + "startAt": "2017-09-24T19:34:13.338Z", + "endAt": "2019-09-24T19:34:13.338Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b3680028-5bdf-4b18-b772-9b59b97183c3", + "creativeSets": [ + { + "creativeSetId": "2a063079-0071-4b12-a32f-2f3f5733c6e2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "901c24e3-6266-4cdc-ab56-8177c96bcff5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "opera | History & Facts | Britannica.com", + "title": "Britannica", + "targetUrl": "https://www.britannica.com/art/opera-music" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "nTzpbbVYceV", + "name": "opera" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "30d57e45-7b51-4c74-a85b-4e12bc3d46a5", + "name": "general", + "startAt": "2017-09-24T19:34:14.113Z", + "endAt": "2019-09-24T19:34:14.113Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ce566771-bda5-4092-bd9a-ae8bbefa910d", + "creativeSets": [ + { + "creativeSetId": "ef0b8410-4908-48ff-b86b-a5d39f638038", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5270d276-c321-40e2-9b75-8c6890915c8a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Advisor Sales/Marketing Suite - Easy, Efficient, Effective", + "title": "Broadridgeadvisor", + "targetUrl": "www.broadridgeadvisor.com" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "z7floCfZA_P", + "name": "Financial Advisors" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "519ad543-1490-4a9a-81c5-0e3119504323", + "name": "general", + "startAt": "2017-09-24T19:34:14.698Z", + "endAt": "2019-09-24T19:34:14.699Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "11509b54-5a22-4121-a4a4-eba60d7057ac", + "creativeSets": [ + { + "creativeSetId": "14f6201c-e898-4898-af4a-6893750bbbbd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8cafd221-c659-4dae-83c7-a1fb1f9591f1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Brownells Outlet", + "title": "Brownells", + "targetUrl": "www.Brownells.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "5nUrFtckCYM", + "name": "Kayaking Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a85f7678-fa3f-42cb-8f7f-2872ea240ada", + "name": "general", + "startAt": "2017-09-24T19:34:15.392Z", + "endAt": "2019-09-24T19:34:15.392Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9e54633e-d582-49b6-977b-b2fd05a95496", + "creativeSets": [ + { + "creativeSetId": "3e5821fd-f37f-4d39-83a9-8e51b0cf10c7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e90f01c4-3b82-432c-9073-dafee17c2bf7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bryant & Stratton® College - College Online Degrees", + "title": "BryantStratton", + "targetUrl": "online.bryantstratton.edu/Degrees" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "ANs-xRChItO", + "name": "College Degrees Online" + } + ] + }, + { + "creativeSetId": "25298756-fe8c-4dee-95e2-2dcc1cd57d60", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "88dd0a05-99a0-4ef8-bb3a-14dc1c0b47e2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bryant & Stratton® College - Online College Courses", + "title": "BryantStratton", + "targetUrl": "online.bryantstratton.edu/Online-Courses" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "rNd-q2umuLA", + "name": "IT Online Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1bea686f-2e7c-471a-b23c-326ac2ef5214", + "name": "general", + "startAt": "2017-09-24T19:34:16.204Z", + "endAt": "2019-09-24T19:34:16.204Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4ff9db25-3861-4a81-859f-e4656f617757", + "creativeSets": [ + { + "creativeSetId": "0a34bdc6-e148-4477-b540-7d6445a6e8de", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ea2eb993-af68-468f-a6b6-aab221b562a4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Gas BBQ Grills - Free Shipping Offers Online", + "title": "Build", + "targetUrl": "build.com/BBQ_Grills" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "w2RZcyzoMxq", + "name": "Barbecues" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8d17ebdc-eba8-42f6-b673-246e88432e65", + "name": "general", + "startAt": "2017-09-24T19:34:17.030Z", + "endAt": "2019-09-24T19:34:17.030Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ccd9ea5e-921d-48f1-bbeb-ef81e827b561", + "creativeSets": [ + { + "creativeSetId": "60356951-df5b-411f-b9f9-61f8b43e0a59", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "774663d0-38e4-4920-b547-d966fb415fa9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Custom Championship Belts", + "title": "Buildurbelt", + "targetUrl": "www.buildurbelt.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "J5bdxnl4xfj", + "name": "Wrestling Belts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5389a192-607a-4b57-ac23-c387633d528d", + "name": "general", + "startAt": "2017-09-24T19:34:17.809Z", + "endAt": "2019-09-24T19:34:17.809Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "04b9b94f-041c-4e2d-bdc2-075ccd6ec1ae", + "creativeSets": [ + { + "creativeSetId": "af7fbd00-0adf-4c04-bb3b-484bd557dfa4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "51346c94-edd3-4fc8-984a-2f94d5eeaada", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buitoni® Pastas - Flavor You Can't Miss", + "title": "Buitoni", + "targetUrl": "www.buitoni.com/Pasta/Products" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "AqMmPbWQnUE", + "name": "Fresh Pasta" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b8ae20e2-4bf4-4438-a0a2-9cd9eb8ffac5", + "name": "general", + "startAt": "2017-09-24T19:34:18.494Z", + "endAt": "2019-09-24T19:34:18.494Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "14136c10-a409-4936-9258-e4288a65cdfa", + "creativeSets": [ + { + "creativeSetId": "32b2d40c-e92b-4b34-856c-e7ac64c25a4d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6975f215-c4b4-491d-9553-b472b904312c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Reef Aquarium Supplies - Official Store - Earn 5% Back", + "title": "Bulkreefsupply", + "targetUrl": "www.bulkreefsupply.com/Aquarium/Supplies" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "T2fnJ3M0GxS", + "name": "Aquarium Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9ff22255-6ddc-451b-bc09-d85378c65f20", + "name": "general", + "startAt": "2017-09-24T19:34:19.323Z", + "endAt": "2019-09-24T19:34:19.323Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "38ae64bd-6569-4858-b3f2-b702c28209d4", + "creativeSets": [ + { + "creativeSetId": "6f14b943-a2b6-4ec6-a71c-0e4787c13160", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "79e443b7-2bdf-435e-ae5d-ee9d73d4afdc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bull BBQ® Products - Low Prices Guaranteed | bullbbqdepot.com", + "title": "Bullbbqdepot", + "targetUrl": "www.bullbbqdepot.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "w2RZcyzoMxq", + "name": "Barbecues" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bcf8a642-bc25-45f7-b9e7-96aa5359bf85", + "name": "general", + "startAt": "2017-09-24T19:34:19.987Z", + "endAt": "2019-09-24T19:34:19.987Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0552d46c-395c-4648-922b-9d34bcb39916", + "creativeSets": [ + { + "creativeSetId": "058cfb43-bc6e-4b0b-9946-9517d8f2b17e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2055c783-874d-4ec2-9e0e-12e43dc40069", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Burlington Stores Online - Save Big - New Items Every Day", + "title": "Burlington", + "targetUrl": "www.burlington.com/Burlington/Online_Store" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "obV7ryiIRW4", + "name": "beauty" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "be610579-95a9-4ceb-9db3-0024ec3b5f41", + "name": "general", + "startAt": "2017-09-24T19:34:20.613Z", + "endAt": "2019-09-24T19:34:20.613Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a0fc9a9e-4cca-4bcc-a3c0-d0be07ffd636", + "creativeSets": [ + { + "creativeSetId": "2d3ed50b-e485-4681-b3f1-b9acfdfe2c4d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "832355a0-1156-4d24-a808-f41174785027", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Europe Business Class Flights - Fly Business Class from $2,695", + "title": "Businessclassguru", + "targetUrl": "www.businessclassguru.com/Europe/Business Class" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "lvYt-vwY0ml", + "name": "Travel Tours" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "30fd3530-1265-46e4-94e4-5b4a6e6d51e6", + "name": "general", + "startAt": "2017-09-24T19:34:21.360Z", + "endAt": "2019-09-24T19:34:21.360Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "202b71a6-08f5-4450-bce0-49d6a8bacef6", + "creativeSets": [ + { + "creativeSetId": "ab3ef99f-c786-4bb6-8e6a-aa286cc59963", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "89e59858-6e26-42ee-87f6-5f917dc2f5d2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Zoom Tubes Car Trax - RC Car Trax Set - Special Offer $29.9", + "title": "Buyzoomtubes", + "targetUrl": "buyzoomtubes.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "eJu7bz6XQx4", + "name": "RC Vehicles" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f361cd00-f2f1-43ae-84ba-848f1bf19b03", + "name": "archery", + "startAt": "2017-09-24T19:34:21.913Z", + "endAt": "2019-09-24T19:34:21.913Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6421e6c2-7866-4497-a396-6d9e84927bc4", + "creativeSets": [ + { + "creativeSetId": "55a59236-6be4-41c0-b313-6a93ccef4663", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c0d69382-7062-4537-b503-c46dc0f657b1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Archery How To - Cabelas.com", + "title": "Cabela's", + "targetUrl": "http://www.cabelas.com/catalog/browse.cmd?N=1100003&WT.srch=1&WT.tsrc=PPC&rid=20&WT.mc_id=GEMINI%7cArc_general_Archery+2%7cUSA&WT.z_mc_id1=43700012267723929&gclid=CNuPxbOxj9kCFYY-fwod2p8HTg&gclsrc=ds" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "BGpjwaMJ2PM", + "name": "archery" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3ffd597c-c4eb-4046-a033-c7b6c9c1fff1", + "name": "general", + "startAt": "2017-09-24T19:34:22.210Z", + "endAt": "2019-09-24T19:34:22.210Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6421e6c2-7866-4497-a396-6d9e84927bc4", + "creativeSets": [ + { + "creativeSetId": "6fa0b89f-a716-4db4-92bf-55a4af7531e7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "92e6cff7-4df4-4624-8fca-2bb6a0ea0ef5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fly Fishing Vises - Cabelas.com", + "title": "Cabela's", + "targetUrl": "http://www.cabelas.com/category/Tools-Vises/103884480.uts?WT.srch=1&WT.tsrc=PPC&rid=20&WT.mc_id=[YGM]%7cfly_Fly-Tying_Tools+%2F+Vises%7cUSA&WT.z_mc_id1=43700012258681996&gclid=CJH4i8C-j9kCFScdfgodfGgFjA&gclsrc=ds" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "CKToTJX1s1a", + "name": "fishing" + } + ] + }, + { + "creativeSetId": "4df7e94c-1dbe-4668-9226-f2aa0422d461", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6851f59c-f121-4831-be29-76cc9a73611d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cabela's - Hunting - Cabelas.com", + "title": "Cabela's", + "targetUrl": "http://www.cabelas.com/ghome.jsp?WT.srch=1&WT.tsrc=PPC&rid=20&WT.mc_id=Bing%7chun_General_General_exact%7cUSA&WT.z_mc_id1=43700010023781754&gclid=CJDDnbK-j9kCFc4EfwodkuACMQ&gclsrc=ds" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "KBqycgp9QJx", + "name": "hunting" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f5011a52-7760-480b-9967-5741b01c169e", + "name": "archery", + "startAt": "2017-09-24T19:34:22.990Z", + "endAt": "2019-09-24T19:34:22.990Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7d72bec6-7696-4426-9535-56fba334d52c", + "creativeSets": [ + { + "creativeSetId": "8ad92f27-9dfb-4b8c-a22a-71141acf870a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e120bdb0-7815-488c-93ae-ef968b6190e8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Archery Logbows", + "title": "Cabelas", + "targetUrl": "www.Cabelas.com/Bows" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "MaS1t2gzIou", + "name": "Archery Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b33f3856-9c02-4e50-a516-e61351080229", + "name": "general", + "startAt": "2017-09-24T19:34:23.442Z", + "endAt": "2019-09-24T19:34:23.442Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7d72bec6-7696-4426-9535-56fba334d52c", + "creativeSets": [ + { + "creativeSetId": "5e69a1a7-add6-41e9-88e0-27f7abcc41f3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "75e5945e-b95f-419c-b21f-ebf35d6cfa22", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cabela's?? Official Site - Hunting, Fishing, Outdoor Gear", + "title": "Cabelas", + "targetUrl": "www.cabelas.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "5rrqOyiLvSS", + "name": "Hunting Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8480db6f-943c-4fa9-baba-afac46c3a684", + "name": "hobbies", + "startAt": "2017-09-24T19:34:23.998Z", + "endAt": "2019-09-24T19:34:23.998Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "831f5d54-2bfa-4047-8528-ad72de7918f7", + "creativeSets": [ + { + "creativeSetId": "e1648e3c-b58c-4a0c-a392-f2dcc3a21bb6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f18cc1f4-af2f-401b-8e55-f33c9f92aaff", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Bird Watching Gear - For Every Sport and Hobby", + "title": "Cafepress", + "targetUrl": "www.cafepress.com/apparel/Bird Watching" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "tVTtOXMuslE", + "name": "Birdwatching Equipment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "041961b4-133e-403d-88d8-01cb765e5007", + "name": "pets", + "startAt": "2017-09-24T19:34:24.337Z", + "endAt": "2019-09-24T19:34:24.337Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "831f5d54-2bfa-4047-8528-ad72de7918f7", + "creativeSets": [ + { + "creativeSetId": "4ffaf57d-49a1-426d-abe3-371edd4aa3da", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "50600747-8817-4b8b-bc2f-ed1272a9d765", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Pet Store Merchandise - Tons of Animal Themed Designs", + "title": "Cafepress", + "targetUrl": "www.cafepress.com/PetStore/apparel" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "x3JqE5H5N3r", + "name": "Pet Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "385471df-bcea-4f9a-ab65-6ebaf1caee6e", + "name": "sports", + "startAt": "2017-09-24T19:34:24.658Z", + "endAt": "2019-09-24T19:34:24.658Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "831f5d54-2bfa-4047-8528-ad72de7918f7", + "creativeSets": [ + { + "creativeSetId": "5e7167ea-d5f0-424f-bcf2-5b989867666a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4646a99a-0dd8-4814-aac9-5482bc4ee664", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Climbing Gear - For Every Sport and Hobby", + "title": "Cafepress", + "targetUrl": "www.cafepress.com/apparel/Climbing" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "zJrrQvnmCnp", + "name": "Climbing Gear" + } + ] + }, + { + "creativeSetId": "9acecd3c-d512-4785-9066-13de27b4aac7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "37fbb47b-7ace-47c3-a53a-95588c5294e7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rowing gear", + "title": "Cafepress", + "targetUrl": "www.cafepress.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "YGCofQVxBiL", + "name": "Rowing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "84095790-b621-4539-8ca6-cd787dc85700", + "name": "general", + "startAt": "2017-09-24T19:34:25.788Z", + "endAt": "2019-09-24T19:34:25.788Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2e502ab7-8f79-41ab-8689-4749efbd9c56", + "creativeSets": [ + { + "creativeSetId": "3ccd3a29-5fd8-45be-8649-dd3deef5442a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4a7e6618-d3d4-48f9-9c8f-e84316387a0a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "California Pet Pharmacy - Free Shipping On Orders $100+", + "title": "CaliforniaPetPharmacy", + "targetUrl": "CaliforniaPetPharmacy.com" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "x3JqE5H5N3r", + "name": "Pet Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cc4c2422-9c33-442b-8d07-fadde09e23ee", + "name": "general", + "startAt": "2017-09-24T19:34:26.379Z", + "endAt": "2019-09-24T19:34:26.379Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "24f8d378-be19-474c-8c10-dcc11efd4fd2", + "creativeSets": [ + { + "creativeSetId": "06de2134-01fa-4bc8-aa22-daae0af4ab33", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "923fe3c6-8391-483b-a4ab-8699d15fe7be", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cut Calories With Calocurb™ | Works In 1 Hour‎", + "title": "Calo-curb", + "targetUrl": "www.calo-curb.com/ ‎" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "98d73698-bc7e-471d-b86e-099cee339059", + "name": "general", + "startAt": "2017-09-24T19:34:27.217Z", + "endAt": "2019-09-24T19:34:27.218Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9877a95a-4b1c-424d-8ba8-f17d39abb142", + "creativeSets": [ + { + "creativeSetId": "300640eb-729d-4c9f-bb8f-a2f5f9fee86e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "625b2298-ad23-4502-ae98-7d954da398b9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rare Currency Appraisal - Located In Vienna, VA", + "title": "Cameocoinsonline", + "targetUrl": "www.cameocoinsonline.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "K24r-df9CcZ", + "name": "Rare Coins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5d8e9e82-2d45-4930-9ef7-28f571e2f24c", + "name": "general", + "startAt": "2017-09-24T19:34:27.874Z", + "endAt": "2019-09-24T19:34:27.874Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9faf5330-cb7d-47d3-aafa-5971547235fb", + "creativeSets": [ + { + "creativeSetId": "2d2a0239-ff44-493c-80d8-a35ca754b7c8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ca7e4d92-0c53-4fae-8fb1-86e176a312b1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Campbell's® Cooking Recipes - Dinner Solved. | campbells.com", + "title": "Campbells", + "targetUrl": "www.campbells.com/Kitchen" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "9Roh9lJ0tSd", + "name": "Cooking Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "54c4f6b5-f937-4248-afc1-aa5316d8813c", + "name": "general", + "startAt": "2017-09-24T19:34:28.427Z", + "endAt": "2019-09-24T19:34:28.427Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4ab22dde-a0b4-4c5f-8ebd-8e8f0f9e087c", + "creativeSets": [ + { + "creativeSetId": "26483d42-248c-4f83-926f-56102764879c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "64f236d0-6de9-4ee6-8abf-6ed0d9c2e31d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Information About Cancer - Get the Information You Need", + "title": "Cancer Center", + "targetUrl": "https://www.cancercenter.com/what-is-cancer/?source=BNGPS01&channel=paid%20search&invsrc=Non_Branded_Paid_Search_Bing_General_Search&utm_device=c&utm_budget=Corporate&utm_site=BING&utm_campaign=Non%20Brand%3ECancer%3EGeneral-Search%20Partners&utm_adgroup=General%3ECancer%3EExact&utm_term=cancer&utm_matchtype=e&k_clickid=56c066ae-6ff7-47a2-b165-7479b03cbea8&k_profid=422&k_kwid=4395939&s_kwcid=AL!5274!10!73873538646305!73873491388839&ef_id=WmZBUAAAAF4YWyKh:20180206005629:s" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "pLI44XmPdot", + "name": "cancer" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "014ce844-3a32-493b-8b60-9e2630ac4ff4", + "name": "general", + "startAt": "2017-09-24T19:34:29.144Z", + "endAt": "2019-09-24T19:34:29.144Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6eb2584f-ebb9-44ac-acee-b75831eca769", + "creativeSets": [ + { + "creativeSetId": "a2b69ce0-6f15-45a6-8a4b-c36fb542eb8a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "35306dc0-6006-4bf4-9b46-c01c42e8235f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "CTCA?? Expert Cancer Care - Information About Cancer", + "title": "Cancercenter", + "targetUrl": "www.cancercenter.com/Cancer/Learning" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "An9yYZl6Px3", + "name": "Cancer Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c7103e3c-1307-4078-9070-131f6754b38f", + "name": "generales", + "startAt": "2017-09-24T19:34:29.745Z", + "endAt": "2019-09-24T19:34:29.746Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b0e70bec-7263-4fa5-a4fc-9c05dd166a68", + "creativeSets": [ + { + "creativeSetId": "ebd79678-94d0-4749-9f49-05814e1b1271", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "54dfc8d8-5380-489f-8c8e-8ae6c1e323da", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "New Supercharged Treatment - Cancer's Worst Nightmare???", + "title": "Cancerfightingstrategies", + "targetUrl": "cancerfightingstrategies.com/Natural-Cancer/Treatments" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "An9yYZl6Px3", + "name": "Cancer Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6b6a73f2-e688-403e-b82f-df703f76c0e9", + "name": "classes", + "startAt": "2017-09-24T19:34:30.295Z", + "endAt": "2019-09-24T19:34:30.296Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e4a18b08-41a3-4481-b79d-e430768e8570", + "creativeSets": [ + { + "creativeSetId": "566dfb2d-8cda-4339-a72e-0dce9a86d3d6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c6ba625f-56ae-4c3f-b4e3-de7ab618413d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online Adobe Classes - Information for You | candofinance.com", + "title": "Candofinance", + "targetUrl": "www.candofinance.com/Online Adobe Classes/Info" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "HJWyQTrQEe3", + "name": "Adobe Courses" + } + ] + }, + { + "creativeSetId": "fa956287-73db-4ee0-9fa5-a1724a55850c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "59c6d92b-e162-4108-8490-a6f58c58af16", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "About Strayer University - Information for You", + "title": "Candofinance", + "targetUrl": "www.candofinance.com/About Strayer University/Info" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "ANs-xRChItO", + "name": "College Degrees Online" + } + ] + }, + { + "creativeSetId": "894ce5c2-83e4-4256-9be7-158b7b7e8fa3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "07c78f98-1692-4f53-85a3-c35f770e1fc3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online Biology Course - Information for You", + "title": "Candofinance", + "targetUrl": "www.candofinance.com/Online Biology Course/Info" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "zVMz-LlY_xf", + "name": "Biology Education" + } + ] + }, + { + "creativeSetId": "6f6d43a7-7d02-4411-ab09-a06546e0444d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "742eccc6-0248-42b3-a51f-507b2fb88d07", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Ap Chemistry Khan Academy - Results Here", + "title": "Candofinance", + "targetUrl": "www.candofinance.com/Find/Ap Chemistry Khan Academy" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "Q1LjD-it3o5", + "name": "Chemistry Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "42fc5711-d8b3-4e97-a6f6-58f11af3d7e7", + "name": "auto", + "startAt": "2017-09-24T19:34:31.565Z", + "endAt": "2019-09-24T19:34:31.565Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e4a18b08-41a3-4481-b79d-e430768e8570", + "creativeSets": [ + { + "creativeSetId": "7053f0c4-5a67-41d3-b05a-501f4c2f58ca", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ceab4ed4-ce2d-4fd0-a1ac-8dc5aae365e0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "New Cars - Information Here - Search More Results Here", + "title": "Candofinance", + "targetUrl": "www.candofinance.com/New Cars/Results" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "tGlEpkd2UFQ", + "name": "New Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "43a48bc1-fd50-4b38-a773-9b1fd45302ce", + "name": "biotech", + "startAt": "2017-09-24T19:34:31.890Z", + "endAt": "2019-09-24T19:34:31.890Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e4a18b08-41a3-4481-b79d-e430768e8570", + "creativeSets": [ + { + "creativeSetId": "9f66bc7c-79b2-4866-a363-39839d7f27b0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "243bd52a-8dec-446a-af4c-f71f6cb485b5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Biotech Supplies - Information for You", + "title": "Candofinance", + "targetUrl": "www.candofinance.com/Biotech Supplies/Info" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "vPlAftFRlgO", + "name": "Biotech Business" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fae5ca5a-b0d4-4453-be04-ed0d0b929ecd", + "name": "business", + "startAt": "2017-09-24T19:34:32.215Z", + "endAt": "2019-09-24T19:34:32.215Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e4a18b08-41a3-4481-b79d-e430768e8570", + "creativeSets": [ + { + "creativeSetId": "54ac2fc0-ec76-462e-9bb9-6a511c4ef3b2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fbac2a4c-d844-46e4-8e1f-07b006eb6d4e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Emailing Marketing - Information for You", + "title": "Candofinance", + "targetUrl": "www.candofinance.com/Emailing Marketing/Info" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "rN7XjveZc4b", + "name": "Email Marketing" + } + ] + }, + { + "creativeSetId": "daf01aab-1e02-443d-9b1c-b86af319317f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4bb9269a-550c-4332-ad3f-f2e269949ac8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fuel Cards - Information for You | candofinance.com", + "title": "Candofinance", + "targetUrl": "www.candofinance.com/Fuel Cards/Info" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "OAA-T668LRa", + "name": "Fuel Cards" + } + ] + }, + { + "creativeSetId": "6ddeee97-3480-4dad-ba59-451d5be25cb9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1949931f-a33a-4f4f-b512-5e19cd7473bf", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find A Lawyer - Candofinance.com Results | candofinance.com", + "title": "Candofinance", + "targetUrl": "www.candofinance.com/Find/Find A Lawyer" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "E_MEtpVexy1", + "name": "Find a Lawyer" + } + ] + }, + { + "creativeSetId": "709d9ab4-bef8-4ea9-9c24-139ece7f2e52", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a7288636-150a-4395-b3e9-e3c27b833239", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sap Small Business Solutions - Results Here | candofinance.com", + "title": "Candofinance", + "targetUrl": "www.candofinance.com/Find/Sap Small Business Solutions" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "UCCrJnLnO8s", + "name": "SAP Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8d6e22f8-15d8-4302-98b0-2c9c8f8ccd63", + "name": "home", + "startAt": "2017-09-24T19:34:33.528Z", + "endAt": "2019-09-24T19:34:33.529Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e4a18b08-41a3-4481-b79d-e430768e8570", + "creativeSets": [ + { + "creativeSetId": "b9d7f8f5-a141-4c2c-8b67-f18f01ba75fa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c5b95a97-efd2-46f5-84c6-3e459ec6ae98", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Living Room Furniture Sale - Candofinance.com Results", + "title": "Candofinance", + "targetUrl": "www.candofinance.com/Find/Living Room Furniture Sale" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "JdIppC2dyV9", + "name": "Home Furniture" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f719150d-19a6-44fb-b34f-ae3a03749376", + "name": "jewelry", + "startAt": "2017-09-24T19:34:33.861Z", + "endAt": "2019-09-24T19:34:33.861Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e4a18b08-41a3-4481-b79d-e430768e8570", + "creativeSets": [ + { + "creativeSetId": "9ec3ebd8-acf4-41ce-a8d2-402a925bc5d5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0f438544-c1cf-4465-ab7f-df2791bd7ace", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pearl Necklace Jewelry - Results Here | candofinance.com", + "title": "Candofinance", + "targetUrl": "www.candofinance.com/Find/Pearl Necklace Jewelry" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6136074e-25cd-4f77-9871-e955eacd0250", + "name": "hobbies", + "startAt": "2017-09-24T19:34:34.194Z", + "endAt": "2019-09-24T19:34:34.194Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e4a18b08-41a3-4481-b79d-e430768e8570", + "creativeSets": [ + { + "creativeSetId": "e03a2caf-09ae-4764-807f-85868c4d18f5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4703d122-97e1-4e00-89e7-d90383f9a246", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Metalwork Supplies - Information Here", + "title": "Candofinance", + "targetUrl": "www.candofinance.com/Metalwork Supplies/Results" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "kORnSRyr0FJ", + "name": "Metalwork Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "26b4ece3-e33a-49dd-b45f-80dc42234791", + "name": "classes", + "startAt": "2017-09-24T19:34:34.802Z", + "endAt": "2019-09-24T19:34:34.802Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0fc9d157-77a6-44c3-b372-04e5f531a329", + "creativeSets": [ + { + "creativeSetId": "9efc76e2-d335-4f45-b904-14c046226f57", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9ebeb3da-69e9-49b0-927a-17826bf9b3cd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Psychology Degrees Online - Earn A BS Or MS In 12 Months", + "title": "Capella", + "targetUrl": "www.capella.edu/psychology/degrees-online" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mTbLUekRxb3", + "name": "Psychology Degree" + } + ] + }, + { + "creativeSetId": "f0f854d8-ffd3-4e01-928b-910a6a7ccef6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "708d9aa1-f2aa-41c6-a996-7435f22cebe8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Information Technology Degree - Harness Your Potential In IT", + "title": "Capella", + "targetUrl": "www.capella.edu/it/degrees-online" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "rNd-q2umuLA", + "name": "IT Online Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2385c334-d555-4c68-abe4-2625414cf24e", + "name": "business", + "startAt": "2017-09-24T19:34:35.932Z", + "endAt": "2019-09-24T19:34:35.932Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d3681e9d-6aaa-474a-8115-ecd41273ddcd", + "creativeSets": [ + { + "creativeSetId": "c823b6a3-e6da-44fc-baa2-ea1b0f3af62a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f6d613b2-6ef9-47cd-90a9-06c97d0a76f4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2X Miles, Fly Any Airline - Apply for Unlimited 2X Miles", + "title": "Capitalone", + "targetUrl": "www.capitalone.com/CreditCards/MilesRewards" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "OAA-T668LRa", + "name": "Fuel Cards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ec38c6af-293a-4584-91eb-fe14706824a5", + "name": "general", + "startAt": "2017-09-24T19:34:36.531Z", + "endAt": "2019-09-24T19:34:36.531Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "43ca387c-0fbb-4b89-af7f-07c09eea19f9", + "creativeSets": [ + { + "creativeSetId": "81d12590-5e44-477a-af6f-cb9262353f4e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b1a52190-5881-4614-8b6a-aa2c69e15936", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Play Free. Drink Free. - Capri Sun Original Juice Drink", + "title": "Capri Sun", + "targetUrl": "http://parents.caprisun.com/en/juice-drinks/original?gclid=CNGhsvyTg9kCFfAZfgodsPcHkQ&gclsrc=ds" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "I4525i_bbwL", + "name": "fruit" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "28045ecc-9eaf-4f97-b3cd-8e324c592d4b", + "name": "general", + "startAt": "2017-09-24T19:34:37.268Z", + "endAt": "2019-09-24T19:34:37.269Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "518f6fd9-3298-4d30-bbcd-5484ab6cf752", + "creativeSets": [ + { + "creativeSetId": "c9881e40-0e2c-48fc-840d-f2b5fbaabe8a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9334500e-3664-4c89-ace3-83deb1d310f9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 10 Automation Software - Get a Free List of Top Systems", + "title": "Capterra", + "targetUrl": "www.capterra.com/Automation/Free-List" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "mAWzKREQPg8", + "name": "Automation Software" + } + ] + }, + { + "creativeSetId": "c2148aa9-583c-4dca-b9ec-a195080e4285", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "09cdf4db-fa0b-4d7b-9c52-44861d7e4d11", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 10 Inventory Mgmt Software - Free Streamlined Systems List", + "title": "Capterra", + "targetUrl": "www.capterra.com/Inventory-Mgmt/Free-List" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "2QJW6dTCw6z", + "name": "Inventory Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d3d656c0-2ccf-4e13-a667-5f967efa01dc", + "name": "general", + "startAt": "2017-09-24T19:34:38.172Z", + "endAt": "2019-09-24T19:34:38.172Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6bac7563-8ee2-44f7-9db9-e7071489f1b9", + "creativeSets": [ + { + "creativeSetId": "c9fc5b83-7019-4647-89b4-6902c259b829", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f1045ae5-066b-43e7-b3b8-b0cfffce39c8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "New 2017 Car Clearance - Huge Price Cuts on New Cars", + "title": "Car", + "targetUrl": "New-Car-Clearance.Car.com" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "tGlEpkd2UFQ", + "name": "New Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8b571698-f35d-4866-86ba-13f7fff0fbcb", + "name": "general", + "startAt": "2017-09-24T19:34:38.759Z", + "endAt": "2019-09-24T19:34:38.759Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "fd586ea5-e43f-489b-b44c-8aa67a0005f6", + "creativeSets": [ + { + "creativeSetId": "5a64be2a-687d-4a72-86ef-a0e1df77114c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6fdc8dd8-c45a-49a3-850f-16df16037284", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hatchbacks 2017-2018: The Best and the Rest - Car and Driver", + "title": "Car and Driver", + "targetUrl": "https://www.caranddriver.com/best-hatchbacks" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "u86uKZZM65L", + "name": "hatchbacks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e6158f1e-adc2-40c0-a1f6-7b72e47e70e3", + "name": "general", + "startAt": "2017-09-24T19:34:39.489Z", + "endAt": "2019-09-24T19:34:39.489Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e82dff3c-e9f0-41a9-be10-8ebf4bac7c3b", + "creativeSets": [ + { + "creativeSetId": "8dfde724-ae39-45e4-a129-6a893a71247c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7b2a7304-ddd6-4d95-b5ec-6844ecf9532c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2017 Ford Clearance - Huge Markdowns This Month", + "title": "Car.com", + "targetUrl": "https://dealers.car.com/bing/ford?ukwid=92e8d01a-7585-40f2-8f2d-438b0b1a6274&urefid=9&udv=c&utm_medium=cpc&utm_campaign=Ford&utm_source=bing&utm_term=ford&msclkid=4ad800e8b57f1f9ae2b75a905f02924e&utm_content=Ford&gclid=CNmhisD4j9kCFSEZfgod500Ovg&gclsrc=ds" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "xtn0wJmAMoC", + "name": "car brands" + } + ] + }, + { + "creativeSetId": "3aef7b73-0185-4ef9-ba45-f50b2628f343", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7e51f586-2e10-452f-9cb6-f00a26ebba96", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "February Truck Clearance - Huge Markdowns on New Trucks", + "title": "Car.com", + "targetUrl": "https://dealers.car.com/yahoo-truck/?ukwid=90dce6e9-92a2-4e52-8d85-e702fc1b76c7&udv=c&urefid=3&gclid=CIiM2dD4j9kCFRHkfgodTeEDHw&gclsrc=ds" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "TrWA-UI4zhY", + "name": "Pickup Trucks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "58e828ca-4173-4bbe-b2a4-c7eab746a30b", + "name": "general", + "startAt": "2017-09-24T19:34:40.686Z", + "endAt": "2019-09-24T19:34:40.687Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2eb612ab-09de-46a3-839a-e923883d99d5", + "creativeSets": [ + { + "creativeSetId": "9cac189e-b4ad-4ad2-aa3d-fd1493e86604", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b72a060e-11e5-4b4b-86d7-446d3c780c55", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Caravan Tours - Guided Tours Since 1952.", + "title": "Caravan", + "targetUrl": "www.caravan.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "lvYt-vwY0ml", + "name": "Travel Tours" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c3965507-1dbe-4053-a95a-2a0927eddc67", + "name": "general", + "startAt": "2017-09-24T19:34:41.241Z", + "endAt": "2019-09-24T19:34:41.241Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "412efbfb-b59a-4182-9197-3b71a074b25c", + "creativeSets": [ + { + "creativeSetId": "4e4cd414-687d-44f6-ab5d-1b6f59d27280", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d6974fc3-d92a-4279-a1f5-315507219628", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "CareerBuilder® Job Search - CareerBuilder.com", + "title": "CareerBuilder", + "targetUrl": "CareerBuilder.com/Jobs" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "2YtFT0-MFv1", + "name": "Job Search" + } + ] + }, + { + "creativeSetId": "54d024f6-d841-4f9b-881b-cd4fb2f5a768", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6487d2e0-3611-48c0-93ce-a58d41ef893a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "CareerBuilder.com - Employment & Job Search Web Site", + "title": "CareerBuilder", + "targetUrl": "CareerBuilder.com/Jobs" + } + } + ], + "segments": [ + { + "code": "6QLcn3Fnca-", + "name": "Careers" + }, + { + "code": "AkN_-chsgWP", + "name": "Find Work" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fce7f94f-a2db-4c9e-afe8-ba1b4093b987", + "name": "general", + "startAt": "2017-09-24T19:34:42.077Z", + "endAt": "2019-09-24T19:34:42.077Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0efbc8fd-a0df-48bc-9f30-17de922d0c25", + "creativeSets": [ + { + "creativeSetId": "465dce3f-4d3b-40bc-bc0d-36394cd97bf0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "03ec6171-ddfc-443c-a00f-7dac11fff219", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "CARFAX® Used Car Listings", + "title": "CARFAX", + "targetUrl": "www.CARFAX.com/Cars_For_Sale" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "b4xuJT0IZ_f", + "name": "Used Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "224b9b03-064e-437d-bc9c-92f4e8c61381", + "name": "general", + "startAt": "2017-09-24T19:34:42.785Z", + "endAt": "2019-09-24T19:34:42.786Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cea3ffc0-1381-460b-9cae-af3772cf845d", + "creativeSets": [ + { + "creativeSetId": "95472f54-aae7-49ad-9daa-776b4c99d0be", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4c21eee1-6f9d-4359-ac7b-656fb79cc08f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Used Cars For Sale - The Right Car And Right Price", + "title": "Cargurus", + "targetUrl": "www.cargurus.com" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "b4xuJT0IZ_f", + "name": "Used Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9d14a2f1-8c3e-4939-bdee-36c9f47f0d72", + "name": "general", + "startAt": "2017-09-24T19:34:43.344Z", + "endAt": "2019-09-24T19:34:43.344Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f714f867-430f-4b7f-923e-8963ab27ba1a", + "creativeSets": [ + { + "creativeSetId": "cc39d6d8-d382-4240-8115-3beb714fc0d2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3c8a153b-2160-4111-a953-ac2ab09ce126", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Auto Parts - Auto Parts & Accessories | carid.com", + "title": "Carid", + "targetUrl": "www.carid.com/Auto" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "px5LkO5yZzb", + "name": "Auto Parts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2d27f0a9-aef0-41a6-b23e-c2037c168f99", + "name": "general", + "startAt": "2017-09-24T19:34:44.037Z", + "endAt": "2019-09-24T19:34:44.037Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "669196b8-d966-46a3-9498-b5ed7d3a1ac7", + "creativeSets": [ + { + "creativeSetId": "1084e683-78fe-404d-a784-211106090938", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e398c49d-4188-4ce3-af7d-b4ab2976f305", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Used Pickups At CarMax - Find A Large Selection | carmax.com", + "title": "Carmax", + "targetUrl": "www.carmax.com" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "TrWA-UI4zhY", + "name": "Pickup Trucks" + } + ] + }, + { + "creativeSetId": "3e211622-8aaf-48fa-bbe4-ed4499fd80d0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b0b6e2d7-d7c4-4b8a-969c-a7ee2cddca87", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Looking For Used Cars Nearby? - Find Used Cars For Less Here", + "title": "Carmax", + "targetUrl": "www.carmax.com" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "b4xuJT0IZ_f", + "name": "Used Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9a9318ed-f17a-478e-ab11-ba39fcf26f56", + "name": "general", + "startAt": "2017-09-24T19:34:45.316Z", + "endAt": "2019-09-24T19:34:45.317Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b5ea63b6-e875-4dac-a817-b461098ce81c", + "creativeSets": [ + { + "creativeSetId": "deac108c-7411-483a-b01f-ec34d64ca40c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c4f2979c-bba7-46d0-940f-2f11c28be54b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Carrabba's® Italian Grill - Italian Favorites Curbside", + "title": "Carrabbas", + "targetUrl": "www.carrabbas.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "YnihSiXSdRZ", + "name": "Food Delivery" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a3017003-953c-47c4-b3bf-a59be5943a79", + "name": "general", + "startAt": "2017-09-24T19:34:45.911Z", + "endAt": "2019-09-24T19:34:45.911Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "51a2f286-005c-4b98-ad7e-8a8ea2153d57", + "creativeSets": [ + { + "creativeSetId": "435249d4-994d-41a2-9dd8-a736bd1e3055", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "72d82666-83b2-423d-a3cc-7e0d58194150", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cars.com - Official Site - Over 4.9 Million Listings", + "title": "Cars", + "targetUrl": "www.cars.com" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "b4xuJT0IZ_f", + "name": "Used Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "12627e71-e313-48a1-bf66-4d99ab9732ef", + "name": "general", + "startAt": "2017-09-24T19:34:46.478Z", + "endAt": "2019-09-24T19:34:46.478Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "84633f66-94e9-407b-842d-69c94e232cbf", + "creativeSets": [ + { + "creativeSetId": "92021ed4-ed81-4b67-9309-338912f6a42b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7cd20548-36a7-4a2f-b6fa-e27834117cfa", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Easy To Use Database Interface - Fast & Powerful With No Coding", + "title": "Caspio", + "targetUrl": "pages.caspio.com/Database/Interface" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "P2WrQgJRNfq", + "name": "Compare Databases" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9c3aa79b-09ac-4628-8a15-068f57572f92", + "name": "general", + "startAt": "2017-09-24T19:34:47.065Z", + "endAt": "2019-09-24T19:34:47.065Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "dc7aceb0-f1df-415a-972f-bfde23bc4ddf", + "creativeSets": [ + { + "creativeSetId": "9738c173-d8c9-4e73-9b8b-17ef0058d53c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1e3853cc-85e9-4366-862f-4473250c3a92", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Plus Size Catalogs", + "title": "Catalogs", + "targetUrl": "www.catalogs.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "obV7ryiIRW4", + "name": "beauty" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2f4769d3-ce03-4614-a0bb-37f0a355f30f", + "name": "general", + "startAt": "2017-09-24T19:34:47.778Z", + "endAt": "2019-09-24T19:34:47.779Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b5bbd173-9900-4471-8ff8-2919a17210a8", + "creativeSets": [ + { + "creativeSetId": "bc0dbc3e-b559-47a2-ae19-b1f767e2168d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b9faf1ae-0f87-4f84-b22d-69e27c7fa3f1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fun Facts About Cats - CatChow.com", + "title": "CatChow.com", + "targetUrl": "https://www.catchow.com/catipedia/basics/10-fascinating-facts-about-cats/?utm_campaign=always+on&utm_medium=cpc&utm_source=bing&utm_content=cat-cat+chow-Bing%7CCatipedia%7CIndoor%7CExact&utm_term=about+cats&gclid=CLmWvaHJj9kCFREVfwodYsgHEQ&gclsrc=ds&dclid=CLC2w6HJj9kCFQZnfgod4icNzQ" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "eHqnF4oCM-X", + "name": "cats" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7b264d69-a3e5-4a91-a668-080b63edd5b4", + "name": "general", + "startAt": "2017-09-24T19:34:48.382Z", + "endAt": "2019-09-24T19:34:48.383Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0ea5f460-78d2-4fed-aed7-0ed546793308", + "creativeSets": [ + { + "creativeSetId": "7b2ea666-2a36-45cb-bcab-f89b02ae8911", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "48e69bc1-5b03-4215-b393-288e8f903228", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The Catholic Company™ - 20% Off Orders $40 & Up", + "title": "Catholi", + "targetUrl": "www.catholiccompany.com" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "WOkWXQNNvUq", + "name": "Christian Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7219af65-d809-4637-bdc5-254e2c657c13", + "name": "general", + "startAt": "2017-09-24T19:34:48.972Z", + "endAt": "2019-09-24T19:34:48.972Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6c660229-7b81-4659-81bd-bb10e7ada14c", + "creativeSets": [ + { + "creativeSetId": "8eabd375-f370-4fdc-835a-5511a381df36", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b8413232-de60-43fa-9a23-3b9db7cb3f56", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Cowgirl Ankle Boots for Women-Womens Booties - Cavender's", + "title": "Cavenders", + "targetUrl": "cavenders.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "mDuvMtm0102", + "name": "fashion" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ca73e5cb-1163-4fde-99af-05e8db7c61e1", + "name": "general", + "startAt": "2017-09-24T19:34:49.715Z", + "endAt": "2019-09-24T19:34:49.715Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ea91ac70-630c-4e2d-8802-3c6a65c88058", + "creativeSets": [ + { + "creativeSetId": "0f8d799e-521b-4346-907e-63e03e658b24", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1820654a-ccc2-4aa5-b8f4-58624ed5ce5d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Save Thousands On Your Degree - Half The Cost Of Many Schools.", + "title": "CcisEdu", + "targetUrl": "www.ccis.edu/courses-online" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "ANs-xRChItO", + "name": "College Degrees Online" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a1086a55-453b-4f61-b953-84c0c4e3cc6c", + "name": "general", + "startAt": "2017-09-24T19:34:50.307Z", + "endAt": "2019-09-24T19:34:50.308Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5e67244e-e464-4abe-a0c6-8b8fd735a5d1", + "creativeSets": [ + { + "creativeSetId": "5a9a68e2-246b-47c9-bf05-cdcab14a0ef4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d970c6d6-44cc-42ca-92a2-74aa61ebb763", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "CCS Skateboards", + "title": "CCS", + "targetUrl": "CCS.com/Skateboards" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FWG6gM9kOij", + "name": "Skateboards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bedef638-dbd3-444f-9677-06542af6e34c", + "name": "general", + "startAt": "2017-09-24T19:34:50.940Z", + "endAt": "2019-09-24T19:34:50.940Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7ef755f6-82f0-49e2-be85-6b916083697b", + "creativeSets": [ + { + "creativeSetId": "cebe5c61-3804-4864-bdd7-c4cd36f28969", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "883f30b8-e3cc-44bc-b1e2-6c6056aa018c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "CCS Skateboards - Shop the Top Skateboarding Brands at CCS", + "title": "CCS Skateboards", + "targetUrl": "https://shop.ccs.com/skateboards/skateboard-decks?msclkid=4e210b41d8631e16c9b0513940089988&utm_campaign=%5BNB%5D+Skateboards+%7C+Bing&utm_content=%5BNB%5D+Skate&utm_medium=cpc&utm_source=bing&utm_term=skateboard" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "MBmT-CZYk-K", + "name": "skateboarding" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "13c54d7e-6859-4665-a51a-3601e22d330c", + "name": "general", + "startAt": "2017-09-24T19:34:51.667Z", + "endAt": "2019-09-24T19:34:51.667Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5e9d6978-013c-41e5-b380-fc54c196b144", + "creativeSets": [ + { + "creativeSetId": "4f75c63f-73c1-4774-95e1-15b6eb51744a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bff0dee8-5953-43c4-96c8-8ee829fe1859", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Colorado Christian University - Online Adult Christian College", + "title": "Ccu", + "targetUrl": "www.ccu.edu" + } + } + ], + "segments": [ + { + "code": "avw0QD-PbLk", + "name": "Architecture" + }, + { + "code": "dOQmj5NS4GvY", + "name": "Architecture Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b9ee00a1-b5e1-4e32-81ad-ad8de4f10e0e", + "name": "general", + "startAt": "2017-09-24T19:34:52.345Z", + "endAt": "2019-09-24T19:34:52.346Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "405f1e5c-37f0-4aea-8a3c-48bd16d1f8da", + "creativeSets": [ + { + "creativeSetId": "3fcba1bb-37d8-4685-b217-f64b8078b814", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "12543647-f906-42d0-8440-09325f0ab2c4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Quit Smoking‎", + "title": "Cdc", + "targetUrl": "www.cdc.gov/tips ‎" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "TAoUE1tinMK", + "name": "Quit Smoking" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d9397b98-6081-42f8-ba5a-6df88b8830b0", + "name": "general", + "startAt": "2017-09-24T19:34:52.961Z", + "endAt": "2019-09-24T19:34:52.962Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "33273058-7415-4e1b-af3b-02081675002d", + "creativeSets": [ + { + "creativeSetId": "bc6681b8-f8ce-41e3-9397-2b475a9b79b1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "423a70a5-57f9-4e16-917d-ae4b1f1fd0b7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "RC-2 at CDW", + "title": "CDW", + "targetUrl": "www.CDW.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "eJu7bz6XQx4", + "name": "RC Vehicles" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "10ffafd5-d5c1-47cc-b3ea-279af280738f", + "name": "general", + "startAt": "2017-09-24T19:34:53.630Z", + "endAt": "2019-09-24T19:34:53.630Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "65039a8e-5468-46c2-b0fe-2c3206fd7eae", + "creativeSets": [ + { + "creativeSetId": "814a8d95-3cb5-4683-aac6-cc07955b1cec", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f9bd9bf9-f16c-4b9c-9cb3-d92f2c5efe26", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Psychology Continuing Ed | Ce4Less.com", + "title": "Ce4Less", + "targetUrl": "Ce4Less.com/PsychologyContinuingEd" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mTbLUekRxb3", + "name": "Psychology Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5616e737-7bf8-4cd5-acd4-854a90133e83", + "name": "general", + "startAt": "2017-09-24T19:34:54.337Z", + "endAt": "2019-09-24T19:34:54.337Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7b8fcfd8-a4c9-44b5-ad24-55c9ffc63dd3", + "creativeSets": [ + { + "creativeSetId": "2bf84e74-3186-4458-a4e6-86b1012925ad", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d1d0c50f-bfa3-4608-98c2-e5fabfff1bc1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Celeb Eclipse - News & Gossip - Celebrity Media-Updated Daily", + "title": "Celebeclipse", + "targetUrl": "www.celebeclipse.com" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "yXU5RmIdCDsD", + "name": "Celebrity News" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5fa6d6e1-a795-41d7-ad5a-a5e8bbdaf129", + "name": "general", + "startAt": "2017-09-24T19:34:54.936Z", + "endAt": "2019-09-24T19:34:54.936Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f3543aee-d011-4e86-a442-683b0876a50f", + "creativeSets": [ + { + "creativeSetId": "17f99071-008e-4e92-81e6-2380c82138de", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ed309a4b-eee0-46cc-961b-8b291830c47d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2018 Celebrity Cruises on Sale - Save up to 75% Today", + "title": "Celebrity.cruiselines", + "targetUrl": "celebrity.cruiselines.com" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "yXU5RmIdCDsD", + "name": "Celebrity News" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1b82dd31-1909-45da-8317-05fa5acb6fa1", + "name": "general", + "startAt": "2017-09-24T19:34:55.662Z", + "endAt": "2019-09-24T19:34:55.662Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6480ce5c-5bf5-4e3f-b683-2f6982723a9f", + "creativeSets": [ + { + "creativeSetId": "7755ddae-07f3-40cc-a4e7-8109004ea508", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "16da1e60-295e-43e9-8058-de62a7430953", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "35 Religious Celebs | CelebrityLifeJournal.com", + "title": "CelebrityLifeJournal.com", + "targetUrl": "http://celebritylifejournal.com/35-celebrities-you-probably-didnt-know-were-so-religious/?utm_source=christian%20celebrities&utm_medium=religiouscelebs&utm_campaign=bing" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "JvhB85eF2jSK", + "name": "celebrities" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8a5e9b3e-2b00-4847-b585-20484b52bcb7", + "name": "general", + "startAt": "2017-09-24T19:34:56.237Z", + "endAt": "2019-09-24T19:34:56.237Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d2cb9f1e-b05e-48a4-8a59-80a0efdc7e16", + "creativeSets": [ + { + "creativeSetId": "90fb9b99-d645-4eac-8688-0f613a148b17", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "28eaf09c-c9af-4004-b33a-08ff75efc740", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 5 Cell Phone Plans in 2018 - See Which Carrier is Now #1", + "title": "Cellphoneplan", + "targetUrl": "www.cellphoneplan.com" + } + } + ], + "segments": [ + { + "code": "05KGovyhnUj", + "name": "cell phones" + }, + { + "code": "PDcNk9LToal", + "name": "cell phones" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "44a44649-1df4-49b8-aa84-6cee5b83e63e", + "name": "general", + "startAt": "2017-09-24T19:34:56.862Z", + "endAt": "2019-09-24T19:34:56.862Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "37babcb1-9106-41af-b69d-81551eca6d60", + "creativeSets": [ + { + "creativeSetId": "6aacd86e-0ede-41d5-8c1d-af86ef310985", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ae80c5af-a134-4ef4-baf9-84392e8e6b8b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Centrum?? Silver?? Non GMO - Complete Daily MultiVitamin", + "title": "Centrum", + "targetUrl": "www.centrum.com/Non_GMO/MultiVitamin" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "5Ry6TcY_ODM", + "name": "Buy Vitamins" + } + ] + }, + { + "creativeSetId": "0edc80a3-72e2-4e8d-b5a1-d1561896deed", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ae859ca3-c271-4232-8b31-0f2551ad4a09", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Centrum® Gluten Free Vitamins - Complete Adult MultiVitamin", + "title": "Centrum", + "targetUrl": "www.centrum.com/Gluten_Free/MultiVitamin" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "lWAbLH7wUoL", + "name": "Nutrition Shop" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0ab34055-0a22-483f-b53a-4d1042ba5a3f", + "name": "general", + "startAt": "2017-09-24T19:34:57.756Z", + "endAt": "2019-09-24T19:34:57.756Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "caf5023b-7081-4a56-96d1-55b034b2cb80", + "creativeSets": [ + { + "creativeSetId": "867b1461-401b-4538-adbd-8db8cda01cd6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1746d50f-b74e-4f9c-b16b-8735cc60ffb9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Refinancing Over $250K? - Get A Great Refinancing Rate", + "title": "Cfbankrefinancing", + "targetUrl": "www.cfbankrefinancing.com/refinancing/cfbank" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "dtTKtVFdpje", + "name": "Refinance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "18985c2d-77cb-4e84-af82-f8efd3650356", + "name": "general", + "startAt": "2017-09-24T19:34:58.378Z", + "endAt": "2019-09-24T19:34:58.378Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f010c064-374f-450e-a709-62059dd3fd70", + "creativeSets": [ + { + "creativeSetId": "5d961e20-affb-4feb-a8dc-e4ee871db613", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4b6c505d-e13c-4ff3-a863-a0ce85cae633", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Vetmedin - Nationally Accredited Pharmacy - Save", + "title": "Cfspharmacy.pharmacy", + "targetUrl": "www.cfspharmacy.pharmacy/PimobendanTabs/Liquid" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "sOqbf6PQ3c-", + "name": "Online Pharmacy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a859087c-d18c-416c-b75e-2f553d49c6fc", + "name": "general", + "startAt": "2017-09-24T19:34:58.955Z", + "endAt": "2019-09-24T19:34:58.955Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ab0e9d96-e0fb-41b7-a35f-c4c849fe02d0", + "creativeSets": [ + { + "creativeSetId": "2527cb00-3641-4b1a-beac-6200dad4f219", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9d80c591-19a0-4b0f-82ee-277f3825cc51", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Basketball Videos!", + "title": "ChampionshipProductions", + "targetUrl": "www.ChampionshipProductions.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FiDfXRZJaDS", + "name": "Basketball Training" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9894052e-d23a-4451-936e-6081c3edf557", + "name": "general", + "startAt": "2017-09-24T19:34:59.638Z", + "endAt": "2019-09-24T19:34:59.638Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "733cf11a-1430-4af1-9dcf-20a9a2aa0bd2", + "creativeSets": [ + { + "creativeSetId": "436d4eee-5336-44fa-989e-6429e4228fce", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "59e23c3e-2312-4857-b6fb-13ca0f62f5be", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Quit Smoking This Year - Visit For More Info", + "title": "Chantix", + "targetUrl": "https://www.chantix.com/?%3Fsource=bing&HBX_PK=s_help%20you%20stop%20%20smoking&o=23119575%7C166373530%7C0&skwid=43700019815380725&src_id=Chantix_Paid%20Search_Unbranded_Treatment_20173103" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "cKAkh_x-oOIm", + "name": "smoking" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "97966ab0-320c-4d12-9350-d6610015e237", + "name": "general", + "startAt": "2017-09-24T19:35:00.417Z", + "endAt": "2019-09-24T19:35:00.417Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "912b4bff-6ef1-43ce-acc9-ca50b346c5ed", + "creativeSets": [ + { + "creativeSetId": "bf23a351-0c32-4c81-b5d8-952fd93d06fa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d3fb0d67-fd75-4b1f-b73d-8246fd526da9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bank With Finn By Chase | New Chase Customers Get $100‎", + "title": "Chase", + "targetUrl": "www.chase.com/ ‎" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "7MiD5IH1W6t", + "name": "Bank Accounts" + } + ] + }, + { + "creativeSetId": "7e67e3a3-aff7-4088-873d-98ee4cf8dda2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "974ae3dc-08ce-4dbb-b3a2-870304664b5e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Chase Mortgage Offer - Get $500 Cash Back", + "title": "Chase", + "targetUrl": "www.chase.com" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "ME0864i1Nfkc", + "name": "Refinance Home" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "827da2cf-34c0-453d-bb21-a367ac4c7d31", + "name": "general", + "startAt": "2017-09-24T19:35:01.270Z", + "endAt": "2019-09-24T19:35:01.270Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "677e13b7-b918-4d9a-b77b-5179f1a90f79", + "creativeSets": [ + { + "creativeSetId": "3293ea73-3854-4ff5-818a-2ad4d54107f2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0e71eb43-9ddf-4dc9-a642-77a9ff646517", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cheap Air Travel – Be the First to Grab Our Deals", + "title": "Cheap on Air", + "targetUrl": "https://www.cheapoair.com/flights/booknow/cheap-flight-tickets?fpaffiliate=YahooGemini&fpsub=airtravel-com-e&utm_campaign=&utm_term=air+travel&utm_source=yahoogemini&utm_medium=&device=c&fpprice=" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "m_3txppNQugt", + "name": "air travel" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "de28e3fb-0e8a-459e-ac3c-f9f189831b2a", + "name": "general", + "startAt": "2017-09-24T19:35:01.839Z", + "endAt": "2019-09-24T19:35:01.839Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6a4bde3a-bbe3-4655-bb5a-e366c5b26f14", + "creativeSets": [ + { + "creativeSetId": "2e4a6700-1d21-469c-87f6-edc8d9d83e2c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "40a6a8d8-3ecb-4516-942f-b55c5969f755", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Compare Car Insurance Quotes - Find the Best Rates in 2 Mins", + "title": "Cheapcarinsuranceusa", + "targetUrl": "www.cheapcarinsuranceusa.com/Quotes/Virginia" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "oYzWfQaOXCj", + "name": "Car Insurance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e674ff59-9fa5-46dd-b219-a6bcf6349f61", + "name": "general", + "startAt": "2017-09-24T19:35:02.388Z", + "endAt": "2019-09-24T19:35:02.389Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6773a389-f2fd-48ab-9a5f-38ae56d709a0", + "creativeSets": [ + { + "creativeSetId": "d9b23ff9-2319-46a0-b875-21ccf13aa728", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6c887ff4-4dd9-4cbb-bc2d-e6285a443195", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Turbotax 2016 Free - Grab Top Online Deals", + "title": "Cheapestdeals", + "targetUrl": "cheapestdeals.net/Turbotax-Code" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "25hWYRpip_l", + "name": "Turbo Tax" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "425482a1-5b5c-489a-9c3d-ec3fe609c612", + "name": "general", + "startAt": "2017-09-24T19:35:02.994Z", + "endAt": "2019-09-24T19:35:02.995Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6c8c641f-7626-4741-8da3-c4065597bcb3", + "creativeSets": [ + { + "creativeSetId": "84223ee6-33b6-45bc-8404-66c02c463459", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2877d63a-bccd-4216-8123-f75d725b273d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cheap Flight Deals - Flight Expert Since 1990", + "title": "Cheapfareguru", + "targetUrl": "www.cheapfareguru.com/Cheap/Flight-Deals" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "0LyFuY7_Cse", + "name": "Flight Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ad6825bb-05ae-4502-972f-c74b1644c30c", + "name": "general", + "startAt": "2017-09-24T19:35:03.848Z", + "endAt": "2019-09-24T19:35:03.849Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9b0aebe3-db8f-49c5-82e6-1fdf7a1791b3", + "creativeSets": [ + { + "creativeSetId": "6b2d23e2-8927-4911-ac0b-71d864589014", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9c5e12ae-1fac-4262-8e86-d8c70358ef33", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "CheapOair® Official Site - Find Discounted Flight Deals", + "title": "Cheapoair", + "targetUrl": "www.cheapoair.com/PayLess/TravelMore" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "L6d8TFZSNbmS", + "name": "Online Shipping" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e15f973c-19ef-4e72-a64e-501558a83a90", + "name": "general", + "startAt": "2017-09-24T19:35:04.574Z", + "endAt": "2019-09-24T19:35:04.574Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5323114f-8490-490d-ad6f-15fbad9b65bb", + "creativeSets": [ + { + "creativeSetId": "60e9adfb-e69f-4159-94fb-cf4bee56ad82", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ab7d3974-868a-45b4-9c8a-a3bc63a002a7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Book Cheap Flights - Price Match Promise Guaranteed", + "title": "CheapOair", + "targetUrl": "www.CheapOair.com/Cheap-Flights/Tickets" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "0LyFuY7_Cse", + "name": "Flight Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bcf0b1c1-644e-4d2a-a1a5-17aa22f6e9eb", + "name": "general", + "startAt": "2017-09-24T19:35:05.182Z", + "endAt": "2019-09-24T19:35:05.182Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6e4e50e6-b637-4035-a0eb-92110ee02d10", + "creativeSets": [ + { + "creativeSetId": "7155b1bf-181d-486f-ae4f-368c7a831340", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "35a6a983-6439-42c5-b69e-b14cd58ea857", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Flights - CheapTickets® - CheapTickets.com", + "title": "CheapTickets", + "targetUrl": "www.CheapTickets.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "0LyFuY7_Cse", + "name": "Flight Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3df14e20-9bab-4070-b00f-6a8f1d1ab47c", + "name": "general", + "startAt": "2017-09-24T19:35:05.811Z", + "endAt": "2019-09-24T19:35:05.812Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b436ea21-699b-4916-aa19-1789e1d55c3b", + "creativeSets": [ + { + "creativeSetId": "131f4ace-99bb-473e-af4a-ec7c2530f446", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "218a9c14-b73d-4033-9e5a-653f8266a3bd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Checks From CheckWorks - Now With More Checks per Box", + "title": "Checkworks", + "targetUrl": "www.checkworks.com/checks" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "7MiD5IH1W6t", + "name": "Bank Accounts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3b87f67f-824b-4915-8dc6-cd12784e281f", + "name": "general", + "startAt": "2017-09-24T19:35:06.659Z", + "endAt": "2019-09-24T19:35:06.659Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c969be68-b2d7-4d28-83f6-c99599813cd4", + "creativeSets": [ + { + "creativeSetId": "956a9805-e59f-4ad7-815b-d6c26a97b7c7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a73686fb-37c6-4336-8263-f77d55b4e78f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find All The Delicious Recipes - You Can Make With Cheerios™", + "title": "Cheerios", + "targetUrl": "cheerios.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "9Roh9lJ0tSd", + "name": "Cooking Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7849adca-71ab-4b6e-89e1-8b26d30fb142", + "name": "general", + "startAt": "2017-09-24T19:35:07.384Z", + "endAt": "2019-09-24T19:35:07.384Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5bdd2e31-98a4-4ff0-a2e0-f0d2f0d7e97b", + "creativeSets": [ + { + "creativeSetId": "4573fbc6-da2a-490f-890b-4220044e929e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fb695452-c25a-4a94-8c2c-312a5869fe2a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cheerleading Body Basics - Supplies For Every Cheerleader", + "title": "Cheerleading", + "targetUrl": "www.cheerleading.com/Cheerleading/Apparel" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "ar7C1cuDv9N", + "name": "Cheerleading Pom Poms" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "27fafbab-1fda-46eb-9656-71a86a25f059", + "name": "general", + "startAt": "2017-09-24T19:35:08.261Z", + "endAt": "2019-09-24T19:35:08.262Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "70ab7ab9-5213-4168-87a8-3d586c1666de", + "creativeSets": [ + { + "creativeSetId": "f598c876-f364-4c2d-a064-6d425981525a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4565bdf6-2981-4fbe-9a25-8ffb75ea1e6a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cheer Music Your Way - CheerSounds.com", + "title": "Cheersounds", + "targetUrl": "www.cheersounds.com/Custom" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "ar7C1cuDv9N", + "name": "Cheerleading Pom Poms" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7fd6bbc8-63b7-4b7f-95c6-914681ec4bbf", + "name": "books", + "startAt": "2017-09-24T19:35:08.828Z", + "endAt": "2019-09-24T19:35:08.829Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "53aa73c7-a3e4-4fea-8b33-2a6ab3721fa9", + "creativeSets": [ + { + "creativeSetId": "bf142c95-ee33-4d0e-907b-3b1252346f78", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6d6ba9ff-92f0-435f-96ad-ebe13b77afb6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Chegg ® - Textbook Rentals", + "title": "Chegg", + "targetUrl": "www.chegg.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mNcox6LeedN", + "name": "Anatomy Books" + } + ] + }, + { + "creativeSetId": "581cddda-eb15-4801-a310-0e3817478962", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "06b7180a-324f-4712-a56d-cab9a19b8fc2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Chegg ® - Textbook Rentals", + "title": "Chegg", + "targetUrl": "www.chegg.com" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "MJlJ0GAmjmL", + "name": "Botany Books" + } + ] + }, + { + "creativeSetId": "79ff53bc-5883-4473-99ae-2cf2c1992c79", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cff79714-f6d6-4c77-b7f6-4166a8825d00", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Chegg ® - Textbook Rentals", + "title": "Chegg", + "targetUrl": "www.chegg.com" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "TZT3-8UTU4y", + "name": "Economics Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2d88d69a-da19-4c2b-80ee-c1d93672b556", + "name": "help", + "startAt": "2017-09-24T19:35:09.777Z", + "endAt": "2019-09-24T19:35:09.777Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "53aa73c7-a3e4-4fea-8b33-2a6ab3721fa9", + "creativeSets": [ + { + "creativeSetId": "94460e06-f84a-42c6-9b16-0ed1d2cb4d60", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5ccf0c9b-6475-4d33-9d10-2951c2745872", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "General Chemistry Help | Chegg.com", + "title": "Chegg", + "targetUrl": "http://www.chegg.com/homework-help/chemistry-9th-edition-solutions-9780495391630?c_id=sem&utm_source=bing&utm_medium=cpc&utm_campaign=hwh--long-tail-India+Authored+Books-16-MSN&campaign=hwh--long-tail-India+Authored+Books-16-MSN&matchtype=b&s_kwcid=AL!2530!10!1600617345!13180287144&ef_id=WmZBUAAAAF4YWyKh:20180206004303:s" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "Fs20uKvs3zYe", + "name": "chemistry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8b348b95-5444-4f04-8809-70b825a6f572", + "name": "pets", + "startAt": "2017-09-24T19:35:10.373Z", + "endAt": "2019-09-24T19:35:10.373Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "864f8b3c-ad8f-4952-bde9-ec25c46ffc5d", + "creativeSets": [ + { + "creativeSetId": "e941ebc2-8c36-420c-aa14-d2b14f3b1c0f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9e9aad58-ac80-4d15-991c-c71b7f65441e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fish Supplies Deals at Chewy - 40% Off Today & Free Shipping.", + "title": "Chewy", + "targetUrl": "www.chewy.com/Fish" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "T2fnJ3M0GxS", + "name": "Aquarium Supplies" + } + ] + }, + { + "creativeSetId": "99c0aab9-786f-4cb2-9d75-32565450be22", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "481ce023-0a79-4a7d-b7bf-ec7b667299e9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bird Store - 40% Off Today & Free Shipping.", + "title": "Chewy", + "targetUrl": "www.chewy.com" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "S2jGIYx0-6x", + "name": "Bird Store" + } + ] + }, + { + "creativeSetId": "13040749-c1b2-4f61-a5b7-70c0de905afa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "40918646-96fc-4760-b149-74715e239ff3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cat Supplies - 40% Off Today & Free Shipping.", + "title": "Chewy", + "targetUrl": "www.chewy.com/CatSupplies" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "6BRJuRThFS_", + "name": "Cat Supplies" + } + ] + }, + { + "creativeSetId": "9cf736e7-cf8f-47a6-bb00-e4799da42109", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e079c305-65cb-416c-85f1-f4789b30ac68", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dog Store Deals at Chewy - 40% Off Today & Free Shipping.", + "title": "Chewy", + "targetUrl": "www.chewy.com/DogSupplies" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "cJeWKlUNo4Y", + "name": "Dog Store" + } + ] + }, + { + "creativeSetId": "91ab1613-9407-4a6c-a6df-8e9b620c1e07", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e9957fc4-1a25-49fa-9c52-4e22f951f1da", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pet Store - 40% Off Today & Free Shipping.", + "title": "Chewy", + "targetUrl": "www.chewy.com/PetSupplies" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "x3JqE5H5N3r", + "name": "Pet Store" + } + ] + }, + { + "creativeSetId": "2ab91a5d-4577-414d-9ceb-ac998ac66f1e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b4f246e0-ddda-4577-949b-4e2a70a875e1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Reptile Supplies - Food, Treats, Heating & Habitats-Free Ship", + "title": "Chewy", + "targetUrl": "chewy.com" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "rH6iVpeEME2", + "name": "Reptile Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "57578aac-4d81-47a0-b5fc-4decef48958f", + "name": "pets", + "startAt": "2017-09-24T19:35:12.677Z", + "endAt": "2019-09-24T19:35:12.677Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "54a156e8-f271-4def-b44d-80546715916a", + "creativeSets": [ + { + "creativeSetId": "8ce7a43b-76f3-45b3-8ec8-2608ac1ebc27", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "667c0447-3022-4485-a339-fd93b22c34e2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "K&H Pet Products Bird Thermo-Perch | chewy.com", + "title": "Chewy.com", + "targetUrl": "https://www.chewy.com/kh-pet-products-bird-thermo-perch/product-reviews/129978?reviewSort=NEWEST&reviewFilter=ALL_STARS&pageNumber=1&msclkid=d2d92fdb9aa5160e727c75a35c71d081&utm_source=bing&utm_medium=cpc&utm_campaign=DSA%20-%20Brands&utm_term=kh-pet-products&utm_content=K%26H%20Pet%20Products-Hard" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "HPHOOJRSq4rf", + "name": "birds" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cb06a317-0963-41f1-b27c-3f0483f3924c", + "name": "general", + "startAt": "2017-09-24T19:35:13.275Z", + "endAt": "2019-09-24T19:35:13.276Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1a12ab8e-30bf-4ec6-8a52-a4813c68bc5e", + "creativeSets": [ + { + "creativeSetId": "b507020b-19bf-4970-a687-5b7e004b94b0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6c36cabf-abbc-4dc1-824a-930c03c55472", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Chex™ Gluten Free Recipes - You've Got Options With Chex.", + "title": "Chex", + "targetUrl": "www.chex.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "9Roh9lJ0tSd", + "name": "Cooking Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e55babe2-fafd-47b5-b93b-6ea3ee5bd09a", + "name": "general", + "startAt": "2017-09-24T19:35:13.855Z", + "endAt": "2019-09-24T19:35:13.855Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8637b28a-6a41-4c7d-ba7c-28b4ab36611f", + "creativeSets": [ + { + "creativeSetId": "38787daa-2b3d-4bb5-acf5-a125521a7a22", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d0c93b4b-a2d8-49dd-aa64-e16f3e038149", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Chick-fil-A - Fresh, Made to Order Menu | chick-fil-a.com", + "title": "Chick-fil-a", + "targetUrl": "www.chick-fil-a.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "YnihSiXSdRZ", + "name": "Food Delivery" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c9fc50f4-32a2-442f-8435-eb760d913256", + "name": "general", + "startAt": "2017-09-24T19:35:14.527Z", + "endAt": "2019-09-24T19:35:14.527Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "66cad268-0b48-42f3-af95-38767ef4c01e", + "creativeSets": [ + { + "creativeSetId": "822e2d0f-f30e-4dd8-919d-530392b1c405", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "00380dbc-2ce2-4d9e-9280-86c7faff76dd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Chico's® Official Site – Chic And Stylish Clothing", + "title": "Chicos", + "targetUrl": "www.chicos.com/store" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "obV7ryiIRW4", + "name": "beauty" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b23ff266-d61b-4935-b4a9-db6a14b2aaa2", + "name": "general", + "startAt": "2017-09-24T19:35:15.113Z", + "endAt": "2019-09-24T19:35:15.114Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7506edfa-5d64-4c86-b09e-459214b1f9c3", + "creativeSets": [ + { + "creativeSetId": "04fd1ea6-63ed-481f-9629-d515ad92231f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "017669bc-f338-4133-a01a-ee7db2da0452", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Chime Banking - No Chexsystem Online Bank", + "title": "Chimebank", + "targetUrl": "www.chimebank.com" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "7MiD5IH1W6t", + "name": "Bank Accounts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4b4ba72e-ff15-4882-abf9-76cd3959919c", + "name": "general", + "startAt": "2017-09-24T19:35:15.951Z", + "endAt": "2019-09-24T19:35:15.952Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "21b81e0a-a727-479b-a6b8-7aa28f3ee39c", + "creativeSets": [ + { + "creativeSetId": "295f3df2-bc13-48d8-b52c-26fc906571f1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7dabb884-505c-4a55-ac85-aab578e3662d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Easy recipes For Kids | Teach Healthy Eating & Cooking‎", + "title": "Chopchopmag.org", + "targetUrl": "www.chopchopmag.org/Kids/Recipes ‎" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "9Roh9lJ0tSd", + "name": "Cooking Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "77ac778d-c665-4767-90d5-795fb3a03b1a", + "name": "general", + "startAt": "2017-09-24T19:35:16.529Z", + "endAt": "2019-09-24T19:35:16.529Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3993e25f-110f-4553-abfd-001d87824854", + "creativeSets": [ + { + "creativeSetId": "b37f0fba-dc75-4251-a3f1-46cd07f2998c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "72e1c241-9d88-4047-96dc-f38a699fe1d5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Browse Christianbook.com - Christian Book Distributors", + "title": "Christianbook", + "targetUrl": "www.christianbook.com" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "tEYym_TVzMg", + "name": "Christian Meet" + } + ] + }, + { + "creativeSetId": "618cdae7-6369-43fa-83e5-9804e98a7fd6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "08b5208d-c2ba-4b65-acce-bf9344e761dd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Christianbook.com - Large selection, great prices", + "title": "Christianbook", + "targetUrl": "www.christianbook.com" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "mTbd3Gmk0cr", + "name": "Judaism Books" + } + ] + }, + { + "creativeSetId": "13d3c8d8-51de-4c65-97e1-015f01176a9f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "afbf48eb-afca-4dca-acee-23dfd50fc801", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Apologia Science Sale, 35% off - Apologia Science Curriculum", + "title": "Christianbook", + "targetUrl": "www.christianbook.com/Apologia" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "zVMz-LlY_xf", + "name": "Biology Education" + } + ] + }, + { + "creativeSetId": "66563e80-aaa9-4039-b30a-27b4647e83b8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b9104f6a-f0b2-4a00-b1e6-6675a78d7592", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Christianbook.com - Everything Christian For Less", + "title": "Christianbook", + "targetUrl": "www.christianbook.com" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "AQ9eV3TbmJq", + "name": "Physics Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d0bae15d-3127-4857-a0f8-51f939f44b75", + "name": "school", + "startAt": "2017-09-24T19:35:17.648Z", + "endAt": "2019-09-24T19:35:17.649Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3993e25f-110f-4553-abfd-001d87824854", + "creativeSets": [ + { + "creativeSetId": "4173a22f-4f10-44e4-87dc-18d50ac1b0c2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "36f80059-6edb-4fcb-82e4-60e956ca3ea6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home School Geography - Christianbook.com - christianbook.com", + "title": "Christianbook", + "targetUrl": "www.christianbook.com/homeschool" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "wz0LfYE3w8k", + "name": "Geography Education" + } + ] + }, + { + "creativeSetId": "7499fb2a-2a7c-4cce-9873-07b50f2d477a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a9cd99d7-3dc2-43e0-a3f7-8b9d078ffeb0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Saxon Math Grade 4 - Christianbook.com Homeschool", + "title": "Christianbook", + "targetUrl": "www.christianbook.com/Saxon" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "o7RiTeSPDIyu", + "name": "Mathematics worksheets" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "dade34ca-49bf-42bf-a0ce-b60510265b20", + "name": "general", + "startAt": "2017-09-24T19:35:18.507Z", + "endAt": "2019-09-24T19:35:18.508Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "76fc4865-e783-4f78-b9c8-1fa4ecebff8c", + "creativeSets": [ + { + "creativeSetId": "931876f7-541c-4cf5-b141-22ca94c414ae", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "439410b6-35ea-4902-ab84-b10aa87478b3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find Christian Counseling - Easy Zip Code Search", + "title": "ChristianCounselorDirectory", + "targetUrl": "ChristianCounselorDirectory.com/Therapists/Counselors" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "WOkWXQNNvUq", + "name": "Christian Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cd97d90f-af93-444c-b428-0ca51236ae6d", + "name": "general", + "startAt": "2017-09-24T19:35:19.315Z", + "endAt": "2019-09-24T19:35:19.315Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "18ffe75b-f756-4b8b-bca1-daf150dd974b", + "creativeSets": [ + { + "creativeSetId": "c3c05a2d-f5ee-4b98-87ed-c16922ed074d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "68be15cf-7565-407d-a4e9-daab2dd3a2f1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Christian Faith Publishing - Get Your Book Published Today", + "title": "Christianfaithpublishing", + "targetUrl": "www.christianfaithpublishing.com" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "WOkWXQNNvUq", + "name": "Christian Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3e59c7b2-d907-4b5f-be59-ccd3e60f861f", + "name": "general", + "startAt": "2017-09-24T19:35:19.977Z", + "endAt": "2019-09-24T19:35:19.977Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "634c1c1e-685c-4ee6-99ce-6a3f867060dc", + "creativeSets": [ + { + "creativeSetId": "f9f8da15-a503-40c9-ac85-28b3a08f00d2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "947bb334-abfd-4467-af3a-a622a1225de0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Christian Filipina Dating", + "title": "ChristianFilipina", + "targetUrl": "www.ChristianFilipina.com" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "tEYym_TVzMg", + "name": "Christian Meet" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4607f336-fcc8-458f-ac0e-6f3eb792857e", + "name": "general", + "startAt": "2017-09-24T19:35:20.575Z", + "endAt": "2019-09-24T19:35:20.575Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "74cb9853-038a-44b0-96d2-dec33a91c3b7", + "creativeSets": [ + { + "creativeSetId": "a0d2a768-2113-4d36-9e02-fc4ccdb46a9d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c5c02044-83bc-411e-bade-10b72a754896", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Meet Christians - ChristianLifestyle.com", + "title": "ChristianLifestyle", + "targetUrl": "www.ChristianLifestyle.com" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "tEYym_TVzMg", + "name": "Christian Meet" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c4799c66-12ee-4baa-a927-98c6804c49db", + "name": "general", + "startAt": "2017-09-24T19:35:21.375Z", + "endAt": "2019-09-24T19:35:21.376Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f48bb3c3-b7d4-4db3-8191-2c08ce3159e1", + "creativeSets": [ + { + "creativeSetId": "29e36855-a26d-45cf-8a38-332ba7722dab", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fc281c5e-6e64-4351-a47d-0cba3e6c7f2f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Meet Single Christians Online - Share Your Life & Your Faith.", + "title": "Christianmingle", + "targetUrl": "christianmingle.com/ChristianSingle/Browse Profiles" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "tEYym_TVzMg", + "name": "Christian Meet" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a296dec7-ab8e-43af-b5ec-903f5ead451c", + "name": "general", + "startAt": "2017-09-24T19:35:21.960Z", + "endAt": "2019-09-24T19:35:21.960Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d81217fb-0901-474e-859a-d6f660459fa8", + "creativeSets": [ + { + "creativeSetId": "769fbe7e-c84c-49e3-8a57-0ce8dd257a3c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "276cacb4-5321-4cd9-a51e-72093f5aaf14", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Christianity | ChristianPeopleMeet.com", + "title": "ChristianPeopleMeet.com", + "targetUrl": "https://www.christianpeoplemeet.com/?sid=652&afid=N02606091500001&st=christianity&sq=christianity&stype=e&caid=30565984320&utm_source=gemini&utm_medium=cpc&utm_term=christianity&agn=Christian" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "CBs7CIrAI3zG", + "name": "christianity" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8d2cef59-7716-40fe-bc4a-2a8bb579ac46", + "name": "general", + "startAt": "2017-09-24T19:35:22.601Z", + "endAt": "2019-09-24T19:35:22.601Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8fc12a90-2ac6-4ef9-b3e4-9b59c163aa7c", + "creativeSets": [ + { + "creativeSetId": "07c13619-a8ef-4bf6-a6d2-a4c7181946b0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "02db9a09-fb20-4028-9814-1eca39280538", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Meet Christians Online - ChristianSoulmate.com", + "title": "Christiansoulmate", + "targetUrl": "www.christiansoulmate.com" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "tEYym_TVzMg", + "name": "Christian Meet" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b20579c0-715d-46f6-8ed5-387bdbf29535", + "name": "general", + "startAt": "2017-09-24T19:35:23.228Z", + "endAt": "2019-09-24T19:35:23.228Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d01f1069-32d9-4b8c-8a0f-0cfffc10ba30", + "creativeSets": [ + { + "creativeSetId": "58e0d89f-6498-4395-9d63-c40f17bc69b2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8f462ab8-5703-4e1d-bae9-d30015c4af2e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "FDA Approved Abuse Deterrent - Opioid for Pain Management", + "title": "Chronic-pain-med-rx", + "targetUrl": "chronic-pain-med-rx.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "RhUDc8iP5Xa", + "name": "Chronic Pain Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2cd72069-12f1-41cf-ac37-e2a43bc18e6a", + "name": "general", + "startAt": "2017-09-24T19:35:23.818Z", + "endAt": "2019-09-24T19:35:23.818Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "686f4dce-897b-45c2-91b2-3557ddbbec3d", + "creativeSets": [ + { + "creativeSetId": "31a35b7a-3d2a-48f3-bcdd-329a443d0527", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1d81cbc3-2ed5-4266-9e22-ccbc52ff0189", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top Dental Plans - Join & Save 15% To 50%", + "title": "CignaDentalPlans", + "targetUrl": "www.CignaDentalPlans.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "L-b6nomirMS", + "name": "Dental Care" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a9c76a23-9fd6-494e-bfd9-69d42d84f19d", + "name": "general", + "startAt": "2017-09-24T19:35:24.354Z", + "endAt": "2019-09-24T19:35:24.354Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e96d1df2-ab16-4c2b-9078-7412f6ccf0ca", + "creativeSets": [ + { + "creativeSetId": "1ed88eea-99a3-415f-82f1-a996119de7c1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "03da28fa-76ec-43d9-9d9c-bcda7fe4a468", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fleet Fuel Cards | Circle K® - Save up to 5¢/Gallon on Costs", + "title": "Circlekfleetcards", + "targetUrl": "www.circlekfleetcards.com/Fleet/Fuel" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "OAA-T668LRa", + "name": "Fuel Cards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "82f45235-8d00-481a-84cf-34214f48cfd5", + "name": "general", + "startAt": "2017-09-24T19:35:24.910Z", + "endAt": "2019-09-24T19:35:24.910Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b7a776bc-69c0-405b-b39a-c6aef3bab0e0", + "creativeSets": [ + { + "creativeSetId": "bd57ed8d-9982-485e-ac81-28c8902657a6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0a82ded2-371c-4472-b1bb-d6fc187d0f06", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Security Clearance Jobs - Government Contractor Jobs", + "title": "Clearancejobs", + "targetUrl": "www.clearancejobs.com/join" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "9Alas5QGK_f", + "name": "Contractor Jobs" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9320f8a0-c510-4f0a-9149-4c6d5ca3eb0f", + "name": "general", + "startAt": "2017-09-24T19:35:25.754Z", + "endAt": "2019-09-24T19:35:25.754Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a741bdce-f79f-418d-bbda-cd514678a1f1", + "creativeSets": [ + { + "creativeSetId": "c7d04b65-3be7-4287-9a55-2ac78b5b33d7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8b59fc68-0b71-48f2-a73b-d8533708307d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Inventory Software - Clear Spider Software | clearspider.com", + "title": "Clearspider", + "targetUrl": "www.clearspider.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "2QJW6dTCw6z", + "name": "Inventory Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b4a9abfc-51d5-4ae6-829a-fede5a91d233", + "name": "general", + "startAt": "2017-09-24T19:35:26.338Z", + "endAt": "2019-09-24T19:35:26.339Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ab5f6f6c-e13f-4d89-a2cd-f238d5da9832", + "creativeSets": [ + { + "creativeSetId": "f830ca36-ab24-463e-b031-fe6dcfc13787", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c5fc1a45-5efa-456b-9615-ad16d8412c52", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "CLEP Study System", + "title": "ClepTestPrep", + "targetUrl": "rea.com/clep_testprep.com" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "zVMz-LlY_xf", + "name": "Biology Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d83457fe-dfa8-4ce1-b951-fda6370b7413", + "name": "general", + "startAt": "2017-09-24T19:35:26.918Z", + "endAt": "2019-09-24T19:35:26.918Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "61f46db1-865c-4560-b6e5-c230ca8b83dc", + "creativeSets": [ + { + "creativeSetId": "4a13a6e3-ee74-4e16-8a3b-9280051a3234", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2a21285b-751c-461e-b4cf-4e544e87fd19", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Epilepsy Surgery Guide | ClevelandClinic.org", + "title": "ClevelandClinic", + "targetUrl": "ClevelandClinic.org/EpilepsyGuide" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "UzZDN_wdJQzE", + "name": "Epilepsy Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b5cba4c9-cf71-42c3-bbc2-9de2cd6bf8f3", + "name": "general", + "startAt": "2017-09-24T19:35:27.573Z", + "endAt": "2019-09-24T19:35:27.573Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "479d9af4-019a-4142-80c2-42b13be32a95", + "creativeSets": [ + { + "creativeSetId": "22a5abf0-32e7-4490-b4bd-852b2499e649", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2eeb9bff-9309-4e4e-8dbf-b3e6d2d743dd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Social Media Dashboard - Manage Your Social Accounts | clickfirstmarketing.com", + "title": "Click First Marketing", + "targetUrl": "https://clickfirstmarketing.com/social-media-marketing-management-dashboard/" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "-iv6l8pZIS9U", + "name": "social networking" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ee5a64a4-912e-49cf-a27c-0380bf90b38e", + "name": "general", + "startAt": "2017-09-24T19:35:28.126Z", + "endAt": "2019-09-24T19:35:28.127Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ab7799b9-4d16-4e73-9374-246a58092d1e", + "creativeSets": [ + { + "creativeSetId": "afcd1783-cc98-4b38-8e81-74343aa48aca", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3bec0b52-1a23-4c39-925b-9cd0c58c3a4f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "East Coast Hockey & Skating | Ice Hockey Sticks‎", + "title": "Clickforward", + "targetUrl": "echockeyandskating.clickforward.com/ ‎" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "hAIdxFZ19kvh", + "name": "Hockey Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c310f6b9-ca6d-4590-9581-c54bbe239058", + "name": "general", + "startAt": "2017-09-24T19:35:28.717Z", + "endAt": "2019-09-24T19:35:28.717Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ed540101-12ce-4432-8e69-2fcaf23d6814", + "creativeSets": [ + { + "creativeSetId": "c4d245d3-2688-418f-964f-cd439bb7a92d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "69ac4a59-536e-4d93-a8e4-c2693a74f167", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bid On Subcontractor Jobs - Search 1000's of Projects | cmdgroup.com", + "title": "CMD Group", + "targetUrl": "http://www.cmdgroup.com/mkt/2015-construction-projects/?cmpid=PSC|Bing|Subcontractor_Jobs&campaign=128134663&group=1228154497383763&target=kwd-76759682871073:loc-190&matchtype=b&device=c&creative=76759662408822&se_kw=subcontractor%20construction%20jobs" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "oQ7GFEHLZscZ", + "name": "construction" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0a24201b-2cc3-4ec5-b058-130523e29731", + "name": "general", + "startAt": "2017-09-24T19:35:29.591Z", + "endAt": "2019-09-24T19:35:29.592Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "921d5841-9784-43c2-8276-172816202970", + "creativeSets": [ + { + "creativeSetId": "546315ea-c21c-4893-a711-477038f962de", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e465aa9a-e3d5-4c4c-b9b5-f4ee97a3ecd1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bid On Subcontractor Jobs - Search 1000's of Projects", + "title": "Cmdgroup", + "targetUrl": "www.cmdgroup.com/Subcontractor/Jobs" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "9Alas5QGK_f", + "name": "Contractor Jobs" + } + ] + }, + { + "creativeSetId": "0761e2fc-5cd5-4b87-bc29-cf7704b21687", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6711c96f-c0da-4765-a33d-75d2972ac586", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bid On Subcontractor Jobs - Search 1000's of Projects", + "title": "Cmdgroup", + "targetUrl": "www.cmdgroup.com/Subcontractor/Jobs" + } + } + ], + "segments": [ + { + "code": "6QLcn3Fnca-", + "name": "Careers" + }, + { + "code": "AkN_-chsgWP", + "name": "Find Work" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3a1b549e-7b35-431c-b456-b384c06ca84f", + "name": "general", + "startAt": "2017-09-24T19:35:30.459Z", + "endAt": "2019-09-24T19:35:30.460Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5ab45bb4-97b2-46f6-abba-244ddac3efe1", + "creativeSets": [ + { + "creativeSetId": "629e494a-3b1d-4291-a8b8-8375abf99cec", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "df037669-d104-4fb3-b169-b30d2a0d963c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "On line encyclopedia - Check this out now", + "title": "CNET", + "targetUrl": "downloadsearch.cnet.com/On line encyclopedia/Save your time" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "DmJDqfAFY9a", + "name": "Encyclopedia Online" + } + ] + }, + { + "creativeSetId": "c516bf26-68c4-4da3-ac25-363039dd965c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e6d7d756-17bd-44ba-9ea0-24349ee8ec16", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Radiostreaming | We have it on Downloadsearch | See yourself", + "title": "CNET", + "targetUrl": "downloadsearch.cnet.com/Radiostreaming/Search no more" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "fRsTAYO2C1M", + "name": "Radio Streaming" + } + ] + }, + { + "creativeSetId": "f9f91870-fe18-45b4-8443-3b8db3b0447b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3311202e-b754-4854-9092-c7fab547cef7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Localguides - We have it on Downloadsearch", + "title": "CNET", + "targetUrl": "downloadsearch.cnet.com/Localguides/Search no more" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "gZf_z0XI7OC9", + "name": "Local Guides" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "163352d2-06bc-4263-b11c-912f1b77ea35", + "name": "school", + "startAt": "2017-09-24T19:35:31.531Z", + "endAt": "2019-09-24T19:35:31.531Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5ab45bb4-97b2-46f6-abba-244ddac3efe1", + "creativeSets": [ + { + "creativeSetId": "213b6522-8493-4fa7-b364-2954ade085fe", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "958b9af7-bd4a-423c-8e4f-16e26514ca74", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Film production degree - Get Relevant Information Here", + "title": "CNET", + "targetUrl": "downloadsearch.cnet.com/Film production degree/Look here" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "BAhEnDxcxBo", + "name": "Film Production Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4388fbd2-36f8-4892-9d5f-6f193e556576", + "name": "books", + "startAt": "2017-09-24T19:35:31.955Z", + "endAt": "2019-09-24T19:35:31.955Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5ab45bb4-97b2-46f6-abba-244ddac3efe1", + "creativeSets": [ + { + "creativeSetId": "b105891e-390b-4c0d-86b3-b5587d4abc3d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ea959a32-0a12-46e3-9782-b68c2f9aaa24", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Botany books - Find on Downloadsearch", + "title": "CNET", + "targetUrl": "downloadsearch.cnet.com/Botany books/Save your time" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "MJlJ0GAmjmL", + "name": "Botany Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b274a4f4-793f-42b7-aade-3ac31f06b3c2", + "name": "general", + "startAt": "2017-09-24T19:35:32.560Z", + "endAt": "2019-09-24T19:35:32.560Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ce2f7e2f-485c-4e3e-a152-3f32f026366d", + "creativeSets": [ + { + "creativeSetId": "7335887d-41d7-4118-873c-fa602e21540c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "730c3f18-4e19-4aac-be0b-2ed313c9d7a5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Epilepsy Medication Info - For Healthcare Professionals", + "title": "CNSTreatment", + "targetUrl": "www.CNSTreatment.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "UzZDN_wdJQzE", + "name": "Epilepsy Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "914b9e6e-7008-425b-b29d-082326dbfa9e", + "name": "general", + "startAt": "2017-09-24T19:35:33.154Z", + "endAt": "2019-09-24T19:35:33.154Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "26d940a8-3ed4-43cd-85b1-d23d95e490b7", + "creativeSets": [ + { + "creativeSetId": "56ad2c32-710c-4d6b-9777-eaae7e6fe9e3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b6ac2506-e2d3-458a-9477-87871f40f4dd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Coastal & High Rise - Luxury Home Decor", + "title": "Coastalhighrise", + "targetUrl": "www.coastalhighrise.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "T4rhcMPPBhp", + "name": "Home Décor" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ddbf4a1c-97e0-48d1-9705-26e4d173e54a", + "name": "general", + "startAt": "2017-09-24T19:35:34.062Z", + "endAt": "2019-09-24T19:35:34.062Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "14dadba9-1167-4f70-bd16-078a280b71dd", + "creativeSets": [ + { + "creativeSetId": "fba1a0a7-7cf6-400f-b3d5-f74a24480ef8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7f48a9cc-43ce-4244-9372-b101992756ba", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "What are my coins worth? - Free FMV Rare Coin Price Guide", + "title": "Coinprices", + "targetUrl": "www.coinprices.org" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "K24r-df9CcZ", + "name": "Rare Coins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f3211e95-081c-475c-a93d-4a3001b525ee", + "name": "general", + "startAt": "2017-09-24T19:35:34.789Z", + "endAt": "2019-09-24T19:35:34.789Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c3f0c04b-ab09-4fef-9a58-3985aeb86e47", + "creativeSets": [ + { + "creativeSetId": "0091df76-6a1c-4932-af13-f911e2a097f0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cd295533-39b5-4ae5-a24c-f8fd987d1228", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Prevent Cold, Flu Symptoms Now - Cold-Fix Now - Order Today.", + "title": "Coldfixnow", + "targetUrl": "coldfixnow.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "w3QYv0DISr3a", + "name": "Flu Prevention" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0f7b3df4-38da-4938-acfd-daa63ce87f3f", + "name": "general", + "startAt": "2017-09-24T19:35:35.506Z", + "endAt": "2019-09-24T19:35:35.506Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7a261ce0-ee7a-4047-aa52-56ef38c5256d", + "creativeSets": [ + { + "creativeSetId": "09719741-41a6-49d8-b21f-257fef73170c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1d10dec8-c3d8-4de2-89f8-eafcf980a0cc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Colorado Mesa University - Connecting You to Top-Quality", + "title": "ColoradomesaEdu", + "targetUrl": "degree.coloradomesa.edu/RN-BSN/Online-Degree" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "ANs-xRChItO", + "name": "College Degrees Online" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d5da40ad-effb-4a2f-b5fc-4ccfebe38a49", + "name": "general", + "startAt": "2017-09-24T19:35:36.089Z", + "endAt": "2019-09-24T19:35:36.089Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e5969473-9308-4dad-82d5-f9dc766e8363", + "creativeSets": [ + { + "creativeSetId": "a0e16e7e-e0fe-4bd6-ac2a-680daf552500", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "01152cd9-7d14-4264-bec1-f042505fcb82", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Autism Books of 2017 - We Reviewed All of Them", + "title": "Comparaboo", + "targetUrl": "www.comparaboo.com/Best/Autism_Books" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "y03q2Xsu_qb", + "name": "Autism Books" + } + ] + }, + { + "creativeSetId": "97609539-912f-4bfa-8c2c-67c45da00328", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d1c32c9b-4f8c-439d-80df-60efc3598900", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best History Books of 2017 - We Reviewed All of Them", + "title": "Comparaboo", + "targetUrl": "www.comparaboo.com/Best/History_Books" + } + } + ], + "segments": [ + { + "code": "5G4C9Gbl_AF", + "name": "History" + }, + { + "code": "DPRmtWVA4dO", + "name": "History Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1a254160-a9b5-48e9-807e-2243e55f0c7f", + "name": "general", + "startAt": "2017-09-24T19:35:37.214Z", + "endAt": "2019-09-24T19:35:37.214Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f54a79eb-c88a-4d00-af8d-4f0a54e14561", + "creativeSets": [ + { + "creativeSetId": "f791de61-d016-4aec-af07-11113603d516", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "07e9a8dd-15aa-400e-95ac-326fec85ce0c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Tvs Sale - Buy tvs", + "title": "Compare40", + "targetUrl": "compare40.com/Tvs/Sale" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "x3uhuK7aLGkU", + "name": "Buy Television" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1de4c38e-5d09-458a-a9a2-85e4fa331ef6", + "name": "hobbies", + "startAt": "2017-09-24T19:35:37.946Z", + "endAt": "2019-09-24T19:35:37.946Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "12861f6f-81c7-48f6-98c1-555e6f3dbccf", + "creativeSets": [ + { + "creativeSetId": "b9b16099-2a1f-4044-aa58-329bcd29607a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "26d12380-401a-43d7-a83b-9adad13bbc0c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Art Crafts - Up To 70% Savings", + "title": "Compare99", + "targetUrl": "www.compare99.com/shopping/artcrafts" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "ueFaBreO21-9", + "name": "Arts and Crafts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1332c2f7-e70a-47e9-87ca-4a21a60b3373", + "name": "sports", + "startAt": "2017-09-24T19:35:38.267Z", + "endAt": "2019-09-24T19:35:38.267Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "12861f6f-81c7-48f6-98c1-555e6f3dbccf", + "creativeSets": [ + { + "creativeSetId": "21cc00ad-1970-496b-8e38-edadebc8496f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "60ce4693-c318-4402-89ab-fb59a3a0744c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cheerleader Check Lowest Prices - Buy Today!", + "title": "Compare99", + "targetUrl": "www.compare99.com/shopping/cheerleader" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "ar7C1cuDv9N", + "name": "Cheerleading Pom Poms" + } + ] + }, + { + "creativeSetId": "3155bfb4-5675-426d-818c-4c9cc17a1d25", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "789d9cae-3666-4a4c-a1e6-eddb1e0fc3a0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hockey Supplies Save up to 70% - Prices Checked 2hrs ago", + "title": "Compare99", + "targetUrl": "www.compare99.com/hockey-supplies" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "hAIdxFZ19kvh", + "name": "Hockey Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "22bdb9ce-ef11-4440-9d0f-aefd54492cdd", + "name": "general", + "startAt": "2017-09-24T19:35:39.264Z", + "endAt": "2019-09-24T19:35:39.264Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0fb0879b-7961-431f-a2d0-8f49796b3a0c", + "creativeSets": [ + { + "creativeSetId": "cad9ce9f-c28c-4fac-83d5-b3725e79cf98", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ac78e486-2f30-4123-bcf8-04c1d61ad305", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 10 Best Credit Card Offers - 0% Intro APR & Bonus Offers", + "title": "Comparecards", + "targetUrl": "www.comparecards.com/credit-cards/best" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "OAA-T668LRa", + "name": "Fuel Cards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3fc747e3-7767-40a4-b0f9-f3bdf4425a2e", + "name": "general", + "startAt": "2017-09-24T19:35:39.931Z", + "endAt": "2019-09-24T19:35:39.931Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "950170ae-a8a0-4e02-9ce5-4c62701dbecc", + "creativeSets": [ + { + "creativeSetId": "d764cf50-b31a-4aad-8a54-2cf9e3520942", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f3922a09-9108-4fd7-bc50-18adc972e6bc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 10 Criminal Lawyers - Book Your Free Case Review!", + "title": "Comparehat", + "targetUrl": "comparehat.com" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "3kVpCcrPlDrA", + "name": "Legal Help" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b715d4d2-937b-492c-acc3-0db4c8efa623", + "name": "general", + "startAt": "2017-09-24T19:35:40.500Z", + "endAt": "2019-09-24T19:35:40.500Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d66078a6-8694-4614-b861-bd8819550f6d", + "creativeSets": [ + { + "creativeSetId": "a094aed9-7803-4ff5-89aa-1eff0fca9db0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "201761e5-db90-4539-b42b-89ca00a46708", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Chronic Asthma Medication - Get Top Results", + "title": "Comparemarts", + "targetUrl": "comparemarts.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "FFlMXuImzk5", + "name": "Asthma Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "04697e37-6907-43fc-939f-bcdd0540848f", + "name": "general", + "startAt": "2017-09-24T19:35:41.366Z", + "endAt": "2019-09-24T19:35:41.366Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0f6f3dec-d78e-4ba1-a984-ac4ba8ff7ca7", + "creativeSets": [ + { + "creativeSetId": "3cd722de-0e77-422a-83e7-03bd104b2b65", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7cee7fb0-4baa-4907-9692-4d523ce75356", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Degrees in Film Production - Compare Up to 4 Schools", + "title": "CompareSchools", + "targetUrl": "film.comparetopschools.com/FilmProduction/DegreePrograms" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "BAhEnDxcxBo", + "name": "Film Production Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ac509b3a-265d-4922-861e-b3044d978051", + "name": "general", + "startAt": "2017-09-24T19:35:42.036Z", + "endAt": "2019-09-24T19:35:42.036Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "59f7d4ae-fbe8-4e6c-bf0f-01d63eb0ba4a", + "creativeSets": [ + { + "creativeSetId": "94d52901-7b40-4191-9afc-adaf78e242e4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cda144f4-c011-4b62-bdf8-d8bd6640f2eb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 5 Jewelry Shops - Jewelry Shops", + "title": "CompareUK", + "targetUrl": "compareuk.net/Jewelry-Shops" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e2917a35-2970-44d1-8d80-0a5f472ea70a", + "name": "general", + "startAt": "2017-09-24T19:35:42.663Z", + "endAt": "2019-09-24T19:35:42.663Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "65a1b9b8-c59c-4ddf-b3bc-30fe49ae7357", + "creativeSets": [ + { + "creativeSetId": "e4fcf7d2-0df3-4300-9463-202540ac6ca0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "39e00f17-098d-4014-b75f-fb64d4d61051", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Competitive Cyclist® - Cycling", + "title": "Competitive Cyclist", + "targetUrl": "https://www.competitivecyclist.com/?CMP_ID=PD_BNmyDeviceIndicator=c014BR&CSPID=0916&utm_source=Bing&utm_medium=PSBR&k_clickid=56c066ae-6ff7-47a2-b165-7479b03cbea8&rmatt=tsid:1042818|cid:322418145|agid:1225955514877665|tid:kwd-76622256084404:loc-190|prd:{ProductId}|crid:76622241800063|nw:search|dvc:c|st:cycling|mt:be" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "eTjnQFANfQ5u", + "name": "cycling" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d8ed66ec-db6f-4dc2-a56d-3e8e7cc73f5f", + "name": "general", + "startAt": "2017-09-24T19:35:43.256Z", + "endAt": "2019-09-24T19:35:43.257Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "94294c82-11b0-40b4-8e68-8ac6c74688ff", + "creativeSets": [ + { + "creativeSetId": "fa2d5c7f-5f5b-4945-b3bf-7736b8c4dbe1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6329cfc7-0428-43bd-bbcb-231bc527e987", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Huffy Sports Equipment", + "title": "CompetitiveEdgeProducts", + "targetUrl": "www.CompetitiveEdgeProducts.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "cYoy1u-mrxD", + "name": "Football Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c16d56d7-72d3-4cea-9bfb-03c52ec7f96f", + "name": "general", + "startAt": "2017-09-24T19:35:44.202Z", + "endAt": "2019-09-24T19:35:44.202Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7e762d1a-752d-41fc-833e-a7d2a59e9bfb", + "creativeSets": [ + { + "creativeSetId": "8cf5f491-d1e9-4540-85db-d32b59c10f76", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d2f6cd82-2da8-451e-915d-2271dbbbf978", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Drug Tests For All Drug Types - Bulk Pricing - Fast Shipping", + "title": "Confirmbiosciences", + "targetUrl": "www.confirmbiosciences.com/drug_test_for/all_drugs" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "ZFoOZxsAWHI", + "name": "Drug Tests" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "42e3511c-1119-48af-af88-f5638b0591ac", + "name": "general", + "startAt": "2017-09-24T19:35:44.843Z", + "endAt": "2019-09-24T19:35:44.844Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "03fa8004-f819-4dde-8c40-a1a20b02737f", + "creativeSets": [ + { + "creativeSetId": "7744b5c0-daad-4791-9cd8-fbdf066851eb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b4db949f-8a5b-495d-8b12-c37f93aa675a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Connecting Threads™ - Fabric, Kits, Patterns & More", + "title": "Connectingthreads", + "targetUrl": "www.connectingthreads.com/quilting" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "93bPE8nabJd", + "name": "Sewing Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "55cb1b39-7931-47b5-b142-372dfa2521f5", + "name": "general", + "startAt": "2017-09-24T19:35:45.577Z", + "endAt": "2019-09-24T19:35:45.577Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8f107a2b-05ab-4521-9688-8c2c69ceb74e", + "creativeSets": [ + { + "creativeSetId": "55ea6529-f3ba-44d0-850d-b5b86fdefc33", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6a0cfbad-5b1f-4016-8b22-89600c99a915", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Constant Contact ® - ConstantContact.com", + "title": "Constant Contact", + "targetUrl": "https://www.constantcontact.com/index.jsp?utm_id=YAH-103928&cc=YAH-103928&utm_source=Yahoo&utm_medium=cpc&utm_term=consant+contact+Broad&utm_campaign=PPC_BRAND_EMM_PERF_PROSP_PROSPECT_NULL&utm_content=Constant+Contact&pn=search&keyword=286969552063&adgroup=7508125277&device=c&ef_id=WmZBUAAAAF4YWyKh:20180205231030:s" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "lRVDA84ey3V_", + "name": "marketing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9acc401b-ecdc-419d-92c3-95d4f140ec3d", + "name": "general", + "startAt": "2017-09-24T19:35:46.240Z", + "endAt": "2019-09-24T19:35:46.241Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "517e41e6-2a1b-4742-a933-063a0e2a784c", + "creativeSets": [ + { + "creativeSetId": "721c49f6-b860-4906-a64a-27c4eefd5bbc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fa700224-b8a8-40d0-ab3b-d792714ca4e5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Learn Why You're Constipated - OIC—A Different Constipation", + "title": "Constipationfromopioids", + "targetUrl": "www.constipationfromopioids.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "RhUDc8iP5Xa", + "name": "Chronic Pain Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "60f465b7-486a-4c60-b713-0bf2555982e3", + "name": "general", + "startAt": "2017-09-24T19:35:46.856Z", + "endAt": "2019-09-24T19:35:46.856Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c0ed6133-2426-41e6-ae79-95d07cc1634a", + "creativeSets": [ + { + "creativeSetId": "8988e0c6-8774-45b7-a55e-0c7fa1c0cb91", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0d635548-88e5-4dc6-85ae-ff950fc347be", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Minivan Reviews - Consumer Reports", + "title": "Consumer Reports", + "targetUrl": "https://www.consumerreports.org/cro/cars/minivans.htm" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "8V_5ag8uRIaV", + "name": "minivans" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5c7f2865-2eb2-4667-9737-8f77bef5e9a5", + "name": "general", + "startAt": "2017-09-24T19:35:47.510Z", + "endAt": "2019-09-24T19:35:47.510Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "01d67e4b-dfda-4c92-ac6e-d2390b9b0e0f", + "creativeSets": [ + { + "creativeSetId": "f3926fc8-2c01-4f1d-9da6-2a54583b5ac6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3230e6c3-4ec9-4b39-a274-c01551a21da5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Consumer Cellular® - Get 2 Lines For Just $40/Mo.", + "title": "Consumercellular", + "targetUrl": "www.consumercellular.com/Plans" + } + } + ], + "segments": [ + { + "code": "05KGovyhnUj", + "name": "cell phones" + }, + { + "code": "PDcNk9LToal", + "name": "cell phones" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bbea64eb-c6b2-44ab-8d2f-4bbead64ad76", + "name": "general", + "startAt": "2017-09-24T19:35:48.436Z", + "endAt": "2019-09-24T19:35:48.436Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2225efad-0c17-403d-915d-1a0264556052", + "creativeSets": [ + { + "creativeSetId": "922d7af2-22f9-4c1f-aab4-8097a8b78493", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dada46be-7daa-4bd3-a047-cd4c4d6fece8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "10 Best Car Insurance – 2018 Top Car Insurance Ranking", + "title": "Consumersadvocate", + "targetUrl": "www.consumersadvocate.org" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "oYzWfQaOXCj", + "name": "Car Insurance" + } + ] + }, + { + "creativeSetId": "4b72ca98-18b9-4455-9e68-fd3dc428d54b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "55f02497-1fb4-4d62-ba39-dee8a41a45ef", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "10 Best Home Refinance Lenders - Find Your Mortgage & Save", + "title": "Consumersadvocate", + "targetUrl": "www.consumersadvocate.org/Mortgage-Refi/Comparison" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "ME0864i1Nfkc", + "name": "Refinance Home" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "66779731-a4f6-4a25-ae56-be76c76cabb6", + "name": "general", + "startAt": "2017-09-24T19:35:49.257Z", + "endAt": "2019-09-24T19:35:49.257Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "191c6e6e-6f20-4e92-b4a1-0070c84a8c99", + "creativeSets": [ + { + "creativeSetId": "d77e6019-1acd-4879-af40-1fd25089a290", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "76075b4b-57fc-4fa3-86c1-1fba86406d74", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "What Is Online Stock Trading - Results Here", + "title": "Consumersearch", + "targetUrl": "www.consumersearch.com/What Is Online Stock Trading/Here" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "_PEMAp6RE_k9", + "name": "Learn Stocks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "114bab4e-a55f-4364-9f39-d118a755cd70", + "name": "general", + "startAt": "2017-09-24T19:35:49.983Z", + "endAt": "2019-09-24T19:35:49.984Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "70bf8c28-dbe6-4cca-ae64-039f82cd428b", + "creativeSets": [ + { + "creativeSetId": "27ddf789-bfed-43cf-b1f6-3f0cd8740a53", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d37d77da-cf8c-4f04-b8cf-632d962c7185", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "CoolSculpting® Official Site - No Surgery. No Downtime.", + "title": "Coolsculpting", + "targetUrl": "www.coolsculpting.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a5ccd50a-4d7a-44b5-9095-720f9f24b20e", + "name": "general", + "startAt": "2017-09-24T19:35:50.633Z", + "endAt": "2019-09-24T19:35:50.634Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b04ce539-6e81-43fc-90bb-af495c7ecd09", + "creativeSets": [ + { + "creativeSetId": "417dfb9b-7424-4092-a3bd-834c0a41ce7b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "55e6f309-e38a-45e6-9dde-0204227732e2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "As Low as $19.99-Free Cookbook - The Copper Chef™ Collection", + "title": "Copperchef", + "targetUrl": "www.copperchef.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "9Roh9lJ0tSd", + "name": "Cooking Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fecb962f-e4b0-41e4-950f-9549eea51d3c", + "name": "general", + "startAt": "2017-09-24T19:35:51.646Z", + "endAt": "2019-09-24T19:35:51.646Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "57adf1ac-b2b6-4b8f-8350-69da80f5f85b", + "creativeSets": [ + { + "creativeSetId": "af79053c-c4c1-4d5e-bca3-3b7e4f2803e0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c4956a31-1bf1-431b-bdfc-72178741ae27", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "$25 Online Parent Course | CourseForParents.com", + "title": "CourseForParents.com", + "targetUrl": "http://courseforparents.com/" + } + } + ], + "segments": [ + { + "code": "fxvQmBzWeHv", + "name": "family & parenting" + }, + { + "code": "eDpwabDsmvKP", + "name": "family & parenting" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3e87d799-b97a-45c0-a6ff-6c691bb77b22", + "name": "general", + "startAt": "2017-09-24T19:35:52.493Z", + "endAt": "2019-09-24T19:35:52.493Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "05b46e12-7694-45c9-a8e3-00eb1d12b20d", + "creativeSets": [ + { + "creativeSetId": "7bcfdfe0-2331-4a98-af85-fba813098106", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d1693f9f-fc03-44e5-b492-786c934eeca2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Publish Your Book - Get Your Free Author's Kit", + "title": "Covenantbooks", + "targetUrl": "covenantbooks.com/publish" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "KjrAF8XxEDc", + "name": "Book Publishing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "146f4fa7-daf2-4926-a1b4-aa4ff7f36b9f", + "name": "general", + "startAt": "2017-09-24T19:35:53.247Z", + "endAt": "2019-09-24T19:35:53.247Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e8e6b648-02f4-4d4b-bacb-bc7435ef1cb4", + "creativeSets": [ + { + "creativeSetId": "896782c3-5b2e-4db0-97a5-39cc1e2e67e9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7abe4940-e79f-4c7e-bc98-2a72723c10e8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Craftsy® (Official Site) - Let's Make Something | craftsy.com", + "title": "Craftsy", + "targetUrl": "www.craftsy.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "ueFaBreO21-9", + "name": "Arts and Crafts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a51e27f4-ddae-47bd-8a90-47be498b803c", + "name": "general", + "startAt": "2017-09-24T19:35:53.836Z", + "endAt": "2019-09-24T19:35:53.836Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "db2f2c81-7565-4c8a-890d-7d43dfd092a6", + "creativeSets": [ + { + "creativeSetId": "30be6d38-bbe1-4bcc-b0af-b51b2be89b66", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d717f019-b31b-4cc9-b184-b8d4a976d48d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Cricket's Best Deals - Your One-Stop-Shop | cricketwireless.com", + "title": "Cricket Wireless", + "targetUrl": "https://www.cricketwireless.com/current-phone-and-plan-deals" + } + } + ], + "segments": [ + { + "code": "05KGovyhnUj", + "name": "cell phones" + }, + { + "code": "PDcNk9LToal", + "name": "cell phones" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "aa62cd22-cb05-4979-a783-1e5b4daf3b56", + "name": "general", + "startAt": "2017-09-24T19:35:54.426Z", + "endAt": "2019-09-24T19:35:54.426Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a8b76e26-2dcb-4067-bb7d-7144af4b6f95", + "creativeSets": [ + { + "creativeSetId": "5a18fc66-f2c7-4293-964d-802b5d41a39a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f75358d4-28bf-4791-9557-43c8dcde0da8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Saltwater Fishing Reels Online - Distributors, Join Us!", + "title": "Crov", + "targetUrl": "www.crov.com/Fishing Reels" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "tAc14oAedDq", + "name": "Fishing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f067e32e-c576-4aee-b886-8f771a52ed91", + "name": "general", + "startAt": "2017-09-24T19:35:54.998Z", + "endAt": "2019-09-24T19:35:54.999Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0eb227bb-f5a5-413d-942c-78a6be381dcc", + "creativeSets": [ + { + "creativeSetId": "325347ac-c5e7-404d-9da8-4f5b08a60df1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "96d556d7-6d36-4a1f-84d5-b66fe552576d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Gymnastics Trophies From $2.99 - Same Day - Low Trophy Prices", + "title": "Crown Awards", + "targetUrl": "https://www.crownawards.com/StoreFront/SGM.Gymnastics_Trophies_And_Awards.cat-Trophies?msclkid=c918c33e35eb16167a2c9946ad28307e" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "t0f1SW6StquL", + "name": "gymnastics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1bfe05c2-f23c-4553-a705-66b4e0d98ecc", + "name": "general", + "startAt": "2017-09-24T19:35:56.634Z", + "endAt": "2019-09-24T19:35:56.634Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "99072185-2fb4-40e3-8d31-f5009fe05886", + "creativeSets": [ + { + "creativeSetId": "ba78ceb5-fa46-4e98-86e3-f0e7b92ee0c6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6acf49dc-d18e-47d6-b00b-699542a3f4df", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cricket Medals From 89¢ - Same Day - Low Medal Prices", + "title": "Crownawards", + "targetUrl": "www.crownawards.com/Cricket/Medals" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "GElRy07ca5jr", + "name": "Cricket Medals" + } + ] + }, + { + "creativeSetId": "8a9ad33b-c0f0-443e-ad23-53a3207af4f4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a7a6bffc-f11a-4c74-b9bb-09809ee1be3d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Gymnastics Awards - Gym Award - Same Day Ship Until 5PM EST", + "title": "Crownawards", + "targetUrl": "www.crownawards.com/Gymnastics/awards" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "nW9RcA3E3JA", + "name": "Gymnastics Awards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d7eb6688-3586-4805-b6f3-86daafe49403", + "name": "general", + "startAt": "2017-09-24T19:35:57.481Z", + "endAt": "2019-09-24T19:35:57.481Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c6226865-4de7-4be9-b3e2-293d6527de31", + "creativeSets": [ + { + "creativeSetId": "b8fa3a3c-3523-436a-9c2b-b0853b3254cb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "028aa658-fc5e-4ded-b4ec-bb453b5bc1ad", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Trophies As Low As $2.95 - Same Day Shipping Until 5PM EST", + "title": "CrownAwards", + "targetUrl": "CrownAwards.com/Trophies" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "lUKHxt2iV2P9", + "name": "Fencing Trophies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "60bc06dc-e7d4-4e57-b9db-a43adae8e20d", + "name": "general", + "startAt": "2017-09-24T19:35:58.189Z", + "endAt": "2019-09-24T19:35:58.189Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b3f7a370-2cd5-47e5-888e-ee09de7cd914", + "creativeSets": [ + { + "creativeSetId": "7dc2cf58-bf91-418d-b51c-6defe03282bc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d3937870-a1ba-4b63-9fa5-2d817110a83b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cruises.com - Official Site – We Are All Things Cruising", + "title": "Cruises", + "targetUrl": "www.Cruises.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "xrH2KKuKBDm", + "name": "Cruise Vacations" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "94944abc-3dd9-4104-8f7a-c622060e3488", + "name": "general", + "startAt": "2017-09-24T19:35:58.766Z", + "endAt": "2019-09-24T19:35:58.767Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "15824bc5-4135-4322-861f-64334d2d8038", + "creativeSets": [ + { + "creativeSetId": "8e466337-9707-48a2-83e2-62f14581cf46", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "957e0807-0e30-4050-87fb-bd538862b930", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Huge Selection of Cruise Deals - Nobody Beats Our Cruise Prices", + "title": "Cruisesonly", + "targetUrl": "www.cruisesonly.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "xrH2KKuKBDm", + "name": "Cruise Vacations" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "97bff857-d641-47b1-84e9-3ec59b827e5f", + "name": "general", + "startAt": "2017-09-24T19:35:59.948Z", + "endAt": "2019-09-24T19:35:59.948Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f82571b2-4b34-4733-8087-fc2ddde61f15", + "creativeSets": [ + { + "creativeSetId": "d1674241-418b-4380-8006-875a58487b44", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3c7d7727-bd82-40cc-bcb5-afef77c230c1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cryptocurrency Trading Bot - 24/7 On Top Of Your Game - The No", + "title": "Cryptohopper", + "targetUrl": "www.cryptohopper.com/Free-Month" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "FIwLp4gtICpI", + "name": "Crypto Mining" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6e4e3818-3648-4bec-aa30-a2a7bf4cfd72", + "name": "general", + "startAt": "2017-09-24T19:36:00.509Z", + "endAt": "2019-09-24T19:36:00.510Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ed562666-7cf3-478d-8e71-9617cc55bc3e", + "creativeSets": [ + { + "creativeSetId": "3ce8d80b-0db5-4ff9-b2d4-3ecee210aaf5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a20e8173-5d65-4873-83c3-0dd9dbf728e5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cryptomining.Farm - Since 2014!", + "title": "Cryptominingfarm.io", + "targetUrl": "www.cryptominingfarm.io" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "FIwLp4gtICpI", + "name": "Crypto Mining" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b694f32e-9300-46e1-8307-b315530ff45f", + "name": "general", + "startAt": "2017-09-24T19:36:01.068Z", + "endAt": "2019-09-24T19:36:01.068Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "88518cb5-8062-49a5-9bad-e94d257d2204", + "creativeSets": [ + { + "creativeSetId": "aef0e7f1-dba3-4941-be97-eb02067ebb06", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "329d7af2-ae7f-4761-b86f-484ef2668e87", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "100% Custom Made Frames | Save up to 75% Off Retail‎", + "title": "Customframesolutions", + "targetUrl": "www.customframesolutions.com/ ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "18fq9aiLp0z", + "name": "body art" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6f2e0a5c-6d3c-44b9-97f0-1875eeecd084", + "name": "general", + "startAt": "2017-09-24T19:36:02.024Z", + "endAt": "2019-09-24T19:36:02.024Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5da99e04-b72a-413c-9df1-178a2f7a2df8", + "creativeSets": [ + { + "creativeSetId": "c587127e-08b9-4aed-8d0d-a0b860aed267", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bbe1e318-ce8c-4e06-af04-80565449d4bf", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "$38.99 for a Company Logo Made - We Graphic Design Company Logo", + "title": "Customlogoco", + "targetUrl": "order.customlogoco.com/Business-Logo/Designers" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "EjsX_m6RTAg", + "name": "Graphic Designers" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "00fb605c-4601-468d-b295-5ee92f98885f", + "name": "general", + "startAt": "2017-09-24T19:36:02.667Z", + "endAt": "2019-09-24T19:36:02.667Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b9656e4d-0723-4568-9cb9-aec06854138f", + "creativeSets": [ + { + "creativeSetId": "950a0901-a310-4c46-a4a8-ec0e759871c8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d0e8ecba-78ee-4366-b9f8-8577783fb239", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Personalized Golf Tees - Free Proof / Set-Up, ships in 5 day", + "title": "CustomMadeGolfEvents", + "targetUrl": "www.CustomMadeGolfEvents.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "hDQ_wObOKVe", + "name": "Golf Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7bcfdc3a-1135-4293-ba4e-769f77282bd6", + "name": "general", + "startAt": "2017-09-24T19:36:03.389Z", + "endAt": "2019-09-24T19:36:03.389Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f4aed787-c22d-4241-a2e6-b42be6df4c2c", + "creativeSets": [ + { + "creativeSetId": "c6f7c03e-a5ab-4f50-adf4-523241890eb2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6ca26f6f-a6d6-4274-9962-e0cff810b0b9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Order Metal Online | Cut2SizeMetals.com", + "title": "Cut2SizeMetals", + "targetUrl": "www.Cut2SizeMetals.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "70IAZkzKPe0E", + "name": "Online metals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "786116b1-df9e-4807-aa2a-afdf26d06351", + "name": "general", + "startAt": "2017-09-24T19:36:04.012Z", + "endAt": "2019-09-24T19:36:04.012Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "147d0233-468a-44d1-902c-27ecd0bc8e95", + "creativeSets": [ + { + "creativeSetId": "58be02f8-b187-4751-abc4-4fb2c68924ae", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bfa3e5dd-4a84-4952-8349-0647a9341178", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "CVS Pharmacy® Hours - 24 Hour Locations", + "title": "Cvs", + "targetUrl": "www.cvs.com/StoreLocator" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "sOqbf6PQ3c-", + "name": "Online Pharmacy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5a50fe90-a5dd-490a-90a3-fc32b3f5d442", + "name": "general", + "startAt": "2017-09-24T19:36:04.567Z", + "endAt": "2019-09-24T19:36:04.567Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5aa8b95b-ca52-47e2-800f-55ca97c118a9", + "creativeSets": [ + { + "creativeSetId": "a5b5788a-b7a1-4335-875c-dfaacbcc1fb2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e7f1b4c7-3cb9-4933-a51c-c8d6d9865395", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Gaming Pc Powered By - Intel® Core™ Processors", + "title": "Cyberpowerpc", + "targetUrl": "www.cyberpowerpc.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "o7Q1hjps7Vm", + "name": "Online PC Games" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "77a7d840-71f7-46b6-bece-1db987564461", + "name": "general", + "startAt": "2017-09-24T19:36:05.153Z", + "endAt": "2019-09-24T19:36:05.153Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "527d3908-cce1-48c0-a9bd-8967a17394fb", + "creativeSets": [ + { + "creativeSetId": "3efd58a5-ef19-41c7-9b94-33264daa4baa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "97e8b34d-fbe0-4b2f-9af6-6f80bb478fc9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Complete Skateboards", + "title": "DaddiesBoardShop", + "targetUrl": "DaddiesBoardShop.com/Skateboards" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FWG6gM9kOij", + "name": "Skateboards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d71cd147-8b65-4c41-aa4d-66789826fe0b", + "name": "general", + "startAt": "2017-09-24T19:36:05.882Z", + "endAt": "2019-09-24T19:36:05.882Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c07f3b8e-580a-4f94-b2bb-4b04c3630deb", + "creativeSets": [ + { + "creativeSetId": "41a28f74-0450-48f1-9fed-3ece1c16aeb9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e7c90c41-241a-4793-a4ab-d51512e8c8ab", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Benefits Of Walking | DailyHealthLifestyles.com", + "title": "Daily Health Lifestyles", + "targetUrl": "http://dailyhealthlifestyles.com/9-health-benefits-of-walking-everyday/?utm_source=walking&utm_medium=walkingbenefits&utm_campaign=bing" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "NMjGwuSXLXo0", + "name": "walking" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b648ab1b-6011-4128-955c-ca531eb0119b", + "name": "general", + "startAt": "2017-09-24T19:36:06.525Z", + "endAt": "2019-09-24T19:36:06.525Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "28728041-26a6-43c0-897b-fb4892fef19d", + "creativeSets": [ + { + "creativeSetId": "c9e3e045-43e3-4792-b9a3-1804811fbcff", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "85cf3e09-6efa-4742-8aea-99429ec310d2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Daily Deals up to 90% Off - New Deals Everyday.", + "title": "Dailysale", + "targetUrl": "www.dailysale.com/Daily-Deals" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "VulAzM57Pkqw", + "name": "Online Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e298b9bc-af24-4bb3-b361-3384048d9996", + "name": "general", + "startAt": "2017-09-24T19:36:07.082Z", + "endAt": "2019-09-24T19:36:07.082Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7bbfa74f-a07c-45c8-9abe-3ddaf9090f39", + "creativeSets": [ + { + "creativeSetId": "65389ceb-9fc7-49a1-9485-2dae3c37299a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b6e2d689-5d55-4636-b130-121cfec88ed1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Darby Dental Supply", + "title": "Darbydental", + "targetUrl": "www.darbydental.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "kORnSRyr0FJ", + "name": "Metalwork Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7c1a6baa-bc22-436b-b2cd-791f2116bf43", + "name": "general", + "startAt": "2017-09-24T19:36:07.831Z", + "endAt": "2019-09-24T19:36:07.831Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ca5fb439-5db9-4706-9ffc-2748f1a4f24c", + "creativeSets": [ + { + "creativeSetId": "085f2a82-c09a-4c90-afdf-29f06b45020b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "297cc2a5-37a1-46a8-a065-b228c2eae836", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Darts Clearance Sale - Darts.com", + "title": "Darts.com", + "targetUrl": "https://www.darts.com/darts?utm_source=bing&utm_medium=cpc&utm_campaign=Product+Category+-+PARTNERS&utm_term=darts&utm_content=Darts" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "aCSt2_OarGU7", + "name": "darts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "68a5a6fa-c0fb-4dd2-a840-4934fb632fee", + "name": "general", + "startAt": "2017-09-24T19:36:08.441Z", + "endAt": "2019-09-24T19:36:08.441Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e8ceb05f-8bd6-42b0-9a15-baa42a5bb67e", + "creativeSets": [ + { + "creativeSetId": "1418f57e-4214-4307-b3f7-b51453f83ff7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "59bdbc68-bcdc-4f64-bcbd-6ed81b7c431c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top (10) Sites of (2018) - Ukrainian Women Dating Sites", + "title": "Dating-rating", + "targetUrl": "dating-rating.com/UkrainianWomen/Rating2018" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "MHIWE-lPdQmA", + "name": "Dating" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bad35a58-6288-43e7-a43b-0c46a2a0ecef", + "name": "general", + "startAt": "2017-09-24T19:36:08.998Z", + "endAt": "2019-09-24T19:36:08.998Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8874b9d6-a88f-4dab-bc60-3cfb866a6522", + "creativeSets": [ + { + "creativeSetId": "9ce5b9d4-d2dd-454b-8bd3-8c9fb0a8346f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a75c4c4d-44eb-4074-9564-7971ea963838", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Chat Rooms Online | Find & Search Quick Results‎", + "title": "Dating.com", + "targetUrl": "www.dating.com/Dating ‎" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "MHIWE-lPdQmA", + "name": "Dating" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "004125b1-9730-4cbe-877f-f7152abff6f0", + "name": "general", + "startAt": "2017-09-24T19:36:09.565Z", + "endAt": "2019-09-24T19:36:09.566Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "794fd44f-b1d2-4953-970a-a06d3c4df1a1", + "creativeSets": [ + { + "creativeSetId": "feca4a94-c985-4665-95c9-3d19859d5033", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d627fbef-f147-4a6d-b822-4938583e33f9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "David Yurman® Pearl Jewelry | Explore The Official Site‎", + "title": "Davidyurman", + "targetUrl": "www.davidyurman.com/Pearl/Jewelry ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6b726cd1-828e-4312-9f7d-b5b785eb8472", + "name": "general", + "startAt": "2017-09-24T19:36:10.116Z", + "endAt": "2019-09-24T19:36:10.116Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2a65e2ae-be1b-4a1a-ae3b-42dbab8fd895", + "creativeSets": [ + { + "creativeSetId": "b4081115-8d79-4500-b4a5-ffc12f850b5b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b658bb88-0c06-4144-b008-98444f42a221", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Daywind Accompaniment Tracks - Your Favorite Christian Songs", + "title": "Daywind", + "targetUrl": "daywind.com" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "WOkWXQNNvUq", + "name": "Christian Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fc8c5391-d480-4e67-99fe-67a995b5c4b0", + "name": "general", + "startAt": "2017-09-24T19:36:10.665Z", + "endAt": "2019-09-24T19:36:10.665Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7de09cce-8976-48f0-8b37-c6f5490f4a4f", + "creativeSets": [ + { + "creativeSetId": "69f5d1a8-4702-44a9-b561-3b2a50bad50f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "77accdf0-1285-4527-abf6-973a6d15aa87", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Personal loan - All You Need To Know", + "title": "Dealatopia", + "targetUrl": "Dealatopia.com/Loans" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "KclHbUft33H", + "name": "Personal Finance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3acd8677-9e77-407d-b209-4e3fd42fd7b7", + "name": "general", + "startAt": "2017-09-24T19:36:11.478Z", + "endAt": "2019-09-24T19:36:11.478Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "fdc52eef-c1bc-4166-b040-e6f58b2a3e9c", + "creativeSets": [ + { + "creativeSetId": "bbf83a3f-bb84-4328-9b8a-fb9c26937bb8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b1501cfa-c608-4685-9d4f-ef44f7a5ff32", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "New 2017 Car Clearance - Huge Price Cuts on New Cars", + "title": "Dealers.car", + "targetUrl": "dealers.car.com/Clearance" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "tGlEpkd2UFQ", + "name": "New Cars" + } + ] + }, + { + "creativeSetId": "d1a9653c-ff1a-46ec-bf48-18dd62dacade", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cd427eb1-e949-45b8-b921-c304e3072700", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2018 Lexus RC Clearance - Get Limited Time Only Offers", + "title": "Dealers.car", + "targetUrl": "dealers.car.com/Lexus/RC" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "eJu7bz6XQx4", + "name": "RC Vehicles" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cc3486a2-fe54-47f9-90a1-f69a9a2d6564", + "name": "general", + "startAt": "2017-09-24T19:36:12.430Z", + "endAt": "2019-09-24T19:36:12.430Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c699c5d4-faf8-40f5-bafe-8364520a329e", + "creativeSets": [ + { + "creativeSetId": "3aadcd58-c6a0-494c-b1b1-647ee068c885", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "01c47d91-f2bb-43db-a4f6-fd61de20f9d8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cell phone plans - Lookup Quick Results Now | deals2017.net", + "title": "Deals2017", + "targetUrl": "deals2017.net" + } + } + ], + "segments": [ + { + "code": "05KGovyhnUj", + "name": "cell phones" + }, + { + "code": "PDcNk9LToal", + "name": "cell phones" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a933b343-d1f4-492c-b36a-167ce440467b", + "name": "general", + "startAt": "2017-09-24T19:36:13.002Z", + "endAt": "2019-09-24T19:36:13.002Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e1ece18a-232f-46b2-8c6f-730a65ee65f9", + "creativeSets": [ + { + "creativeSetId": "288f7fdc-4e85-4e59-947f-ca1c704fca94", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "15abf244-0d87-4744-98af-fabd684553d0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Adult Toy Store - Free & Discreet Shipping | dearlady.us", + "title": "Dearlady", + "targetUrl": "www.dearlady.us/Adult_Toys" + } + } + ], + "segments": [ + { + "code": "BLz4HWBCFN", + "name": "Adult" + }, + { + "code": "l3UPx578DUq", + "name": "Adult Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8898690b-e1de-46d3-a2a9-403f11054b37", + "name": "general", + "startAt": "2017-09-24T19:36:13.739Z", + "endAt": "2019-09-24T19:36:13.739Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "81a5b561-34cb-4ecd-9c29-a03bdd006f91", + "creativeSets": [ + { + "creativeSetId": "a9095e64-e576-4a87-b775-2f0037763a4e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "81341596-8708-491e-a90e-e9970fd9f492", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Delivery Food - Find Relevant Information | dealstores.net", + "title": "Deas", + "targetUrl": "dealstores.net/Meal-Kit" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "YnihSiXSdRZ", + "name": "Food Delivery" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e141506b-4606-43dd-86f5-d1b7de10d301", + "name": "general", + "startAt": "2017-09-24T19:36:14.418Z", + "endAt": "2019-09-24T19:36:14.418Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "393a96dd-c3e5-43e2-ab04-c2e733d30d57", + "creativeSets": [ + { + "creativeSetId": "c5eac312-520a-472b-88dc-e6d39b7c1deb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d1f2e20f-81b4-421f-8cf3-f83dd312532e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dell.com - Official Site - Shop Cyber Monday in July", + "title": "Dell", + "targetUrl": "www.dell.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "r-ofzMLNsK8", + "name": "Dell Computers" + } + ] + }, + { + "creativeSetId": "787bf9d6-8356-411f-8c61-ffa4b88589fc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "48137a63-ea6d-4205-9c9d-00c610ee0d33", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dell Computers With XP", + "title": "Dell", + "targetUrl": "http://www.dell.com/en-us/shop/cty/sc/laptops/inspiron-laptops?CID=282641&st=windows+computer&VEN1=tZ1xizzx,5873799432,901pdb6671,c&VEN2=e,windows+computer&LID=5373557&dgc=st&dgseg=dhs&acd=123098073120600&VEN3=113104258717296793" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "mjC6X5y92wPt", + "name": "windows" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "05a50e0b-23ae-4bb6-9e16-003d67e461a1", + "name": "general", + "startAt": "2017-09-24T19:36:15.288Z", + "endAt": "2019-09-24T19:36:15.289Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b3bc69b2-f0eb-493a-bcc1-284b989cd580", + "creativeSets": [ + { + "creativeSetId": "284d1cce-136c-480a-8d76-18e93a664fe7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a7d8d512-c2c3-4871-80a5-51aff011f78f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dental Care", + "title": "DentalPlans", + "targetUrl": "www.DentalPlans.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "L-b6nomirMS", + "name": "Dental Care" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f3bf6e70-b096-4c41-b695-83122bbdb05f", + "name": "general", + "startAt": "2017-09-24T19:36:15.850Z", + "endAt": "2019-09-24T19:36:15.850Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f73865e3-17e6-4034-ad61-33c2f76aff4d", + "creativeSets": [ + { + "creativeSetId": "f177b10e-0507-41f7-b817-c02b6db59264", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c1a008c2-b78b-4e3a-89af-e832e8ae3c16", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dental Care - Save 10-60% on Dental Care - DentalPlans.com", + "title": "DentalPlans.com", + "targetUrl": "https://www.dentalplans.com/lp-ppc/dental-care?affid=63982&mkwid=dFeATViV|pcrid|83219291953061|pkw|dental%20care|pmt|be|pdv|c&utm_source=bing&utm_medium=cpc&utm_campaign=National%3A+Dental+Care+-+Exact&utm_term=dental%20care&msclkid=a960a1970a8d10111c7afbeff6ac8e44" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "L-b6nomirMS", + "name": "Dental Care" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8eb938da-a50b-40a2-9966-f3b1c06f8a2d", + "name": "general", + "startAt": "2017-09-24T19:36:16.401Z", + "endAt": "2019-09-24T19:36:16.401Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "54da4fb0-9958-4b9f-8fd2-a38e3fdb5d1b", + "creativeSets": [ + { + "creativeSetId": "1bf6db9a-2a84-43a2-a806-4621c2f5f692", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9b2c1118-b79d-4db4-8685-c88505678808", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "DesignSeed. Co - Unlimited Graphic Design $89 | designseedco.com", + "title": "DesignSeed. Co", + "targetUrl": "https://www.designseedco.com/en/landing" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "Jb3CpbBI1pNN", + "name": "graphics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e2dcb67f-78ca-4df0-bf3d-27d22d63dada", + "name": "general", + "startAt": "2017-09-24T19:36:16.959Z", + "endAt": "2019-09-24T19:36:16.959Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "05fadb65-cdc2-4ffb-a1cd-92e86c7372a3", + "creativeSets": [ + { + "creativeSetId": "a369f30f-f972-41de-97e1-9aa72ead79dd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5f8915dd-2d14-44c1-9cf8-5ec6701b241e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Earn Your Bachelor's At DeVry – Computer Information Systems", + "title": "DeVry", + "targetUrl": "http://get-started.devry.edu/engineering?ca.mp=YAHOO&ab.sc=ps_yh_dvu_core-nonbrand-desktop_209337_pfx&cmpid=ps_yh_dvu_core-nonbrand-desktop_209337_pfx&vc=209337&ca.kw=computer+programming]&ca.target=kwd-303423450287&ca.cr=33911724159&ca.mt=e&cb.device=c&KWID=43700024816468911&sc_2=computer+programming]&ca.kw=computer+programming]&ca.target=kwd-303423450287&ca.cr=33911724159&ca.mt=e&cb.device=c&KWID=43700024816468911&SC_1=CNmqvq7qj9kCFQ_pfgodv4MAqg&SC_2=computer+programming]&gclid=CNmqvq7qj9kCFQ_pfgodv4MAqg&gclsrc=ds" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "kpWCboO7YYGR", + "name": "programming" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d9755eed-4be1-4a0f-9a6c-cca83942db3f", + "name": "general", + "startAt": "2017-09-24T19:36:17.696Z", + "endAt": "2019-09-24T19:36:17.697Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "96505b6b-db30-4c2c-8969-14ca97498e7e", + "creativeSets": [ + { + "creativeSetId": "0a6fb618-cb28-4465-b534-286b32920126", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bbfcf14f-f28f-4493-9802-c70a62fe1298", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "DeVry University - Year-Round Class Offerings.", + "title": "DevryEdu", + "targetUrl": "www.devry.edu" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "w5KTA-1-lyt", + "name": "Online Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4b53cfc0-4562-4362-ac83-80531dc345ac", + "name": "general", + "startAt": "2017-09-24T19:36:18.243Z", + "endAt": "2019-09-24T19:36:18.244Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1cd4056d-99c4-4bb0-853b-5d847778ee60", + "creativeSets": [ + { + "creativeSetId": "cb54e03f-fe9c-4471-ba18-6f52a83afa5a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cb987b82-789b-4187-9d4b-a8007639addd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Completed Your Book - Looking for a Book Publisher?", + "title": "Di", + "targetUrl": "discoverpublishers.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "KjrAF8XxEDc", + "name": "Book Publishing" + } + ] + }, + { + "creativeSetId": "916c697d-1f73-4d24-ae06-165aaabecd1d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5b806d9b-677b-43b0-896f-ce6e44d17fd3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Natalie Dancewear - The online Dance Superstore", + "title": "Di", + "targetUrl": "www.DiscountDance.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "ar7C1cuDv9N", + "name": "Cheerleading Pom Poms" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f3fa77f7-0f73-48d2-8947-b2d6d0b07268", + "name": "general", + "startAt": "2017-09-24T19:36:19.073Z", + "endAt": "2019-09-24T19:36:19.073Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f70eb4e9-d04d-4025-824b-4e6a06724623", + "creativeSets": [ + { + "creativeSetId": "8247477c-544f-4bc4-bdb3-38892ad277e3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "41421d02-10d2-4d7a-b7a6-9a9655769ca7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Medication for Diabetes - Managing Your Blood Sugar", + "title": "Diabetes-option", + "targetUrl": "www.diabetes-option.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "VSR0lepFE8Hw", + "name": "Diabetes Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8d4119d8-a9d0-440c-a6c0-f09e435e26b0", + "name": "general", + "startAt": "2017-09-24T19:36:19.709Z", + "endAt": "2019-09-24T19:36:19.709Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "061e3923-5b5e-489e-8ffc-f0fcf19e43ed", + "creativeSets": [ + { + "creativeSetId": "482b24f6-48ce-401c-9378-3e12aaca89b2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8e5be96c-7319-4e00-8ee5-fb95eb462bf5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Painful DPN Information - Visit Site For More Info", + "title": "Diabetic-nerve-pain-rx-option", + "targetUrl": "diabetic-nerve-pain-rx-option.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "RhUDc8iP5Xa", + "name": "Chronic Pain Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "724aebbc-0620-4cc3-aae3-1559f6f064ce", + "name": "general", + "startAt": "2017-09-24T19:36:20.245Z", + "endAt": "2019-09-24T19:36:20.246Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7575fea3-1086-4607-a77e-81dcd9bf5f93", + "creativeSets": [ + { + "creativeSetId": "5a313339-6fb1-4a58-8b5b-64aeecc7ae09", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e56271c4-0a48-4d4e-8971-7b97728df8de", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Order Online Pet Meds - Licensed Online Pet Pharmacy", + "title": "Diamondbackdrugs", + "targetUrl": "www.diamondbackdrugs.com" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "sOqbf6PQ3c-", + "name": "Online Pharmacy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0c3ae375-cecd-4049-8a5d-1d63811ae09f", + "name": "general", + "startAt": "2017-09-24T19:36:20.811Z", + "endAt": "2019-09-24T19:36:20.811Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4cc93cb7-1bfb-4a12-930b-97551fece1e9", + "creativeSets": [ + { + "creativeSetId": "1ada0cf4-52ff-4be4-84df-58f3e1327ad2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "04b26f7c-660c-4dcd-961e-d39b7fbe13b5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Stock Up On Craft Supplies - BLICK® Art Materials", + "title": "Dickblick", + "targetUrl": "www.dickblick.com/Crafts" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "ueFaBreO21-9", + "name": "Arts and Crafts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "35099492-b4ae-4cb8-9e4e-7e419186f1ff", + "name": "general", + "startAt": "2017-09-24T19:36:21.749Z", + "endAt": "2019-09-24T19:36:21.749Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9a839753-9ba2-4403-9382-900a2f25bd7c", + "creativeSets": [ + { + "creativeSetId": "d31d3041-1057-4120-a866-45afa0259bfa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "10512a85-1827-47cd-bc59-efb4a7e00649", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Easton Archery Maintenance Archery Accessories", + "title": "Dickssportinggoods", + "targetUrl": "dickssportinggoods.com/Sports" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "MaS1t2gzIou", + "name": "Archery Courses" + } + ] + }, + { + "creativeSetId": "2835558a-6c5e-41c4-b092-161333cde4c1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8714838b-e943-4741-820b-345aef040783", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Athletic Clothing - Shop At DICK'S Sporting Goods", + "title": "Dickssportinggoods", + "targetUrl": "www.dickssportinggoods.com/apparel/athletic" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wRnrM16xXmY", + "name": "Athletic Clothing" + } + ] + }, + { + "creativeSetId": "d14f2aca-7b03-44bc-aae1-83f781095d37", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "91128a12-f65e-40c8-9f56-c98f36347014", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Clearance Fishing Shirts - Best Price Guarantee at DICK'S", + "title": "Dickssportinggoods", + "targetUrl": "dickssportinggoods.com/Hunting" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "tAc14oAedDq", + "name": "Fishing Gear" + } + ] + }, + { + "creativeSetId": "4ff7fc3c-82ca-49b9-a916-710d39a90ba4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8bf04a7c-0a4f-42cc-a1a0-a9806463a363", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Swim Gear & Swimsuits - Best Price Guarantee at DICK'S", + "title": "Dickssportinggoods", + "targetUrl": "dickssportinggoods.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "BgfSFihlac8", + "name": "Swimming Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2998372c-d36e-4579-a857-d05a33e0cc7e", + "name": "general", + "startAt": "2017-09-24T19:36:23.077Z", + "endAt": "2019-09-24T19:36:23.077Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "49de6222-48bb-4853-a91c-e240f54f47d8", + "creativeSets": [ + { + "creativeSetId": "2ff744ff-92dd-40f2-9742-df29c882c00f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f36b9086-cbaa-4df7-8af9-da543bed1080", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "High Protein Shakes - Free Shipping Orders $69+", + "title": "Dietdirect", + "targetUrl": "www.dietdirect.com/Protein_Shakes" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "2SU6dGfT9-t", + "name": "Protein Shakes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "52138c2c-c8bd-46ba-9ec7-25a9438221cf", + "name": "general", + "startAt": "2017-09-24T19:36:23.820Z", + "endAt": "2019-09-24T19:36:23.820Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e3506d98-bd74-4cb7-8ca9-48d4bcadce9f", + "creativeSets": [ + { + "creativeSetId": "891e33b5-2ee0-4166-b2b0-b084f3d57a35", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9ebca0a0-8dcc-4859-afe7-35fe1175064d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Ready To Publish A Book? - It's Easier Than You Think.", + "title": "Diggypod", + "targetUrl": "www.diggypod.com/Publishing/A-Book" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "KjrAF8XxEDc", + "name": "Book Publishing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d45b8a93-b876-4eac-8e8e-017d3eef5db8", + "name": "general", + "startAt": "2017-09-24T19:36:24.389Z", + "endAt": "2019-09-24T19:36:24.390Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5c3d3da4-6cf1-4afa-820b-8e57f85c52a6", + "creativeSets": [ + { + "creativeSetId": "da6c07a3-6239-4c7c-8dc0-dfbf3269e41a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "175738fb-9b34-431f-9f0e-e274c011526c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "How To Dance - Huge Selection of Dance Shoes at Discount Dance \r\n", + "title": "Discount Dance", + "targetUrl": "https://www.discountdance.com/search/ballroom%2Bshoes?msclkid=037314ed13791b219e7f4e9f28dbb11a&utm_source=bing&utm_medium=cpc&utm_campaign=Shoes&utm_term=How%20To%20Dance&utm_content=Dance%20Shoes" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "EOakB6_Xe5ZP", + "name": "dance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4d512a1b-441d-4a7d-a7b1-2daf3cea8eb1", + "name": "general", + "startAt": "2017-09-24T19:36:24.978Z", + "endAt": "2019-09-24T19:36:24.978Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "18c2a396-5ac5-402c-9be0-9ded54dff878", + "creativeSets": [ + { + "creativeSetId": "14ae4511-2fe2-4b11-8cfb-2b8770328234", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "57d0c744-afd0-4fba-8135-c3e35ace5645", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Ballet & Dance Supply", + "title": "DiscountDance", + "targetUrl": "www.DiscountDance.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "tDcqDSsaTpB", + "name": "Dance Lessons" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9c74926f-957b-4cad-ab32-1a1b226574a7", + "name": "general", + "startAt": "2017-09-24T19:36:25.547Z", + "endAt": "2019-09-24T19:36:25.547Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "02e4afac-a5f2-403e-adec-8d564bc0f972", + "creativeSets": [ + { + "creativeSetId": "bfd3ad00-0278-4c82-8f53-19f7e6379705", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "75d0621a-095b-42ef-b8a8-6c0e096adecc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Tv - Find Buy Tv Offers.", + "title": "DiscountHubb", + "targetUrl": "discounthubb.com/Buy Tv" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "x3uhuK7aLGkU", + "name": "Buy Television" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9e832c35-b739-4093-be7d-08516dbe9037", + "name": "general", + "startAt": "2017-09-24T19:36:26.247Z", + "endAt": "2019-09-24T19:36:26.247Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "dc4d3c4f-9d51-4f0b-bdeb-44bf0ccd4246", + "creativeSets": [ + { + "creativeSetId": "44f7075d-dde5-40ec-81bd-93f74b30d660", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ed23e7c1-acd9-4c1a-9702-23bbe25be558", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Astronomy Magazine - Subscribe, Renew, or Gift.", + "title": "DiscountMags", + "targetUrl": "order.com-sub.info/Astronomy/Magazine" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "M_ZptOvQUEHi", + "name": "Astronomy Magazine" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "dd2ab49f-bdbc-4823-a912-7e97b66fa572", + "name": "general", + "startAt": "2017-09-24T19:36:26.883Z", + "endAt": "2019-09-24T19:36:26.883Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4b13c0e5-387c-4648-9fdf-25791922081a", + "creativeSets": [ + { + "creativeSetId": "f415fdf5-655f-4c30-a0c4-9150a52a858f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c5133037-58b6-4220-956d-7177abe5e025", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Chinese TV with DISH Network® - Save Up to $240 for 24 months", + "title": "Dish", + "targetUrl": "www.dish.com/Chinese" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "x3uhuK7aLGkU", + "name": "Buy Television" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d7bff415-d4c5-48b9-9bd6-efac4494fa5a", + "name": "general", + "startAt": "2017-09-24T19:36:28.455Z", + "endAt": "2019-09-24T19:36:28.456Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "854e10e0-78f3-4221-ade5-e1c476bb7183", + "creativeSets": [ + { + "creativeSetId": "e976e1d2-6a3a-41c8-8201-9e2c75eb92a1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0d60e363-25dd-49d6-bb17-0a13f5394003", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "ditech Mortgage Refinance | We Can Help You Refinance‎", + "title": "Ditech", + "targetUrl": "www.ditech.com/ ‎" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "dtTKtVFdpje", + "name": "Refinance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "252a3b84-f5e8-4cbd-bd8a-3d5d39ff9aa3", + "name": "general", + "startAt": "2017-09-24T19:36:29.085Z", + "endAt": "2019-09-24T19:36:29.085Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a9813b41-5a0d-4544-b262-b5168ad149c3", + "creativeSets": [ + { + "creativeSetId": "a8b10529-f8f2-40cd-8e18-754e420c6eac", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2ea38f21-3cf8-4e0b-a540-1a70ba435de9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dive Gear Express?? - Top Gear at the Lowest Prices", + "title": "Divegearexpress", + "targetUrl": "www.divegearexpress.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "fH7PFGfR2R8", + "name": "Diving Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e136403e-53ae-488f-aa40-008b5d915132", + "name": "general", + "startAt": "2017-09-24T19:36:30.134Z", + "endAt": "2019-09-24T19:36:30.134Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "82122f5c-5065-4fb5-8b8e-b35cb99d93ce", + "creativeSets": [ + { + "creativeSetId": "50b661c7-0ff4-44b2-bc1c-d4e30b8557a4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9977da94-1835-46b9-88a7-f2bc156e290c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Scuba Diving Gear - Diving Gear | divers-supply.com", + "title": "Divers-supply", + "targetUrl": "www.divers-supply.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "fH7PFGfR2R8", + "name": "Diving Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8c90cac3-2db3-4cae-8642-1c28b3d28db1", + "name": "general", + "startAt": "2017-09-24T19:36:30.666Z", + "endAt": "2019-09-24T19:36:30.667Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a3ebcdca-36d2-40e7-8178-66f1d576c4b5", + "creativeSets": [ + { + "creativeSetId": "ae853995-67b3-4cc8-acab-56b1ca36eb65", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "444dfc5a-8ed1-41ae-bb7d-40a24523f566", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "USA's #1 Dive Gear Store - Free Shipping + Easy Returns", + "title": "Diversdirect", + "targetUrl": "www.diversdirect.com/dive-gear" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "fH7PFGfR2R8", + "name": "Diving Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "016f77df-ea40-4f34-a053-3653414e0ee8", + "name": "general", + "startAt": "2017-09-24T19:36:31.423Z", + "endAt": "2019-09-24T19:36:31.424Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5026387e-07c9-47a1-8303-15fd99cdf602", + "creativeSets": [ + { + "creativeSetId": "34b685f5-623c-4c18-a098-ac49d7e74fc2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f75ba4e0-c40e-40a1-a294-06e59c0f3bdf", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Potters Tools - Search for Potters Tools.", + "title": "Diylife", + "targetUrl": "www.diylife.com/Potters Tools" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "HXyi8S4OgtE", + "name": "Pottery Tools" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5fc96eb1-afcb-476e-8c0c-f6efa5c4ae74", + "name": "general", + "startAt": "2017-09-24T19:36:32.015Z", + "endAt": "2019-09-24T19:36:32.016Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4ae3ecb6-f383-4a1b-a70b-b7a40f941319", + "creativeSets": [ + { + "creativeSetId": "414121d4-9623-4a54-90c8-35f11863ef6d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "16f4521f-7464-48c2-8613-c43e4b12f34f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pond Liners-Flexible PVC | dlmplastics.com", + "title": "Dlmplastics", + "targetUrl": "www.dlmplastics.com" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "T2fnJ3M0GxS", + "name": "Aquarium Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "dbad0bf1-e96c-45e8-944f-30548a0ce8dd", + "name": "general", + "startAt": "2017-09-24T19:36:32.596Z", + "endAt": "2019-09-24T19:36:32.596Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "58b5c917-523d-4d3d-aba1-7a1f12eaf9cc", + "creativeSets": [ + { + "creativeSetId": "ecd50d98-6316-4535-9178-011001758c91", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5c2578ed-4f8d-41c8-9793-af84e2fb5ea1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "DME treatment strategy - Consider long-term options", + "title": "Dmetreatment", + "targetUrl": "Dmetreatment.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "VSR0lepFE8Hw", + "name": "Diabetes Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "32a6a845-fa7d-4976-bbcf-0add5e45400c", + "name": "general", + "startAt": "2017-09-24T19:36:33.181Z", + "endAt": "2019-09-24T19:36:33.181Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "89cb692f-ea84-40af-b6af-a507e5e79301", + "creativeSets": [ + { + "creativeSetId": "d4d70102-3dda-441e-b77d-4799621a47c6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "67c9457e-6a7e-4bd4-8d84-a00b2aaff900", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "#1 Shark Tank (2018) Diet - Lose Upto 24lbs in 3 Weeks", + "title": "Doctordietsolution", + "targetUrl": "doctordietsolution.com/weight-loss" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "2SU6dGfT9-t", + "name": "Protein Shakes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "22a9ab12-5314-4e67-b3b0-afaf39ce9330", + "name": "general", + "startAt": "2017-09-24T19:36:33.925Z", + "endAt": "2019-09-24T19:36:33.925Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e56fc426-3532-4b7b-a30e-8c712dd1cf42", + "creativeSets": [ + { + "creativeSetId": "5d8ebfe0-ccef-4d13-926e-0b0e23fbf8bc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "387995dd-a3e9-4327-acf1-2db7269ce0c7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The Dodge® Charger - Show Of Strength", + "title": "Dodge", + "targetUrl": "www.dodge.com/Charger" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "tGlEpkd2UFQ", + "name": "New Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f0d3a0ee-03b9-405a-86be-c6b78f935fde", + "name": "general", + "startAt": "2017-09-24T19:36:34.712Z", + "endAt": "2019-09-24T19:36:34.712Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1c6d3f2f-ed4c-4a4c-91c0-1d58ef208d37", + "creativeSets": [ + { + "creativeSetId": "b7557a6a-170c-4525-88d6-c2f11baf66e4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9f8bdac1-c2c1-4efc-b70b-8f00fcb466c4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dashboards for Decision Makers - See Video Demo | domo.com", + "title": "Domo", + "targetUrl": "https://www.domo.com/solution/business-dashboards?aid=psbi1232018187&msclkid=426f231c071b1b75f5737964c0c09b1c&utm_source=bing&utm_medium=cpc&utm_campaign=S-%20Dashboard&utm_term=dashboard%20software&utm_content=Dashboard%20Software" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "73iSSGRfvnHV", + "name": "software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e09ea1a5-9a46-45a1-a369-adf7a967168a", + "name": "general", + "startAt": "2017-09-24T19:36:35.453Z", + "endAt": "2019-09-24T19:36:35.453Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "00d7efb8-b08b-47bb-9ca0-9a3c7c65896d", + "creativeSets": [ + { + "creativeSetId": "3269157a-4ee0-4a07-84f0-95a15b0460ce", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "73f137aa-8021-4dc8-ade4-81bb3baa12fb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Your Favorite Restaurants - Delivered Right to You", + "title": "Doordash", + "targetUrl": "www.doordash.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "YnihSiXSdRZ", + "name": "Food Delivery" + } + ] + }, + { + "creativeSetId": "416bdcfc-4003-434c-aa88-5ebac435450b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "249959d5-acf9-4864-aa63-428d51301a35", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "DoorDash® Food Delivery - Richmond Delivery | doordash.com", + "title": "Doordash", + "targetUrl": "www.doordash.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "RjX-wPWa8Z_f", + "name": "Meal Deliveries" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6dc5ed8e-1961-448f-89ad-00efad98d846", + "name": "general", + "startAt": "2017-09-24T19:36:36.255Z", + "endAt": "2019-09-24T19:36:36.255Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "876dce98-8563-4d37-97a7-877df2eb1c2b", + "creativeSets": [ + { + "creativeSetId": "5eb83de8-44fe-4641-9c4f-5203853382ef", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "30f7e4b4-3cc7-4e26-b21d-813f9e389678", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dover Publishing - Great books. Value & variety", + "title": "Doverpublications", + "targetUrl": "www.doverpublications.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "KjrAF8XxEDc", + "name": "Book Publishing" + } + ] + }, + { + "creativeSetId": "48a91de6-adc5-4338-9e38-aab69f30d1bd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c9a6eda0-ffd1-4248-87cc-ddc93b83d043", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dover Publications", + "title": "Doverpublications", + "targetUrl": "www.doverpublications.com" + } + } + ], + "segments": [ + { + "code": "5G4C9Gbl_AF", + "name": "History" + }, + { + "code": "A8IougsHirI", + "name": "Archaeology Books" + } + ] + }, + { + "creativeSetId": "becdd6a8-bf13-49db-a86a-529534d6d51d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dcc7ae0a-bf12-4779-a4fb-29f19d463e4c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dover Publishing", + "title": "Doverpublications", + "targetUrl": "www.doverpublications.com" + } + } + ], + "segments": [ + { + "code": "5G4C9Gbl_AF", + "name": "History" + }, + { + "code": "DPRmtWVA4dO", + "name": "History Books" + } + ] + }, + { + "creativeSetId": "8432e5ba-a371-46fc-9eb6-c2bf785420b5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2c9b6b35-a11b-4d89-a64d-50cef759de53", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dover Publication Books", + "title": "Doverpublications", + "targetUrl": "www.doverpublications.com" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "Ra6GjWV-Ogj", + "name": "Palaeontology Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4972c293-4c01-4556-931c-bb606e05c589", + "name": "general", + "startAt": "2017-09-24T19:36:37.497Z", + "endAt": "2019-09-24T19:36:37.497Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "65fbc745-d558-4753-b7af-e84192e45b0a", + "creativeSets": [ + { + "creativeSetId": "1192cef0-263b-4d12-bfd9-443b13b5eb8e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "71713f7d-8bca-4f92-bb0a-9b1d2b052c68", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Basketball training - Check this out now", + "title": "Downloadsearch.", + "targetUrl": "downloadsearch.cnet.com/Basketball training/Save your time" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FiDfXRZJaDS", + "name": "Basketball Training" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6f14d9fd-b88b-4c6e-87ff-2627f1edde32", + "name": "general", + "startAt": "2017-09-24T19:36:38.233Z", + "endAt": "2019-09-24T19:36:38.234Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a3a52836-b52d-4130-9bec-75c76fa20c2d", + "creativeSets": [ + { + "creativeSetId": "91af296d-0eb8-4329-871b-2339d54f5a84", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "afac7d2a-922c-4e70-9f7d-b67770138868", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Professional Stock Photos – Images, Illustrations, Videos", + "title": "Dreamstime", + "targetUrl": "Dreamstime.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "IdSgRp0c7Tn", + "name": "Stock Photos" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c5a605cb-f349-49fa-85d4-85dabc025ddb", + "name": "general", + "startAt": "2017-09-24T19:36:38.818Z", + "endAt": "2019-09-24T19:36:38.818Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b6c4e3bf-ceb1-469f-ae36-2a06ce9a2fb2", + "creativeSets": [ + { + "creativeSetId": "8c271906-aa21-4f17-87d5-4e1b15501744", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c7ea1538-ac5f-4d62-9155-9446304cc954", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fantastic Cruise Deals - 100% Satisfaction Guaranteed", + "title": "Dreamvacations", + "targetUrl": "www.dreamvacations.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "xrH2KKuKBDm", + "name": "Cruise Vacations" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9a91b31e-988d-43a2-b65b-c50089bad1fb", + "name": "general", + "startAt": "2017-09-24T19:36:39.884Z", + "endAt": "2019-09-24T19:36:39.884Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "13d3200b-ea4e-441c-b4d6-c6160768aad8", + "creativeSets": [ + { + "creativeSetId": "f126b121-151c-479b-87a5-0f7bf704a0b5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "94fcda28-3d7b-4df9-9ab5-6eb389f947b7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Install Dell PC Drivers", + "title": "DriverRestore", + "targetUrl": "DriverRestore.com/Dell-PC-Drivers" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "r-ofzMLNsK8", + "name": "Dell Computers" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8b6446f4-88bd-491f-b29d-e9a815cb1f4e", + "name": "general", + "startAt": "2017-09-24T19:36:40.436Z", + "endAt": "2019-09-24T19:36:40.436Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0d58a8d1-b2c7-4fcf-aac7-15744dde44cc", + "creativeSets": [ + { + "creativeSetId": "e72328dd-e3e0-4e63-910d-ef7e28a2fae7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e9490f43-f7d3-4e46-b66d-731d633d474f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "BS in Psychology - Drexel University Online - Learn More", + "title": "Duo.online.drexel", + "targetUrl": "duo.online.drexel.edu/Psychology" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mTbLUekRxb3", + "name": "Psychology Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e8c1f132-cebe-476b-9ea1-09fc5728af1e", + "name": "general", + "startAt": "2017-09-24T19:36:40.986Z", + "endAt": "2019-09-24T19:36:40.987Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6044b2d0-9695-46d4-804d-51a8e0d36c3b", + "creativeSets": [ + { + "creativeSetId": "c64bb779-4db7-48f2-b68c-ab21f7c6113c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9ce6bf44-0634-41bc-96fd-01a1e7e0ac84", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sap Flow Measurement | dynamax.com", + "title": "Dynamax", + "targetUrl": "www.dynamax.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "UCCrJnLnO8s", + "name": "SAP Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1d719808-f09d-400f-bdd5-27d01259cc17", + "name": "general", + "startAt": "2017-09-24T19:36:41.621Z", + "endAt": "2019-09-24T19:36:41.622Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "44ea2d66-ae54-4140-b378-00c5c39c1999", + "creativeSets": [ + { + "creativeSetId": "537c46e0-dc02-44d1-a4f8-ee69365eb892", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9377038e-1e58-412f-a2b5-7b93e486e0b5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Online Tax Filing - E-File Your Taxes Online for Free", + "title": "E-file", + "targetUrl": "www.e-file.com" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "mxelJ0wSaYe-", + "name": "E-Tax" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "78d58773-7855-4b2e-a7e9-19ad45e971b9", + "name": "general", + "startAt": "2017-09-24T19:36:42.161Z", + "endAt": "2019-09-24T19:36:42.161Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d2ab59c8-e398-44db-b0f0-a6c55bc51d49", + "creativeSets": [ + { + "creativeSetId": "c7a22f96-8234-4295-a390-7bf04e4427f9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9e8f09dc-005f-45db-8b6a-73b61c555b68", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Wood Router Patterns", + "title": "EagleAmerica", + "targetUrl": "www.EagleAmerica.com/RouterBits" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "sa6bkvlxwxQ", + "name": "Woodworking Projects" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "089aca28-4b66-46e4-a710-0c0db4cbf893", + "name": "general", + "startAt": "2017-09-24T19:36:42.742Z", + "endAt": "2019-09-24T19:36:42.742Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "393cfb02-e425-49c7-8d43-af3113791cd2", + "creativeSets": [ + { + "creativeSetId": "87a62deb-34e3-4cb1-81f0-b91c43efb90c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ec881b8b-9d2b-4588-b502-aa4b48ed2429", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "YOUR Online Education - Pursue Your Degree 100% Online", + "title": "Earnmydegree", + "targetUrl": "www.earnmydegree.com/Online/Colleges" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "w5KTA-1-lyt", + "name": "Online Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7a82ca94-fd2b-4686-8f89-66d3d5a5d400", + "name": "general", + "startAt": "2017-09-24T19:36:43.667Z", + "endAt": "2019-09-24T19:36:43.667Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8c056b71-5d21-445a-b40b-50c4bd8c08da", + "creativeSets": [ + { + "creativeSetId": "ed5b09aa-1ff7-437c-b14d-536e2d43ca13", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "22db5da0-ba19-46e4-90cc-a6ad6cd15400", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Affordable Islamic Wear - Abayas, Jilbab, Skirts, Hijabs", + "title": "Eastessence", + "targetUrl": "www.eastessence.com/Latest_Hijabs/Buy_Now" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "EUUwhzvuKC4", + "name": "Islamic Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "197bf123-4463-4b12-a5d4-3c4fe70c9199", + "name": "general", + "startAt": "2017-09-24T19:36:44.254Z", + "endAt": "2019-09-24T19:36:44.254Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f0d49fb6-b1da-4c4f-8f91-7580ae5c2dc6", + "creativeSets": [ + { + "creativeSetId": "7d1c60d1-b4ff-4721-ba62-f1da71a6f52e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f47ef24d-7877-401b-ae19-2f301e6f862f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "IT Hacks and Tricks eBook - Download a Copy Now", + "title": "Eaton", + "targetUrl": "switchon.eaton.com/IT_Hacks" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "1Uk9lOnHZczB", + "name": "Computer Repairs" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "81b78476-a954-4548-a42b-0d0976cc6717", + "name": "general", + "startAt": "2017-09-24T19:36:44.885Z", + "endAt": "2019-09-24T19:36:44.885Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c4e135a2-776e-4752-aa8b-5bbf83f3431c", + "creativeSets": [ + { + "creativeSetId": "942801bf-5543-44b5-b4f6-f6cd418ff004", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8ec6129e-f1b1-41b7-954d-541a041719e6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Kids Basketball Training", + "title": "EBasketballCoach", + "targetUrl": "eBasketballCoach.com/CoachingDrills" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FiDfXRZJaDS", + "name": "Basketball Training" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ff7ac1c5-c419-4a7f-9e3e-caa28660088f", + "name": "general", + "startAt": "2017-09-24T19:36:45.973Z", + "endAt": "2019-09-24T19:36:45.973Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8ae2e723-10c6-4679-ba23-fa2bb6085b7c", + "creativeSets": [ + { + "creativeSetId": "9d1603b6-5799-48cd-a8cd-bfb1ab4994a4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8fcdc938-4ddd-4fa6-9aa3-b559d8d90611", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online Freeshipping - Never Pay Full Price. - Save Now", + "title": "Ebates", + "targetUrl": "www.ebates.com/FreeShipping/Codes" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "L6d8TFZSNbmS", + "name": "Online Shipping" + } + ] + }, + { + "creativeSetId": "fb79a743-3eef-4193-96b4-6cb4230d279f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "60de0d42-08ff-4699-b68e-16d80bf95d12", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Order Alcohol Online Overnight Delivery - Never Pay Full Price", + "title": "Ebates", + "targetUrl": "www.ebates.com/2018/Coupons" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "unFLrtorUoq", + "name": "Alcohol Delivery" + } + ] + }, + { + "creativeSetId": "2469f941-5c73-400a-8b7a-224ff67fb1fd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "21875e3c-4610-4a8c-9533-968da4a503d2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Clearance Snowboard Gear - Never Pay Full Price. | ebates.com", + "title": "Ebates", + "targetUrl": "www.ebates.com/Snowboard/Clearance" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "--yzN6s96hZD", + "name": "Snowboarding Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6d67999e-7a46-457a-b02b-dc386554d7ca", + "name": "health", + "startAt": "2017-09-24T19:36:47.088Z", + "endAt": "2019-09-24T19:36:47.088Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2f5489ae-212c-419f-9f73-22952b739b59", + "creativeSets": [ + { + "creativeSetId": "1a649805-46e4-445d-a3b5-9d391bf92040", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4cb82871-c75a-4f95-9d75-a10e99b12f13", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find Thyroid Books on eBay - Seriously, We have EVERYTHING", + "title": "Ebay", + "targetUrl": "www.ebay.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "Q9F_XhEg8W_", + "name": "Thyroid Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f0d78926-0a61-4247-860e-21a931ab938d", + "name": "religion", + "startAt": "2017-09-24T19:36:47.807Z", + "endAt": "2019-09-24T19:36:47.808Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2f5489ae-212c-419f-9f73-22952b739b59", + "creativeSets": [ + { + "creativeSetId": "85c86955-38c2-417c-84e1-ca78cd7f7cc3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "aae54276-5d19-45a9-bf96-48e5c7dbdb17", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hinduism book on eBay - Seriously, We have EVERYTHING", + "title": "Ebay", + "targetUrl": "www.ebay.com" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "w5JSnOzclQZ", + "name": "Hinduism Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8157cbb2-0abc-455c-9632-cfaf2ba37242", + "name": "sports", + "startAt": "2017-09-24T19:36:48.165Z", + "endAt": "2019-09-24T19:36:48.165Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2f5489ae-212c-419f-9f73-22952b739b59", + "creativeSets": [ + { + "creativeSetId": "00177747-f9dd-475a-a661-bbed791c72c4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "11386b47-a627-4163-a36c-768a5370862e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Martial arts floor mats on eBay - Seriously, We have EVERYTHING", + "title": "Ebay", + "targetUrl": "www.ebay.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "M2Rtnq7snDL", + "name": "Martial Arts Training" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5b67e0ae-6e62-4364-8b9e-a37b1c823905", + "name": "general", + "startAt": "2017-09-24T19:36:48.714Z", + "endAt": "2019-09-24T19:36:48.714Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "aea19cb5-8df3-4e72-8fb3-b67aebeb3748", + "creativeSets": [ + { + "creativeSetId": "613c7b0e-5186-4850-901c-5b53f3594e22", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a5c9dd08-895c-4dde-b267-85ea64e47605", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "eBooks.com | ebooks.com", + "title": "Ebooks", + "targetUrl": "www.ebooks.com" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "Fd-YZYI1wwN", + "name": "Online Ebooks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3fb629dc-cd68-4acc-bb8e-1e433d4be666", + "name": "general", + "startAt": "2017-09-24T19:36:49.325Z", + "endAt": "2019-09-24T19:36:49.325Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2695a88c-5b13-4d9a-9c9c-748e8beab5a9", + "creativeSets": [ + { + "creativeSetId": "d17da295-0819-4765-adf0-1e732367f06a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "794be0d5-67ad-4266-9385-fcbcbfb2da91", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Inventory Software - Complete Inventory Automation", + "title": "EcomDash", + "targetUrl": "www.ecomdash.com/Software/Inventory" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "2QJW6dTCw6z", + "name": "Inventory Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e90be1db-c767-45ef-a32e-54500ebc1641", + "name": "general", + "startAt": "2017-09-24T19:36:50.155Z", + "endAt": "2019-09-24T19:36:50.155Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cbd8f4f7-503e-46b7-9777-5093e33345b4", + "creativeSets": [ + { + "creativeSetId": "3f87dada-f631-4456-a723-277d68c45046", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "16cfe43f-c36a-41b1-8de2-5b6f4ae96fb9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online IT Course - 0 to Bachelors in 2.5 Yrs | explore.ecpi.edu", + "title": "EcpiEdu", + "targetUrl": "explore.ecpi.edu/Online/IT-Degrees" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "rNd-q2umuLA", + "name": "IT Online Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2ddaf7b1-d0ab-4680-a25a-ce500c6adb6c", + "name": "general", + "startAt": "2017-09-24T19:36:50.734Z", + "endAt": "2019-09-24T19:36:50.734Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1a1f1653-c515-444a-9870-272bcb2e1bbe", + "creativeSets": [ + { + "creativeSetId": "1a9d6198-51a8-45c4-9e9e-4bb0cffa10ad", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7e3c8800-b740-436f-ac8d-6c6bcd22ee5d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Beginning Stocks & Investing - Learn the Fundamentals Online", + "title": "Ed2go", + "targetUrl": "www.ed2go.com/Stocks-Invest/Learn" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "_PEMAp6RE_k9", + "name": "Learn Stocks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f26db977-a478-4af1-bb76-00eae8183f6d", + "name": "general", + "startAt": "2017-09-24T19:36:51.500Z", + "endAt": "2019-09-24T19:36:51.500Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1e53a0e7-617d-46b0-90a5-126e29dff0d3", + "creativeSets": [ + { + "creativeSetId": "f41ee5bd-3481-4b66-951a-694d9e8ae5fa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ac1288fb-32aa-484d-98d5-5c233a4b0c2f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Financial Planning Advice - Personalized Just For You", + "title": "Edelmanfinancial", + "targetUrl": "edelmanfinancial.com" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "z7floCfZA_P", + "name": "Financial Advisors" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "af2a5e7d-3faa-40db-9eba-cab8ba03a285", + "name": "general", + "startAt": "2017-09-24T19:36:52.109Z", + "endAt": "2019-09-24T19:36:52.109Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ce3febc9-ef3c-4517-a925-34813b3ed26c", + "creativeSets": [ + { + "creativeSetId": "ca4345ed-a55d-461b-88bc-7ca06ee6a212", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "aad2a452-f0c2-482b-9f66-2dbc51b92859", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "85% Off on 100s Of Adult Toys - Get More Pleasure For Less", + "title": "Edenfantasys", + "targetUrl": "www.edenfantasys.com/Adult-Toys-Shop" + } + } + ], + "segments": [ + { + "code": "BLz4HWBCFN", + "name": "Adult" + }, + { + "code": "l3UPx578DUq", + "name": "Adult Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "df41f365-4e50-4af9-8738-a9a8d3b63553", + "name": "college", + "startAt": "2017-09-24T19:36:52.712Z", + "endAt": "2019-09-24T19:36:52.713Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "85faa528-62e1-4889-8c32-afa2f6170777", + "creativeSets": [ + { + "creativeSetId": "033a38fd-acb2-410f-b814-94319803d327", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e04aae78-88ee-4bf8-b047-650e2b1a9bc7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2018 Psychology Degree - Pursue a Higher Education", + "title": "Educatio", + "targetUrl": "www.educationconnection.com/Psychology/Degree-Info" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mTbLUekRxb3", + "name": "Psychology Degree" + } + ] + }, + { + "creativeSetId": "e3bbdc77-888f-4c88-9f68-96f96189454c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "76256026-5aab-4a71-8d25-78056f9a46ee", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online Courses - Pursue a Higher Education", + "title": "Educatio", + "targetUrl": "www.educationconnection.com/CollegeFinder/PursueEducation" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "Q1LjD-it3o5", + "name": "Chemistry Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b65342e0-13e8-43e5-958a-830ea76030ec", + "name": "elementary", + "startAt": "2017-09-24T19:36:53.844Z", + "endAt": "2019-09-24T19:36:53.844Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "44944c64-d8be-4173-a838-d5bb65230916", + "creativeSets": [ + { + "creativeSetId": "cee1aa7d-4251-4b84-9b1c-8996d4fca6ac", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ed87c75d-c096-4ec4-9c54-0b42cc9d8695", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Second Grade Worksheets - Fun. Simple. Educational.", + "title": "Education", + "targetUrl": "www.education.com/Second-Grade/Worksheets" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "o7RiTeSPDIyu", + "name": "Mathematics worksheets" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "069d84b3-8e20-4c7a-9df6-e8ac8ecbe561", + "name": "elementary", + "startAt": "2017-09-24T19:36:54.422Z", + "endAt": "2019-09-24T19:36:54.422Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b884e42b-38f6-4c1b-9908-2c4fe8b8b29e", + "creativeSets": [ + { + "creativeSetId": "30995da6-53be-4efd-84fc-cb445fc677fd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9f980d9f-365f-4b08-83fa-e070a84a2b0d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free 1st Grade Worksheets - For Kids Ages 6-7", + "title": "Education.com", + "targetUrl": "https://www.education.com/worksheets/first-grade/?msclkid=889ecf02b5b117d7100495708fd96388&utm_source=bing&utm_medium=cpc&utm_campaign=Bing_Search_USA_Worksheets_&utm_term=1st%20grade%20worksheets&utm_content=1st%20grade%20worksheets" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "6EIpQpCojhj1", + "name": "education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7c89f461-69d1-4663-8f94-c9424f09de58", + "name": "general", + "startAt": "2017-09-24T19:36:55.167Z", + "endAt": "2019-09-24T19:36:55.167Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "030eed0e-c819-45c3-9519-2004ca5e9612", + "creativeSets": [ + { + "creativeSetId": "06a75936-9296-488b-95f7-489d1235fa82", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "07110d83-c81d-44cf-a404-2c7cf5b6d63c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Apply for an IRS Tax ID Number - Get a Federal Tax ID Online.", + "title": "Ein-assistance", + "targetUrl": "www.ein-assistance.com/Apply/Tax_ID_Number" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "mxelJ0wSaYe-", + "name": "E-Tax" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "eb23226e-7e01-4440-8ec4-09224d24a6d7", + "name": "general", + "startAt": "2017-09-24T19:36:55.746Z", + "endAt": "2019-09-24T19:36:55.747Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5a4832b7-dfa7-43c7-8ce0-b9b10ff90cce", + "creativeSets": [ + { + "creativeSetId": "b3f4f459-b94a-49f9-9be0-4455caebb1fa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7518b080-d30a-47e1-a3f2-f40931822c45", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 10 Luxury Sedans – Get Incredible Discounts", + "title": "Elderly Times", + "targetUrl": "http://shopping.elderlytimes.com/topic/21/Top+10+Luxury+Sedans/?utm_campaign=Nmg2XyB&utm_term=sedan&utm_medium=e&g_ti=kwd-303946710712&g_de=c&g_ci=363577164&g_ai=9672883695&utm_content=1" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "nQz7_kgbVor1", + "name": "sedans" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9260f2be-4854-4e41-96ab-f411129823f4", + "name": "general", + "startAt": "2017-09-24T19:36:56.512Z", + "endAt": "2019-09-24T19:36:56.513Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6d169c83-c94c-4745-b980-f8606a13a930", + "creativeSets": [ + { + "creativeSetId": "41c47891-30c0-4a30-bd00-cbd86a675c73", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "62a4c49d-9dfc-4b1d-bf0d-c9aa3997cb64", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cool Vibes Shirts - Electro Threads™ Vibe Shirts", + "title": "Electrothreads", + "targetUrl": "electrothreads.com/Vibes-Shirts" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wRnrM16xXmY", + "name": "Athletic Clothing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "790b5585-21ad-478c-bc29-2581aa7b3600", + "name": "general", + "startAt": "2017-09-24T19:36:57.083Z", + "endAt": "2019-09-24T19:36:57.084Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "09df1973-fc21-4fd1-942a-516a6d80f446", + "creativeSets": [ + { + "creativeSetId": "476bfcb6-c8e7-4da6-b44c-e5099909f086", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "59c607c5-bf4e-4fce-9d30-5e905215febd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "All Products – Tagged \"Football\" – ElephantStock", + "title": "Elephantstock", + "targetUrl": "elephantstock.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "cYoy1u-mrxD", + "name": "Football Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b2011f15-1774-4565-85f1-77a6f981c7c6", + "name": "general", + "startAt": "2017-09-24T19:36:57.984Z", + "endAt": "2019-09-24T19:36:57.985Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f4e6b3a0-1256-49da-bfca-3ad5f0b151ad", + "creativeSets": [ + { + "creativeSetId": "1b826133-eb7f-49fe-b121-e6fda6c994d8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dbe8848c-585e-48bf-88cc-8c31f076ec96", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Asthma - More Tips Here - Read Useful Articles Now", + "title": "Elixir Industry", + "targetUrl": "http://www.elixirindustry.com/marvlix/lung-health.htm" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "6s7g8VEwyO_S", + "name": "asthma" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "87ebd6e9-c9c9-4998-bd5e-4a8d26bf31d3", + "name": "general", + "startAt": "2017-09-24T19:36:58.589Z", + "endAt": "2019-09-24T19:36:58.589Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "88a85a51-88fa-424e-b06c-14a6347f5f6a", + "creativeSets": [ + { + "creativeSetId": "dc4508e6-2c24-416e-9a37-3f1248d86cf5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2f0fcb23-00a4-4ac3-aafd-201040f926f6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "sewing supplies", + "title": "Embroiderthis", + "targetUrl": "www.embroiderthis.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "93bPE8nabJd", + "name": "Sewing Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "acd3d0f2-59e5-42f8-94b2-48e983999c51", + "name": "general", + "startAt": "2017-09-24T19:36:59.179Z", + "endAt": "2019-09-24T19:36:59.180Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "aa2f6129-377d-4c30-9aed-78c156f10caf", + "creativeSets": [ + { + "creativeSetId": "1ea0a611-61d3-4207-91c0-0db0095d7bba", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a30befbc-acce-4757-9360-1c622d3ad3e0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Turbo And Kit - Ultimate Turbo And Kit Results", + "title": "ENow", + "targetUrl": "www.eNow.com/Turbo And Kit" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "25hWYRpip_l", + "name": "Turbo Tax" + } + ] + }, + { + "creativeSetId": "e3060327-117b-41af-8233-aecfc0b8bc21", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7c0e1943-5c8c-4d17-bccc-a82c197f9b06", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Book Of Botany - Find Book Of Botany.", + "title": "ENow", + "targetUrl": "www.eNow.com/Book Of Botany" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "MJlJ0GAmjmL", + "name": "Botany Books" + } + ] + }, + { + "creativeSetId": "dd538c0f-2989-4b65-9da8-2171149df5fc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b0155aed-cda2-4559-9718-e56c5361e49d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Paleontology For Kids Books - Search Here & Browse Results", + "title": "ENow", + "targetUrl": "www.eNow.com/Paleontology For Kids Books" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "Ra6GjWV-Ogj", + "name": "Palaeontology Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d6b94a90-e64e-42eb-b38b-d478684213b8", + "name": "general", + "startAt": "2017-09-24T19:37:00.324Z", + "endAt": "2019-09-24T19:37:00.324Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1b3e52d5-ed66-4e53-aea3-b56cb9392d2f", + "creativeSets": [ + { + "creativeSetId": "8fdb34b9-6f3b-407a-b154-a30e0785e271", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cbbf5cfd-b45c-4329-be06-4b4a64770dbf", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "High-Protein Shakes by Ensure® - Packed w/ 16g of Protein", + "title": "Ensure", + "targetUrl": "ensure.com/Products/High-Protein" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "2SU6dGfT9-t", + "name": "Protein Shakes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "37d00e3d-a1c0-4bef-a0f7-f7ba862b8193", + "name": "general", + "startAt": "2017-09-24T19:37:00.928Z", + "endAt": "2019-09-24T19:37:00.928Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b97966eb-e344-42b9-ba99-5998af70b1c8", + "creativeSets": [ + { + "creativeSetId": "ad073b5d-8a9e-441a-a224-bf6b13dfc3f3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "15558f7e-4998-47fd-8716-38cb1844c3eb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Inventory Software - Try QuickBooks Enterprise For Free", + "title": "EnterpriseSuite.Intuit", + "targetUrl": "EnterpriseSuite.Intuit.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "2QJW6dTCw6z", + "name": "Inventory Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0a4fae4b-384d-47a4-b27e-cee646c10b76", + "name": "general", + "startAt": "2017-09-24T19:37:01.700Z", + "endAt": "2019-09-24T19:37:01.701Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9987cfb3-6e18-4790-ad5f-dfe543b0cea2", + "creativeSets": [ + { + "creativeSetId": "f4118a1e-7f54-492c-9fc4-a88076ddff9e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fe8b5ee6-b5d4-46ae-8dc9-22cfe0415192", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Epilepsy Treatment Option - Official Patient Website", + "title": "Epilepsyresourcecenter", + "targetUrl": "www.epilepsyresourcecenter.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "UzZDN_wdJQzE", + "name": "Epilepsy Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7f5aabb8-70b0-4689-b399-282a5d24078c", + "name": "general", + "startAt": "2017-09-24T19:37:02.268Z", + "endAt": "2019-09-24T19:37:02.268Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "06f3369e-a7ec-48e3-a7dd-4ddf066a80f5", + "creativeSets": [ + { + "creativeSetId": "68b68d37-8cf7-443c-8a0f-7577aa29371a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7a302753-d463-497e-9c44-dd9d443ae7b4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Forestry Equipment for Sale - Many Makes & Models", + "title": "Equipmenttrader", + "targetUrl": "www.equipmenttrader.com/Forestry/Equipment" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "A7P6uoAIgzo", + "name": "Forestry Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d77424cd-d46f-4af4-8b4f-424f97169fb2", + "name": "general", + "startAt": "2017-09-24T19:37:02.803Z", + "endAt": "2019-09-24T19:37:02.803Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e59593c4-35eb-4678-8aef-45a74f52f8fa", + "creativeSets": [ + { + "creativeSetId": "0f7ffd7b-f0b7-4321-a258-7cd55074c019", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c5fa7daa-233d-4cba-98ad-8952e2d16071", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Commercial Metal Platform | ErectaStep.com", + "title": "ErectaStep", + "targetUrl": "ErectaStep.com/Modular-Platforms" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "kORnSRyr0FJ", + "name": "Metalwork Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6ad65474-0c12-46f8-a9c2-9258c63ce8cd", + "name": "general", + "startAt": "2017-09-24T19:37:03.353Z", + "endAt": "2019-09-24T19:37:03.353Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c51b313c-b06f-4792-80ac-1493c7f480dc", + "creativeSets": [ + { + "creativeSetId": "519f982c-d96f-4a75-92f7-877726435224", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f87b921d-874f-4493-9f72-05a762c2a79f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "ESPN+ Live Sports - Live Sporting Events | watch.espnplus.com", + "title": "Espnplus", + "targetUrl": "watch.espnplus.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FeUOoTDKpRGk", + "name": "Sports Live" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "142312ee-0528-4333-a000-91ee360289ff", + "name": "general", + "startAt": "2017-09-24T19:37:03.908Z", + "endAt": "2019-09-24T19:37:03.908Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1dbb33ef-0895-4a5e-bffa-e0bf20c161a0", + "creativeSets": [ + { + "creativeSetId": "24cd349c-b108-4640-834e-f7241575309c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "aadd8ff8-6c9c-4f6a-ab14-e0f54b161d71", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "New Jobs for Seniors - Submit Your Application Today", + "title": "Everyjobforme", + "targetUrl": "www.everyjobforme.com/Apply" + } + } + ], + "segments": [ + { + "code": "6QLcn3Fnca-", + "name": "Careers" + }, + { + "code": "AkN_-chsgWP", + "name": "Find Work" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e8f81844-8dee-4d98-bd86-1905841b74c5", + "name": "general", + "startAt": "2017-09-24T19:37:04.474Z", + "endAt": "2019-09-24T19:37:04.474Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f0aa9672-f5fd-4fac-85e6-646944273ea3", + "creativeSets": [ + { + "creativeSetId": "abfe46c0-f142-4c0b-a0d6-a7ae8e810b11", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cceda550-0579-4304-b718-c7d3b889414f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Database Marketing Now - High Quality & Custom Targeted", + "title": "Exactdata", + "targetUrl": "www.exactdata.com/Database/Marketing_Lists" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "P2WrQgJRNfq", + "name": "Compare Databases" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "47911f47-522a-48ab-bbec-c64c2b702369", + "name": "general", + "startAt": "2017-09-24T19:37:05.154Z", + "endAt": "2019-09-24T19:37:05.154Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f23a64e8-937f-438f-8ec5-e101aa177208", + "creativeSets": [ + { + "creativeSetId": "b114f9e7-857b-4c40-b2d9-92f8689c16a2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "395e8769-22a0-4f13-99d8-e42379a04a52", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Biosimilar vs. Biologic - Learn about the Differences", + "title": "Examinebiosimilars", + "targetUrl": "examinebiosimilars.com" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "zVMz-LlY_xf", + "name": "Biology Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d677259f-9b65-4923-9852-884b44f86c47", + "name": "general", + "startAt": "2017-09-24T19:37:05.744Z", + "endAt": "2019-09-24T19:37:05.744Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4620e2d7-9dba-4f96-b621-bfa818180a35", + "creativeSets": [ + { + "creativeSetId": "53a0ca98-6aab-4899-b057-55985a898220", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a7c5ed54-c568-493f-97ca-fc7a1db7afda", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Excellence Playa Mujeres - All Inclusive & Adults Only", + "title": "Excellenceresorts", + "targetUrl": "www.excellenceresorts.com/Playa-Mujeres/Luxury" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "xrH2KKuKBDm", + "name": "Cruise Vacations" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "35390e18-dd29-4689-9771-a21b13ec30cf", + "name": "general", + "startAt": "2017-09-24T19:37:06.283Z", + "endAt": "2019-09-24T19:37:06.284Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cc17bc4b-93f6-4351-8d12-8be317043fc4", + "creativeSets": [ + { + "creativeSetId": "a6c794dc-bff6-412a-8866-b43534024ce3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "98b396cc-e4d7-4473-9531-03f457567235", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Print and Mail Postcards - Postcard Marketing Made Easy", + "title": "Excelprintmail", + "targetUrl": "www.excelprintmail.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "rN7XjveZc4b", + "name": "Email Marketing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3116f6ad-1b0c-4b48-b825-46a4efc27511", + "name": "school", + "startAt": "2017-09-24T19:37:06.846Z", + "endAt": "2019-09-24T19:37:06.846Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ac6aee2d-d375-4d4e-a223-07bce0e828bd", + "creativeSets": [ + { + "creativeSetId": "20e3b7f1-eb6e-4d03-b0e5-2bb5acc69098", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "52c7f95a-121f-441d-818f-cd43bebb4bf1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Architecture Degree", + "title": "Excite", + "targetUrl": "excite.com/Architecture Degree" + } + } + ], + "segments": [ + { + "code": "avw0QD-PbLk", + "name": "Architecture" + }, + { + "code": "dOQmj5NS4GvY", + "name": "Architecture Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9f46b615-dd3d-452f-91c9-b2a45171b306", + "name": "health", + "startAt": "2017-09-24T19:37:07.167Z", + "endAt": "2019-09-24T19:37:07.167Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ac6aee2d-d375-4d4e-a223-07bce0e828bd", + "creativeSets": [ + { + "creativeSetId": "ae33e811-7675-4972-b2f1-5e5889064626", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "be66fcdf-c8a1-4292-87e1-d9ae0f5000c1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Thyroid Books", + "title": "Excite", + "targetUrl": "excite.com/Thyroid Books" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "Q9F_XhEg8W_", + "name": "Thyroid Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "070265ad-c13f-4e32-bdc3-4e846c1ecb76", + "name": "dating", + "startAt": "2017-09-24T19:37:07.509Z", + "endAt": "2019-09-24T19:37:07.510Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ac6aee2d-d375-4d4e-a223-07bce0e828bd", + "creativeSets": [ + { + "creativeSetId": "02b609ac-a05f-4268-a339-b12e4700f97c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2e2e8d4b-ae7e-4193-8d89-3997ec1540aa", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Christian Singles Meet - Search for Christian Singles Meet", + "title": "Excite", + "targetUrl": "excite.com/Christian Singles Meet" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "tEYym_TVzMg", + "name": "Christian Meet" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2c77ab44-0082-40ce-845d-0ad7da7a9356", + "name": "general", + "startAt": "2017-09-24T19:37:08.076Z", + "endAt": "2019-09-24T19:37:08.076Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9b9652bc-b9e1-4ffd-b20b-3a4484969a66", + "creativeSets": [ + { + "creativeSetId": "bcea7cd9-3df1-407d-a41e-4450f64a8d2a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "168c1fce-476a-407c-8725-afc63ab5e30b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Exercise Books", + "title": "Exercise-Books", + "targetUrl": "Exercise-Books.compare99.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "Gn19-1NmjlI", + "name": "Exercise Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1650f503-89ce-4517-ad3c-e29ef832c4c7", + "name": "general", + "startAt": "2017-09-24T19:37:08.643Z", + "endAt": "2019-09-24T19:37:08.643Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "88f56e41-970a-4c24-9df2-a2d278cc948c", + "creativeSets": [ + { + "creativeSetId": "ad7254b7-6b47-4c95-acb3-0121bd1b5a51", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b3e7262a-3119-4521-85cd-31ce5905bde2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Exotics Racing Las Vegas | exoticsracing.com", + "title": "Exoticsracing.com", + "targetUrl": "https://exoticsracing.com/?utm_source=bing&utm_medium=cpc&utm_campaign=Bing_Ads" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "EL4AmakrJp4P", + "name": "racing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "aeab06e2-1d86-4d99-b080-b2f11d6a3f57", + "name": "general", + "startAt": "2017-09-24T19:37:09.192Z", + "endAt": "2019-09-24T19:37:09.192Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a2bd9716-3430-41ba-9ac0-2e5c8a3bda52", + "creativeSets": [ + { + "creativeSetId": "60450c0a-8987-4ebb-bcc0-1268cd1d2709", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1472b015-6b6f-46ae-a4da-21bc47b99d6b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Expedia Cruises - Cruise Vacations | expedia.com", + "title": "Expedia", + "targetUrl": "www.expedia.com/Cruises" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "xrH2KKuKBDm", + "name": "Cruise Vacations" + } + ] + }, + { + "creativeSetId": "394d483b-e652-42c7-aa25-0efad53cc7fe", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "55a99398-8e9f-4aea-abd4-4b1888b234eb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Expedia - Book Cheap Flights - Fly At Incredible Prices.", + "title": "Expedia", + "targetUrl": "www.expedia.com/Flights" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "0LyFuY7_Cse", + "name": "Flight Deals" + } + ] + }, + { + "creativeSetId": "1003cc12-abec-40d9-916c-4e43ade41812", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3b5b762f-1041-4556-bb7b-3f43b620dff6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hotels - Expedia.com - Bundle Flights and Hotel Room.", + "title": "Expedia", + "targetUrl": "www.expedia.com/Hotels" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6mVE5rciM5p", + "name": "Hotel Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ad1d5ad4-6de2-4b6b-993c-0a6bc7adc822", + "name": "general", + "startAt": "2017-09-24T19:37:10.428Z", + "endAt": "2019-09-24T19:37:10.428Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "337190c5-6409-4a9d-9830-30be634c5651", + "creativeSets": [ + { + "creativeSetId": "85232a00-8589-441b-b7ee-99c12ff9411c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5c32b45b-6b0f-4a11-9533-14b11dcb0e32", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Expedia.com® - AARP Travel Center", + "title": "Expedia-aarp", + "targetUrl": "www.expedia-aarp.com/AARP" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "0LyFuY7_Cse", + "name": "Flight Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2e0c8b87-1adb-4913-83bf-7a38032374f8", + "name": "general", + "startAt": "2017-09-24T19:37:11.027Z", + "endAt": "2019-09-24T19:37:11.028Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7922a58b-5f9a-40fe-b836-4c0d3c88bcae", + "creativeSets": [ + { + "creativeSetId": "f2718358-cc04-4530-aa3d-f31bb759b7b7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "39156e23-49ed-4198-8af6-278a9a49c8d3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Lindblad Tours - Global Small Ship Adventure Travel", + "title": "Expeditions", + "targetUrl": "Expeditions.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "lvYt-vwY0ml", + "name": "Travel Tours" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "51d009bf-0fa0-4306-a1da-a169a2b781f0", + "name": "general", + "startAt": "2017-09-24T19:37:11.815Z", + "endAt": "2019-09-24T19:37:11.816Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "240ae351-a119-46bd-9e25-5f9739ee5614", + "creativeSets": [ + { + "creativeSetId": "129d613e-8437-4e8f-9452-2ea3e6a8dfe6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0c608664-8e39-4e31-887b-28f77855c2a6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Computer Repairs - Experimac South Riding | experimac.com", + "title": "Experimac", + "targetUrl": "experimac.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "1Uk9lOnHZczB", + "name": "Computer Repairs" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e3cf642e-c9fe-41bb-bfc5-37683009ca9b", + "name": "general", + "startAt": "2017-09-24T19:37:12.521Z", + "endAt": "2019-09-24T19:37:12.522Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a120a032-1e8f-4c85-be92-11a2c68bf208", + "creativeSets": [ + { + "creativeSetId": "c0235619-1204-41b1-b410-89dd38e98909", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "92cff931-3274-4bba-8d0c-691900235729", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Sign Up For Military - Up to 60% Off Top Brands", + "title": "Expertvoice", + "targetUrl": "www.expertvoice.com/military" + } + } + ], + "segments": [ + { + "code": "xdewbpM2V5-", + "name": "Military" + }, + { + "code": "YwcGJSE5gioe", + "name": "Join The Military" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "baaa9215-2a0e-42c8-b1c9-cefc4139f3db", + "name": "general", + "startAt": "2017-09-24T19:37:13.092Z", + "endAt": "2019-09-24T19:37:13.093Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "578e5858-8c5f-4ed9-8e8f-81b6d4a61a95", + "creativeSets": [ + { + "creativeSetId": "30b12723-dadd-41eb-9033-aff6b14b8da3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9d202def-59d5-4309-bf4e-34fbffc13bc4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online IT Course - ECPI™ University Online. | ecpi.edu", + "title": "Explore.ecpi", + "targetUrl": "explore.ecpi.edu/Online/IT-Degrees" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "rNd-q2umuLA", + "name": "IT Online Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ef9bca10-d126-4b2c-87c2-a588233d7476", + "name": "general", + "startAt": "2017-09-24T19:37:13.764Z", + "endAt": "2019-09-24T19:37:13.765Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c24b1ef0-9c4f-4c62-a07b-cf08ed6c68a4", + "creativeSets": [ + { + "creativeSetId": "7ddc11bd-f8d0-4611-ae5e-36a7833006f0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7229e5a5-da16-4fb7-b6b7-547bf5891197", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Award Medals For Less - Stop Overpaying the Big Guys", + "title": "Expressmedals", + "targetUrl": "www.expressmedals.com/express/medals" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "70IAZkzKPe0E", + "name": "Online metals" + } + ] + }, + { + "creativeSetId": "4db1013a-3c53-44b7-96ae-08c2b2cb82fe", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ede98612-363b-42e9-a8a7-f9fe90e943b2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Lowest Price Cricket Medals - Save 20% Over The Big Guys", + "title": "Expressmedals", + "targetUrl": "www.expressmedals.com/medals/cricket" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "GElRy07ca5jr", + "name": "Cricket Medals" + } + ] + }, + { + "creativeSetId": "f5d65a5f-fdb1-4747-8a94-0fd77b4cf40a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4f471e91-c942-4938-bbcf-6d2626b6334e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cheap Fencing Trophies - Thousands of Trophies in Stock", + "title": "Expressmedals", + "targetUrl": "www.expressmedals.com/trophies/fencing" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "lUKHxt2iV2P9", + "name": "Fencing Trophies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ff677d3a-ffc2-437e-b6b3-1cd2da6267ba", + "name": "general", + "startAt": "2017-09-24T19:37:14.834Z", + "endAt": "2019-09-24T19:37:14.835Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5cb86d17-511c-4482-bf99-585e82bfa842", + "creativeSets": [ + { + "creativeSetId": "f73be517-6d27-40ad-a977-27110ff753aa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "171a82cc-d5b6-4b46-8471-ec5ceed4f595", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Gymnastics Awards On Sale", + "title": "ExpressMedals", + "targetUrl": "ExpressMedals.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "nW9RcA3E3JA", + "name": "Gymnastics Awards" + } + ] + }, + { + "creativeSetId": "f44ae46d-61cf-4e26-9f23-839b30e00388", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9aa93b3e-1505-4c14-8f95-63a38eeadf33", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Champion Wrestling Belts", + "title": "ExpressMedals", + "targetUrl": "ExpressMedals.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "J5bdxnl4xfj", + "name": "Wrestling Belts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "30e7a2e5-8e83-438e-b009-cef8ecb780f0", + "name": "general", + "startAt": "2017-09-24T19:37:15.694Z", + "endAt": "2019-09-24T19:37:15.694Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "93ce9226-9ecf-46a6-84af-1b06efcb555a", + "creativeSets": [ + { + "creativeSetId": "e82bc375-7f80-44f5-880c-1fb9cb8dae0d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2ea80102-0b8b-4a75-a71b-c370b8900720", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Extra® Gum Nutrition Facts - Grab A Pack Today", + "title": "Extragum", + "targetUrl": "www.extragum.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "lWAbLH7wUoL", + "name": "Nutrition Shop" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "54ce0e44-74cd-465a-ac8c-ac49dd32702f", + "name": "general", + "startAt": "2017-09-24T19:37:16.277Z", + "endAt": "2019-09-24T19:37:16.277Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "59fea50d-e9ef-4aaa-b625-32cf730063c4", + "creativeSets": [ + { + "creativeSetId": "e6f5320c-2859-4ef6-896a-498547be8244", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ade7212c-4e1d-41d5-b875-166480e7061b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Exxon Mobil Rewards+™ - Earn Points at Exxon & Mobil", + "title": "Exxonandmobilrewardsplus", + "targetUrl": "exxonandmobilrewardsplus.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "OAA-T668LRa", + "name": "Fuel Cards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4f38598f-3c74-410b-8a0f-535e56f2e81e", + "name": "general", + "startAt": "2017-09-24T19:37:16.848Z", + "endAt": "2019-09-24T19:37:16.848Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "93f746cf-91e4-47d3-b15d-b7be6c436867", + "creativeSets": [ + { + "creativeSetId": "c878559b-ba0d-4745-b490-78cbf0213293", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1329aa51-9775-4025-af55-e2277b36b4c3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "ExxonMobil™ Fleet Fuel Cards - Save 10¢/Gallon For 7 Months", + "title": "Exxonmobilfleetcards", + "targetUrl": "www.exxonmobilfleetcards.com/Business/Fuel" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "OAA-T668LRa", + "name": "Fuel Cards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6b3d2769-7fbe-4422-871d-890197c162ad", + "name": "cooking", + "startAt": "2017-09-24T19:37:17.530Z", + "endAt": "2019-09-24T19:37:17.530Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2b6e2004-0281-4d3b-bfde-f2f71c4eb1db", + "creativeSets": [ + { + "creativeSetId": "fb1bfcdc-cb3b-422b-8533-724f5d3c6a3a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f4ddbfd7-5ecb-4f6f-a5f0-0ed6761eb258", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "M&M's® Baking Recipes - Delectable Dessert Creations", + "title": "Facebook", + "targetUrl": "www.facebook.com/recipes" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "9Roh9lJ0tSd", + "name": "Cooking Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0ad58ddd-b089-4d4c-ad11-08e604df56ec", + "name": "general", + "startAt": "2017-09-24T19:37:18.126Z", + "endAt": "2019-09-24T19:37:18.126Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "97f3e0ba-91d8-4e9d-8620-2539a615116c", + "creativeSets": [ + { + "creativeSetId": "d972b8bc-2939-4cc0-8362-e97fa6f81a82", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "768cc814-76dd-4575-b223-dedce77aacd2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Try Core Power Protein Shakes - Designed For Optimal Recovery", + "title": "Fairlife", + "targetUrl": "fairlife.com/Core_Power/Protein_Shakes" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "2SU6dGfT9-t", + "name": "Protein Shakes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "89ce785a-2b13-44d5-84b8-874a0a371226", + "name": "general", + "startAt": "2017-09-24T19:37:18.714Z", + "endAt": "2019-09-24T19:37:18.714Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "737902a5-b95c-4151-bb26-de572445f042", + "creativeSets": [ + { + "creativeSetId": "e7f53725-6e13-48bb-b9c9-47847171010d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "235f6c82-1d47-49f1-8f16-11134efbcd98", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "United Soccer Shop - Officially Licensed Everything", + "title": "Fanatics", + "targetUrl": "www.fanatics.com/MLS/DC_United" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wnYgEl7cckf", + "name": "Soccer Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5ce102f5-617e-4729-96fc-6748c12d7656", + "name": "general", + "startAt": "2017-09-24T19:37:19.310Z", + "endAt": "2019-09-24T19:37:19.310Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9c0ba260-a888-4c53-9516-6a0b84adc7a4", + "creativeSets": [ + { + "creativeSetId": "f6101a57-247a-45ea-a382-198dcfac6d24", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d6a517bd-603c-4c91-9fc5-0eeaa48176e3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Watch Movies with FandangoNOW - Over 70,000 Movies + TV Shows", + "title": "Fandangonow", + "targetUrl": "www.fandangonow.com/Buy/Movies" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "mRgPV84LYAT", + "name": "Stream Movies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8481863a-d988-4bc1-9abe-120e97006dc4", + "name": "general", + "startAt": "2017-09-24T19:37:20.054Z", + "endAt": "2019-09-24T19:37:20.055Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9b35853b-14bf-4cb5-b518-ecc7b87cc23f", + "creativeSets": [ + { + "creativeSetId": "65eafb23-0529-4635-b49f-6a88e5e96ec7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "eea27ac2-69a8-476b-9b38-b9875df55d5c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "FanDuel - Official Site - DFS - More Ways To Win", + "title": "Fanduel", + "targetUrl": "www.fanduel.com/Fantasy/Sports" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "F7q5REWSRoB", + "name": "Sports Betting" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8062dbf5-bc52-43fc-8ebe-30398ccffff0", + "name": "general", + "startAt": "2017-09-24T19:37:20.595Z", + "endAt": "2019-09-24T19:37:20.596Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "592d45c6-d289-4706-8a46-94f6a7a57393", + "creativeSets": [ + { + "creativeSetId": "336f8686-461b-45dd-90cf-41ead6371a3f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "86f762da-0072-4af5-aa2c-ae17c359be54", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Olympics Live Stream | fanical.com", + "title": "Fanical", + "targetUrl": "http://fanical.com/olympic-games-watching.aspx?utm_source=bing&utm_medium=cpc&utm_term=olympics&utm_campaign=FN+Olympics+Prnt+OL" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "3fkoM6NLnpzU", + "name": "olympics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ea978e27-262c-4526-b6e0-f4c4148faacb", + "name": "general", + "startAt": "2017-09-24T19:37:21.176Z", + "endAt": "2019-09-24T19:37:21.176Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5318514a-f985-41af-bb61-4622f9b0ee6a", + "creativeSets": [ + { + "creativeSetId": "b5e33071-a4aa-4c23-86bd-a65e7d44e55c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "edbbd587-1a59-4798-aee8-da23b5a6c127", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Official NHL Team Merchandise - Shop Official NHL Gear", + "title": "Fansedge", + "targetUrl": "www.fansedge.com/NHL" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "hAIdxFZ19kvh", + "name": "Hockey Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cedb89d8-e2de-47c4-8499-24f2f9a5f69a", + "name": "general", + "startAt": "2017-09-24T19:37:21.993Z", + "endAt": "2019-09-24T19:37:21.993Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "17d21c2a-7f4f-4ffd-8723-370436dc7aac", + "creativeSets": [ + { + "creativeSetId": "4f7dbbe5-3de4-4432-9fce-27a3bc95e489", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4a05acc0-249b-4f05-b7f7-d88ec953e76b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "cell phone plans - cell phone plans | fastquickanswer.com", + "title": "Fastquickanswer", + "targetUrl": "fastquickanswer.com" + } + } + ], + "segments": [ + { + "code": "05KGovyhnUj", + "name": "cell phones" + }, + { + "code": "PDcNk9LToal", + "name": "cell phones" + } + ] + }, + { + "creativeSetId": "ac1f5f8a-42c5-417a-a775-0a3f747b5ec9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e60c1d7b-8036-448f-899a-daa3eb1dd1b7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "stress anxiety - Causes & Treatments", + "title": "Fastquickanswer", + "targetUrl": "fastquickanswer.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "3p24XjIze4TV", + "name": "Stress Treatment" + } + ] + }, + { + "creativeSetId": "880e0a2a-244a-4955-8ff7-e5c3ae154db4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cbf3c911-9dbc-4e3d-9ee6-ecff9d4ebe13", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "smoke free - Cheap Quit Smoking Aid", + "title": "Fastquickanswer", + "targetUrl": "fastquickanswer.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "TAoUE1tinMK", + "name": "Quit Smoking" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5d905e32-6664-493e-9689-4f896cdb08b7", + "name": "general", + "startAt": "2017-09-24T19:37:23.134Z", + "endAt": "2019-09-24T19:37:23.134Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "62358ddb-230d-49d3-a7c1-ea8bfe5d98b3", + "creativeSets": [ + { + "creativeSetId": "00d05c68-89e1-4442-a8b6-74a19693bf37", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4a96eed5-adfb-452e-bf14-8a4c1a68e645", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "FIDM Fashion Institute‎ | fidm.edu", + "title": "Fidmedu", + "targetUrl": "www.fidm.edu" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "mDuvMtm0102", + "name": "fashion" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1a148dc9-253c-4754-977b-d37214baa052", + "name": "general", + "startAt": "2017-09-24T19:37:23.840Z", + "endAt": "2019-09-24T19:37:23.840Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "73bcd0c8-b619-4200-83f6-24e4a5f1c3ab", + "creativeSets": [ + { + "creativeSetId": "568d0e80-5cb2-4658-bad8-a7c692661139", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b39be24b-81b8-4483-9daa-966807d837c8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Degrees in Film Production - 1,000+ Programs Nationwide", + "title": "Film", + "targetUrl": "film.comparetopschools.com/FilmProduction/DegreePrograms" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "BAhEnDxcxBo", + "name": "Film Production Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cebada50-449f-4a6d-a1ce-b22e52cc1936", + "name": "general", + "startAt": "2017-09-24T19:37:24.439Z", + "endAt": "2019-09-24T19:37:24.439Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d570fd13-02d4-4a22-9597-dfa68d666d2f", + "creativeSets": [ + { + "creativeSetId": "1b514529-5654-4e18-b653-b1602e99a900", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "13aa2a64-ab41-444f-9e92-bfa17231cf3b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find a Financial Advisor? - Compare Fees Advice & Ratings", + "title": "Financial-advisor.wiseradvisor", + "targetUrl": "financial-advisor.wiseradvisor.com/find-an-advisor" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "z7floCfZA_P", + "name": "Financial Advisors" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7b9095a8-6997-43aa-9bd5-29cbd95d0089", + "name": "general", + "startAt": "2017-09-24T19:37:25.155Z", + "endAt": "2019-09-24T19:37:25.155Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a8b7bc16-60da-4eef-914b-7e2a2f174f07", + "creativeSets": [ + { + "creativeSetId": "366abd2a-077a-4a9f-8eec-18761a0c41bc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3b36a2cd-fc7c-4095-a4fb-b6b9111539d1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Job Listing Sites - Find Out More and Save More.", + "title": "Find.mail", + "targetUrl": "find.mail.com/Job Listing Sit" + } + } + ], + "segments": [ + { + "code": "6QLcn3Fnca-", + "name": "Careers" + }, + { + "code": "AkN_-chsgWP", + "name": "Find Work" + } + ] + }, + { + "creativeSetId": "9d050644-d7fc-4c69-b1f5-47aec8a9142e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "798ce4ec-6e1f-4321-a92e-25c0ccb2f6e5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Royalty Free Images - Get All the Images You Want!", + "title": "Find.mail", + "targetUrl": "find.mail.com/Free Images/Royalty" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "IdSgRp0c7Tn", + "name": "Stock Photos" + } + ] + }, + { + "creativeSetId": "c5d894de-ab06-4d65-a3e3-2c05ac99a60a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2c5149c9-5b8b-4b2d-a379-f738af32f815", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Lawyer Medical Malpractice - Need Help?", + "title": "Find.mail", + "targetUrl": "find.mail.com/Malpractice/Lawyer" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "E_MEtpVexy1", + "name": "Find a Lawyer" + } + ] + }, + { + "creativeSetId": "d04b1f91-fa40-43ec-9e1b-2d9e96852f7f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f9791dbe-8018-48bb-8387-ac0b55b5a793", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Personal Loan Online - 2018 Best Personal Loans", + "title": "Find.mail", + "targetUrl": "find.mail.com/Personal/Loans" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "KclHbUft33H", + "name": "Personal Finance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0cbd1657-ebed-432f-847e-c5232e715a7e", + "name": "general", + "startAt": "2017-09-24T19:37:26.713Z", + "endAt": "2019-09-24T19:37:26.713Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a9d18999-8c3c-4b8a-a1d8-05df0be7d85a", + "creativeSets": [ + { + "creativeSetId": "c0bbdf36-adb2-4347-83b1-ad5d45ece592", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "adbebcea-9608-4478-abb5-7561c81dbc56", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find a Financial Advisor? - Compare Fees Advice & Ratings", + "title": "Findanadvisor.retirementplanning", + "targetUrl": "findanadvisor.retirementplanning.net/find-an-advisor" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "z7floCfZA_P", + "name": "Financial Advisors" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "de99f1a0-e8a1-450f-9752-59776eb22029", + "name": "general", + "startAt": "2017-09-24T19:37:27.506Z", + "endAt": "2019-09-24T19:37:27.506Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f668a415-314f-4334-9c42-346eb8d64b8d", + "creativeSets": [ + { + "creativeSetId": "fa176159-a481-4f01-b59a-68dc6ca421bf", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c3f8c37d-9603-4467-90e3-c51a431277f5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Diabetes 2 Treatment - Latest Articles Here. | findarticles.com", + "title": "Findarticles", + "targetUrl": "www.findarticles.com/Diabetes 2 Treatment" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "VSR0lepFE8Hw", + "name": "Diabetes Treatment" + } + ] + }, + { + "creativeSetId": "da520494-cf1a-4140-969a-807765d9ceb1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a8513675-c2a9-48e3-8ebe-597f980daa7d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Apply Green Card - News & Shopping Results", + "title": "Findarticles", + "targetUrl": "www.findarticles.com/Apply Green Card" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "A7Bk9uyA2zgj", + "name": "Green Card Application" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "482cfc17-15c6-4de2-b102-af1dc61f28a1", + "name": "general", + "startAt": "2017-09-24T19:37:28.356Z", + "endAt": "2019-09-24T19:37:28.356Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "603d2f1d-8bf7-48f2-9b11-3592c6f9e245", + "creativeSets": [ + { + "creativeSetId": "169cdfc1-80f5-4b56-a772-1fc0f20d9b25", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9c977e9f-6191-47a0-9050-64d62f508069", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "North Port Lawyers - Free Search at FindLaw", + "title": "FindLaw", + "targetUrl": "www.FindLaw.com/NorthPort-Lawyers" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "E_MEtpVexy1", + "name": "Find a Lawyer" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "840c4fc4-0584-4faa-ae38-df61e29028d1", + "name": "general", + "startAt": "2017-09-24T19:37:28.952Z", + "endAt": "2019-09-24T19:37:28.952Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6912a6d0-add1-4a79-8d9f-306c77c5e4a6", + "creativeSets": [ + { + "creativeSetId": "01d85ce2-b24f-4259-bedf-1a7b4ba47550", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2593492d-d05c-4d92-bc3a-d47396ee6128", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Present Your Case - Free - Local Lawyers Respond", + "title": "Findlawyersattorneys", + "targetUrl": "www.Findlawyersattorneys.com/Help-Now" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "E_MEtpVexy1", + "name": "Find a Lawyer" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8be9baf4-5160-43c3-b682-ea51cc1d15f4", + "name": "general", + "startAt": "2017-09-24T19:37:29.741Z", + "endAt": "2019-09-24T19:37:29.741Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c35eecf9-0b33-4832-9b84-a0a7cfd7c5c1", + "creativeSets": [ + { + "creativeSetId": "5bcf278d-bb47-4959-b60a-20502863ba68", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "51e560b9-2181-46f8-a418-934c3996a6b7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Coins and Collectibles - Classic & Theme Coin Treasures | findrarecoins.com \r\n", + "title": "FindRareCoins.com", + "targetUrl": "http://findrarecoins.com/coinsets/" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "h2T2UKnuY6Gk", + "name": "coins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bc15197b-8693-4e21-8b9c-e8cbf2dc2b96", + "name": "general", + "startAt": "2017-09-24T19:37:30.401Z", + "endAt": "2019-09-24T19:37:30.401Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "70f94d48-bb48-47b9-bc53-7b08f830edf4", + "creativeSets": [ + { + "creativeSetId": "9f19b285-ea3a-43bd-b6fa-24f3ba9275a8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3016234c-215f-40dc-b53d-75ee07ab24f7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online Psychology Degrees - Undergrad Psychology Programs", + "title": "Findto", + "targetUrl": "www.findtopcolleges.com/Psychology/Degree" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mTbLUekRxb3", + "name": "Psychology Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ab7eb924-5f9b-4882-88f7-1f4b71d1eadb", + "name": "general", + "startAt": "2017-09-24T19:37:31.003Z", + "endAt": "2019-09-24T19:37:31.003Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "aacab12f-e10b-4ed1-bbd1-9784aade4273", + "creativeSets": [ + { + "creativeSetId": "50cf2d78-49f3-44ef-b726-b4da15d092c1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "38c34780-7582-4861-93cb-54036a165d3f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2018 Online College Degrees - Degree Programs by Subjects", + "title": "Findtopcolleges", + "targetUrl": "www.findtopcolleges.com/OnlineColleges" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "ANs-xRChItO", + "name": "College Degrees Online" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "16063366-4d58-4b0a-8a24-36dc67c4aa01", + "name": "general", + "startAt": "2017-09-24T19:37:31.564Z", + "endAt": "2019-09-24T19:37:31.564Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "14f2a4a0-464a-4c05-b63c-9ef524e46877", + "creativeSets": [ + { + "creativeSetId": "b6a79954-2c62-4348-9685-d29e4149fa17", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8893f66c-c7de-4b09-9350-8fbf851baa9c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fine Woodworking® Magazine – Official Site - Save Up To 56% | FineWoodworking.com", + "title": "Fine Woodworking Magazine", + "targetUrl": "https://subscribe.finewoodworking.com/pubs/TP/FWW/sem_May2017.jsp?cds_page_id=216244&cds_mag_code=FWW&id=1517435851912&lsid=80311557150032736&vid=2&utm_medium=cpc&cds_response_key=W1032PPC&utm_term=standardads&utm_source=yahoo&utm_campaign=Y_B_FWW_US_E" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "cGK4Ko8w2zkX", + "name": "woodworking" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1ac82102-c0cb-4a5f-882e-c438618b04aa", + "name": "general", + "startAt": "2017-09-24T19:37:32.146Z", + "endAt": "2019-09-24T19:37:32.146Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d7996268-b269-437e-a257-173c491f69c8", + "creativeSets": [ + { + "creativeSetId": "6d3459a3-1dbe-4e81-94ad-22bb3e9a881c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1f833430-b3da-4190-8a04-8d4076153c52", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fine Woodworking® Magazine - 4th of July Sale - Save 64%", + "title": "Finewoodworking", + "targetUrl": "subscribe.finewoodworking.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "sa6bkvlxwxQ", + "name": "Woodworking Projects" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8851041c-1412-4b7d-80ae-ff0c9cce70c5", + "name": "general", + "startAt": "2017-09-24T19:37:32.747Z", + "endAt": "2019-09-24T19:37:32.748Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "16086b88-4479-4d0e-acf5-60e4825463e1", + "creativeSets": [ + { + "creativeSetId": "9903af58-6575-4a7b-a90a-076150442b08", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "aa217d3d-1b6c-4b75-9355-f017faa5b06e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Grab Woodworking Projects - Learn woodworking online!", + "title": "Finewoodworkplans", + "targetUrl": "finewoodworkplans.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "sa6bkvlxwxQ", + "name": "Woodworking Projects" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "481e3564-d7c6-4b7b-aefd-76a911593d18", + "name": "general", + "startAt": "2017-09-24T19:37:33.320Z", + "endAt": "2019-09-24T19:37:33.320Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d1a8b174-66be-460d-8828-458f12984e77", + "creativeSets": [ + { + "creativeSetId": "f7b26b3b-eaab-41b9-a165-61d494b8d86d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "aa003d03-2099-42dc-bb58-3e511542db5f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "MBFS Investment Opportunities - First Class Demand Notes", + "title": "Firstclassdemandnotes", + "targetUrl": "firstclassdemandnotes.com" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "z7floCfZA_P", + "name": "Financial Advisors" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fcb4b75c-882b-4313-86b2-e05853cc195b", + "name": "general", + "startAt": "2017-09-24T19:37:34.088Z", + "endAt": "2019-09-24T19:37:34.088Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c454bc4e-6966-4d9c-9106-4a71c75ac088", + "creativeSets": [ + { + "creativeSetId": "82196ae2-a4ce-4d4c-9d3e-ea9e0ebd2ba9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7ec41496-842a-4be2-aff9-b14117f8cee2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Inventory Control | fishbowlinventory.com", + "title": "Fishbowlinventory", + "targetUrl": "www.fishbowlinventory.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "2QJW6dTCw6z", + "name": "Inventory Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "38c71bde-f09f-4207-84a1-041bc23ab0cf", + "name": "general", + "startAt": "2017-09-24T19:37:34.669Z", + "endAt": "2019-09-24T19:37:34.669Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e4b2b8dd-2b9e-4441-ab28-70275867207a", + "creativeSets": [ + { + "creativeSetId": "30097255-2a40-4d55-9c6d-b1e93a794ead", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0bad2058-74bb-4de7-a22a-797cd7713109", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Advanced Anxiety Treatment - FDA-Cleared Medical Device", + "title": "Fisherwallace", + "targetUrl": "www.fisherwallace.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "3p24XjIze4TV", + "name": "Stress Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6ce18ddf-0277-46f5-9e67-e1b069c58cc8", + "name": "general", + "startAt": "2017-09-24T19:37:35.317Z", + "endAt": "2019-09-24T19:37:35.317Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "14d2f877-6d0a-491b-8dec-bda6f1b3d9cb", + "creativeSets": [ + { + "creativeSetId": "179f50f2-25da-4051-92ba-c95727454483", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3c94fbc6-9d03-493f-b265-a9130af5bc51", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "True Fitness Equipment Sale - Lowest Prices, 40-70% Off MSRP", + "title": "Fitnesssuperstore", + "targetUrl": "www.fitnesssuperstore.com/TrueFitness/Sale" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "vVZgFB3iWow", + "name": "Bodybuilding Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "35c4e24a-1ed0-458c-adae-70c1a5dd01f5", + "name": "general", + "startAt": "2017-09-24T19:37:35.970Z", + "endAt": "2019-09-24T19:37:35.970Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5d0b7c49-8ddc-4dfd-8cbe-3eff055ec522", + "creativeSets": [ + { + "creativeSetId": "1d9bc148-f883-4a0c-9a53-70511c46b3af", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fcfee382-2816-4dba-bcc7-015f73dd3b29", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "$299 - One Way Moving - Cheaper Than a Truck Rental", + "title": "Fivemovers", + "targetUrl": "fivemovers.com/cheap/moving" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "L6d8TFZSNbmS", + "name": "Online Shipping" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "95f4330d-1334-4047-991f-b997419e5ea9", + "name": "general", + "startAt": "2017-09-24T19:37:36.547Z", + "endAt": "2019-09-24T19:37:36.547Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "59c3e5a4-f8e8-4597-bd19-3e67a195cd3e", + "creativeSets": [ + { + "creativeSetId": "c6b6a283-da3f-4e8d-a982-bd072553b911", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "69529aa7-bdcf-461f-8dc4-c2b7bfcaf6d3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fiverr.com - Sign Up | fiverr.com", + "title": "Fiverr", + "targetUrl": "www.fiverr.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "EjsX_m6RTAg", + "name": "Graphic Designers" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5f0d38a6-8083-4d4c-bda3-b900758020d3", + "name": "general", + "startAt": "2017-09-24T19:37:37.112Z", + "endAt": "2019-09-24T19:37:37.113Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b986378c-a539-4458-8cca-9dacf2d1472f", + "creativeSets": [ + { + "creativeSetId": "4ba4708e-604f-4ce9-8738-c54389084051", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9c7fccdd-63c0-466b-8742-f3332b37c12f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Exclusive Flight Deals - Save Big on Flight Tickets", + "title": "Flightgorilla", + "targetUrl": "http://www.flightgorilla.com/Cheap%20Flights/Deals" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "0LyFuY7_Cse", + "name": "Flight Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6669e7be-57ff-45ff-8d53-dec5e21c7503", + "name": "general", + "startAt": "2017-09-24T19:37:37.798Z", + "endAt": "2019-09-24T19:37:37.798Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0ce45b3d-578d-4806-a695-9e31680834f5", + "creativeSets": [ + { + "creativeSetId": "3dd1e8f4-570f-4a5e-bd0d-5b6118a098bb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "177bf2e4-aeaf-4d6b-829e-a372214b6da5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Meet Gay Dating Site", + "title": "Flirt", + "targetUrl": "Flirt.com" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "E4Jw5e24-6gs", + "name": "Gay Meet" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f41cb28d-1eba-4dd4-b3f8-3ef0c7225788", + "name": "general", + "startAt": "2017-09-24T19:37:38.356Z", + "endAt": "2019-09-24T19:37:38.356Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9efc5d3f-6cf6-4360-bcfd-aad1594c4864", + "creativeSets": [ + { + "creativeSetId": "e85739e7-9d5d-440a-8159-a110b3c3af9d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c35c7db5-d095-4b15-897e-bd8582926740", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Food & Wine® Magazine - Official Site -$1/Issue | FoodandWine.com", + "title": "FoodandWine.com", + "targetUrl": "https://subscription.foodandwine.com/storefront/subscribe-to-food-and-wine/site/wi-3trmresponsive1016-tpl.html?pkw=WI_Bing_branded_unbundle_textlink&utm_medium=paid&utm_source=bing.com&utm_campaign=cmr-foodandwine&link=1026865&fpa_oc=WI+2018+SEM+OPTIMIZELY+TEST" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "REQQSgV4UzG", + "name": "Wine" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "79651981-b6b3-4c22-95fa-3a67d75b117d", + "name": "general", + "startAt": "2017-09-24T19:37:38.928Z", + "endAt": "2019-09-24T19:37:38.928Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c3d9462e-8a4a-4746-a0b3-22ea0751fa9a", + "creativeSets": [ + { + "creativeSetId": "e91b8fb6-3088-4c19-a94b-e74bbc0724c9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4ca8db19-39e4-4182-93d4-f6dfbd47565e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Ford New Trucks & Pickups - Capable, Efficient, Smart Tech", + "title": "Ford", + "targetUrl": "www.ford.com/New_Trucks/Pickups" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "TrWA-UI4zhY", + "name": "Pickup Trucks" + } + ] + }, + { + "creativeSetId": "e33662ac-b43c-4960-8fbc-8321d9237143", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "871318a0-9ca9-4acd-be75-1a1273e77394", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Certified Pre-Owned Ford® - Search Dealer Inventory Today", + "title": "Ford", + "targetUrl": "www.ford.com/Pre-Owned/Certified Ford" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "b4xuJT0IZ_f", + "name": "Used Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "18b1fd02-7db4-4674-9320-2b0173c59644", + "name": "general", + "startAt": "2017-09-24T19:37:39.843Z", + "endAt": "2019-09-24T19:37:39.843Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "773b76ab-d9a1-4d6e-b741-0864eb2b0b01", + "creativeSets": [ + { + "creativeSetId": "0c60df44-9026-4dac-8ae1-a6700f43a903", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "39c247d3-914e-4608-a215-af1778bc62d0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Official Ford Auto Repair - Ford Service Specials", + "title": "Fordservicespecials", + "targetUrl": "fordservicespecials.com" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "px5LkO5yZzb", + "name": "Auto Parts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ffa89215-98a5-4124-8d54-a7c0b5292cf8", + "name": "general", + "startAt": "2017-09-24T19:37:40.402Z", + "endAt": "2019-09-24T19:37:40.402Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e1519bc3-0ada-42d2-a286-cf6f9236e47f", + "creativeSets": [ + { + "creativeSetId": "48a8a1ea-97a0-44fd-ac58-51fe1be54c04", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d30c5d01-a7b8-445e-a15a-23e5ed437a07", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Forestry Supplies - Free Shipping on Orders Over $150", + "title": "Forestry-Suppliers", + "targetUrl": "www.Forestry-Suppliers.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "A7P6uoAIgzo", + "name": "Forestry Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d523b60f-ca23-4c5b-8205-cb8c179aea86", + "name": "general", + "startAt": "2017-09-24T19:37:40.964Z", + "endAt": "2019-09-24T19:37:40.964Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "22fce2e5-2115-40bf-a159-fb65b0a351e2", + "creativeSets": [ + { + "creativeSetId": "8f64f991-46e4-427d-8c10-0338d18ab1e4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a376434e-8818-4e16-a7b9-a17c3b3b4000", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Play Forge of Empires. – Raise your own empire. | om.forgeofempires.com", + "title": "Forge of Empires", + "targetUrl": "https://om.forgeofempires.com/foe/us/?ref=ges_us_us_pcs_e_1&k=computer+game&bid=101500_eta_foe1" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "19VrSGVlYDMc", + "name": "gaming" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1a3486a8-80e6-4f77-befb-c2b0e133a82d", + "name": "general", + "startAt": "2017-09-24T19:37:41.710Z", + "endAt": "2019-09-24T19:37:41.711Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a968ea75-96a7-4671-96e4-37df7c8a62bf", + "creativeSets": [ + { + "creativeSetId": "f2f522b8-7d03-4a75-a92e-1b3e52046af0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "39b0434f-9cac-4b12-a6d6-964d5a2238e7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find & Flip Homes - Free Washington DC Event", + "title": "Fortunebuilder", + "targetUrl": "www.fortunebuildersinfo.com/FortuneBuilders/ThanMerrill" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "UCZ9mWvmOvyi", + "name": "Buy Real Estate" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f02a49f3-5fce-49a9-a46a-91dbc7f31073", + "name": "general", + "startAt": "2017-09-24T19:37:42.319Z", + "endAt": "2019-09-24T19:37:42.320Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5deb1678-135e-4283-b6ef-e3eab4e74f19", + "creativeSets": [ + { + "creativeSetId": "9f7abfec-134a-4781-9f26-3aadecaef327", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "003a7eea-4053-4b36-8054-2e061a7ac97d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Super Troopers 2 - Watch it on Digital Today | foxmovies.com", + "title": "Foxmovies", + "targetUrl": "www.foxmovies.com/SuperTroopers2/Movie" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "mRgPV84LYAT", + "name": "Stream Movies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e3798d3d-501c-4b8e-8ad6-e64d34b28572", + "name": "general", + "startAt": "2017-09-24T19:37:42.897Z", + "endAt": "2019-09-24T19:37:42.898Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "920d4cda-3513-4594-84e1-87935a420068", + "creativeSets": [ + { + "creativeSetId": "93595749-53a5-4fac-9eb2-02705605189f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "774769e1-79e0-437d-aae4-9b21cb7ca3a8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rugby 18 - Rugby 18", + "title": "Fragrun", + "targetUrl": "fragrun.com/games/Rugby 18" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "kQoevuYFc0X", + "name": "Rugby News" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "60c19ed8-dd02-4da7-ad46-bf8f1a354dff", + "name": "general", + "startAt": "2017-09-24T19:37:43.690Z", + "endAt": "2019-09-24T19:37:43.690Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a212442f-d194-4486-9902-e219cd212056", + "creativeSets": [ + { + "creativeSetId": "8bdfbed6-b641-4cef-a737-e7603991d9c6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4a9b479b-c4de-40c3-880c-7ba468badf0c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Frame.com | Handcrafted Frames Available‎", + "title": "Frame", + "targetUrl": "www.frame.com/ ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "18fq9aiLp0z", + "name": "body art" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4cd50b82-8663-4e18-bc75-9ecdf6ccb1fc", + "name": "general", + "startAt": "2017-09-24T19:37:44.277Z", + "endAt": "2019-09-24T19:37:44.277Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d03a8170-e32a-406c-8ada-d785f085314e", + "creativeSets": [ + { + "creativeSetId": "2ac31d8f-8a0d-4807-a029-5557c3993f62", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5f8896ee-5aaa-4513-a594-ab4be8b52349", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Design Your Own Frame - Affordable Custom Framing.", + "title": "Framebridge", + "targetUrl": "www.framebridge.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "18fq9aiLp0z", + "name": "body art" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d8c25eee-2c2f-4094-aece-8bc14659549b", + "name": "general", + "startAt": "2017-09-24T19:37:44.856Z", + "endAt": "2019-09-24T19:37:44.856Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "084b1b47-d5dd-493a-8805-549d440c32a2", + "creativeSets": [ + { + "creativeSetId": "94e485f8-4058-4080-9a05-7f8356b04423", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9718a5a1-3746-41d7-9a99-793e76993d81", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "FramedArt.com Official - Lowest Priced Artwork Online.", + "title": "Framedart", + "targetUrl": "www.framedart.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "18fq9aiLp0z", + "name": "body art" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c42a72f0-e2b6-4336-bf34-bb08ea32dd70", + "name": "general", + "startAt": "2017-09-24T19:37:45.569Z", + "endAt": "2019-09-24T19:37:45.569Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "26c7d420-41ae-428c-9f60-2288bdc055e3", + "creativeSets": [ + { + "creativeSetId": "2d7c544c-ce8f-45d4-a53b-002007a686e2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "553d50c8-348a-4ba4-a617-f6954064eaa8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fashion Artwork Deals | FramedArt.com", + "title": "FramedArt.com", + "targetUrl": "https://www.framedart.com/framed-fashion-art-c7454" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "18fq9aiLp0z", + "name": "body art" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1dc1055b-4f56-4341-bee3-70075491e3b2", + "name": "general", + "startAt": "2017-09-24T19:37:46.137Z", + "endAt": "2019-09-24T19:37:46.138Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3141d011-8e53-47e1-a4cc-f370edc954fb", + "creativeSets": [ + { + "creativeSetId": "bdd1128c-acf3-481e-bfa6-318c9095ea5a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d21579df-6e0c-4c02-9681-716a824f8909", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The Exact Frame You Want | Ships Directly To Your Door‎", + "title": "Frameiteasy", + "targetUrl": "www.frameiteasy.com/Custom_Frames ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "18fq9aiLp0z", + "name": "body art" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f4e66af5-3360-4587-90bb-5a867190dfe1", + "name": "general", + "startAt": "2017-09-24T19:37:46.711Z", + "endAt": "2019-09-24T19:37:46.712Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "199506ba-b8d4-4e03-aa6f-3c863cf4180c", + "creativeSets": [ + { + "creativeSetId": "4cf663b1-f09e-49ad-a23b-c4b973639032", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f9e408f5-90d0-474a-8915-482816206a2e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Outlet Store For Frames‎", + "title": "Frames-direct", + "targetUrl": "www.frames-direct.com/ ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "18fq9aiLp0z", + "name": "body art" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cf6b105f-653b-4f61-957e-55c1ef58690c", + "name": "general", + "startAt": "2017-09-24T19:37:47.582Z", + "endAt": "2019-09-24T19:37:47.582Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "fb823db3-4ac8-41d6-91ba-f2def431d89c", + "creativeSets": [ + { + "creativeSetId": "a480c754-752d-4b29-9f01-a8e0e0dfe957", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c38af1a2-140f-4eef-99d7-f084c5565c19", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Picture Frames 70% Off Retail | Shop today and start saving‎", + "title": "Framesbymail", + "targetUrl": "www.framesbymail.com/ ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "18fq9aiLp0z", + "name": "body art" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fa1fcf7f-ab22-4ab1-aef2-7f1b95328b15", + "name": "general", + "startAt": "2017-09-24T19:37:48.144Z", + "endAt": "2019-09-24T19:37:48.144Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "523ebd2b-3fe4-460b-9cd3-b3ac0a745430", + "creativeSets": [ + { + "creativeSetId": "76611dac-8e7f-4d75-b50a-670ef2b8f372", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f3b4aaf3-926d-4a0a-8402-500b74f32024", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Horoscope 2018 - 100% Free", + "title": "Free-horo", + "targetUrl": "www.free-horoscope.com" + } + } + ], + "segments": [ + { + "code": "VmJBdpZEByG", + "name": "Folklore" + }, + { + "code": "CYMfcvOonn5", + "name": "Daily Horoscopes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "067911cc-5f0a-4ed1-9905-f23deb12e108", + "name": "general", + "startAt": "2017-09-24T19:37:48.712Z", + "endAt": "2019-09-24T19:37:48.712Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d3667eb2-a5bc-4874-b2aa-0b13ba7ce694", + "creativeSets": [ + { + "creativeSetId": "9e708490-104b-4f10-9aac-edd5e3120b26", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ff6070b6-09f4-4879-b18f-f86a1e35ece7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Download eBooks - Free - Instant Access to Huge Collection", + "title": "Freebooks.choosybookworm", + "targetUrl": "freebooks.choosybookworm.com/free" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "Fd-YZYI1wwN", + "name": "Online Ebooks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ad8e6dfa-fe86-4ad1-a2b0-06636f97b964", + "name": "general", + "startAt": "2017-09-24T19:37:50.168Z", + "endAt": "2019-09-24T19:37:50.169Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ead5f3bc-9ca3-41ae-a071-7c4d04ba5544", + "creativeSets": [ + { + "creativeSetId": "3cc14610-bb36-4868-a9db-6a0b309a5a69", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1e799ba0-857b-44ca-9a7d-a0d2fa9cb58d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Fly - Official Site - Bamboo Performance Clothing", + "title": "Freeflyapparel", + "targetUrl": "www.freeflyapparel.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "tAc14oAedDq", + "name": "Fishing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ada21895-f91d-45e6-a4d6-bb9a909cdd57", + "name": "general", + "startAt": "2017-09-24T19:37:50.752Z", + "endAt": "2019-09-24T19:37:50.752Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f22c6305-9ebe-4743-a0f3-ff0950d85ef2", + "creativeSets": [ + { + "creativeSetId": "75f80e7c-f825-4f44-b2cf-2916d3275875", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c99889dc-6803-4fea-aa92-a3afcc15ae2f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hire a Graphic Designer Today - Freelancer® Official Website.", + "title": "Freelancer", + "targetUrl": "www.freelancer.com/Graphic-Design" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "EjsX_m6RTAg", + "name": "Graphic Designers" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9936ef20-2fc9-4859-bded-5795730a8a26", + "name": "general", + "startAt": "2017-09-24T19:37:51.469Z", + "endAt": "2019-09-24T19:37:51.469Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "50c80912-239e-4758-99b2-b8db2c9ca77d", + "creativeSets": [ + { + "creativeSetId": "1eb96e1e-df3f-41b7-aee5-faca62b7cd59", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bb85f50c-bb99-49d2-9bca-67941b6e02a7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Picks 70%+ - Against The Spread Picks", + "title": "FreePicksVegas", + "targetUrl": "www.FreePicksVegas.com/Free_Picks/Sports Betting" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "F7q5REWSRoB", + "name": "Sports Betting" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b48355a1-75cc-4e5f-8563-3bb5bddb5303", + "name": "general", + "startAt": "2017-09-24T19:37:52.029Z", + "endAt": "2019-09-24T19:37:52.029Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "18c79942-0732-4c17-82fb-d976d146e244", + "creativeSets": [ + { + "creativeSetId": "fa849a46-fba7-44fd-8053-2115cb784d28", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "065206cf-92b8-4cb4-8902-def861cbd1c0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "FreeTaxUSA® Official Site - $0 Federal, $12.95 State", + "title": "Freetaxusa", + "targetUrl": "www.freetaxusa.com/IRS_E-File" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "25hWYRpip_l", + "name": "Turbo Tax" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0a79f24a-6735-49fe-bf7d-58f0cbe59f0c", + "name": "general", + "startAt": "2017-09-24T19:37:52.592Z", + "endAt": "2019-09-24T19:37:52.592Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6c168c79-ca72-4835-9f03-0f859844826c", + "creativeSets": [ + { + "creativeSetId": "80492402-5444-4f17-9c14-0a089ecdd81a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "286d0069-72db-4c02-9244-33a95f67f282", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Appliances - Frigidaire® Official Site | frigidaire.com", + "title": "Frigidaire", + "targetUrl": "https://www.frigidaire.com/home/?utm_medium=cpc&utm_medium=cpc&utm_source=bing&utm_source=bing&utm_campaign=eluxbrand2018&utm_campaign=Kitchen+General&utm_term=Appliances+-+Home&utm_term=home+appliances&utm_content=expandedtext-Appliances-Home-unbranded-other-ID:1000158&utm_content=Appliances+-+Home" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "_mDjR8qbjLdb", + "name": "appliances" + } + ] + }, + { + "creativeSetId": "12277de7-a321-49d3-84e0-6f2fd796252c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8b50e138-a553-499d-9c7c-218f758e788a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Appliances - Frigidaire® Official Site | frigidaire.com", + "title": "Frigidaire", + "targetUrl": "www.frigidaire.com/HomeAppliances" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "mkmN9m3WHmgP", + "name": "Home Appliances" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "93acd9e4-bf5f-406a-a761-28882e54ae29", + "name": "general", + "startAt": "2017-09-24T19:37:53.749Z", + "endAt": "2019-09-24T19:37:53.750Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "095f0876-ce89-4345-953c-5d373c279d83", + "creativeSets": [ + { + "creativeSetId": "d93c5c0a-e262-4690-b87d-ad3e5e5cf177", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d55fd387-bc66-490a-bf0b-eedecc98a8de", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bank Account – Visit Us Today - Quality Checking Account Svcs", + "title": "Frontroyalfcu", + "targetUrl": "www.frontroyalfcu.org" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "7MiD5IH1W6t", + "name": "Bank Accounts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ea9a211a-4198-4ea4-bdd1-35c531a68daf", + "name": "general", + "startAt": "2017-09-24T19:37:54.380Z", + "endAt": "2019-09-24T19:37:54.380Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a78fbac8-c33d-46e1-bbc0-36900b2870dd", + "creativeSets": [ + { + "creativeSetId": "edd65c82-83bc-4caa-83f5-6ccbff60a7f3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "98bd7b3e-47c0-42a6-b76d-b3371b99d6c8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fine+Rare Wines London - Your Fine Wine Marketplace", + "title": "Frw.co.uk", + "targetUrl": "www.frw.co.uk" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "REQQSgV4UzG", + "name": "Wine" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "eabfbf29-cf55-4452-b9b2-395ed885c406", + "name": "general", + "startAt": "2017-09-24T19:37:54.949Z", + "endAt": "2019-09-24T19:37:54.949Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a401651a-ca0e-4a4c-9431-704fece33c30", + "creativeSets": [ + { + "creativeSetId": "288ed26a-db13-4810-af3f-28cce5a9b39e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bb6dfd63-a9c7-4ca6-bcc4-3b7def556e2b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Logistics Manager | fuelman.com", + "title": "Fuelman.com", + "targetUrl": "https://www.fuelman.com/apply-for-card?keyword=logistics%20manager&utm_source=gemini&utm_medium=cpc&utm_campaign=Main+Campaign&utm_term=logistics%20manager&campaign=Main+Campaign&source=other" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "HjhwWRSwRCmE", + "name": "logistics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "183b09fe-9e16-4a85-abc5-72a0de7d9af3", + "name": "general", + "startAt": "2017-09-24T19:37:55.504Z", + "endAt": "2019-09-24T19:37:55.505Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "693e669d-04da-4e58-9b7e-d9788a172c07", + "creativeSets": [ + { + "creativeSetId": "31497975-d100-4c44-992b-2043bdeb0aa7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8f825c06-1118-4110-87f4-d6ed6caa3d08", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Tobacco Free Chew - Full Flavor. Full Satisfaction", + "title": "Fullyloadedchew", + "targetUrl": "www.fullyloadedchew.com/TobaccoFree/Chew" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "TAoUE1tinMK", + "name": "Quit Smoking" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "12a16be5-cd73-4425-86ce-b6a05fa65626", + "name": "general", + "startAt": "2017-09-24T19:37:56.066Z", + "endAt": "2019-09-24T19:37:56.066Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "07310074-a56c-4abc-85ce-f334cf5ffed4", + "creativeSets": [ + { + "creativeSetId": "d4cf8be1-0c4b-4d70-99fe-2e83b0e83b29", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6606e227-698f-476a-8e60-9edafb7bd5b2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "FYE - Entertainment, Music & More", + "title": "Fye", + "targetUrl": "www.fye.com/Home" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "yk5gcAl32Yu", + "name": "Music Streaming" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e6208c0c-cae3-48a3-b5d7-1b5ae6b468f2", + "name": "general", + "startAt": "2017-09-24T19:37:56.778Z", + "endAt": "2019-09-24T19:37:56.778Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1cbf2c8d-3330-443d-a125-03fe8cc33607", + "creativeSets": [ + { + "creativeSetId": "3e4f4a05-51a6-407f-a01f-2d15b79c78b7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3d193ea2-995e-40e9-bae2-4d7dc0b20bff", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Soak up the Sun & the Savings! - Get a Free Quote with GEICO", + "title": "Geico", + "targetUrl": "www.geico.com" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "oYzWfQaOXCj", + "name": "Car Insurance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5abcf2b6-70b3-4ad2-b8e7-8600e871b466", + "name": "general", + "startAt": "2017-09-24T19:37:57.343Z", + "endAt": "2019-09-24T19:37:57.344Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1e40dada-ce49-45af-832e-2ee024ffea5e", + "creativeSets": [ + { + "creativeSetId": "ff027b3e-2ad1-4e4d-9c61-5c38578836da", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3c8b0b8d-3099-4af0-bf77-06e6b0ff22ce", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Genealogy Search", + "title": "Genealogy", + "targetUrl": "Genealogy.com/Genealogy" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "pPUDW42mDiO", + "name": "Genealogy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d1e73d36-e6df-43a9-b1d2-a5a1319ba9dd", + "name": "general", + "startAt": "2017-09-24T19:37:58.008Z", + "endAt": "2019-09-24T19:37:58.008Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "834546b7-1658-4223-8707-1bc2e246ee1a", + "creativeSets": [ + { + "creativeSetId": "69a1f784-e5bf-4d46-818b-8646af753cef", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "353c4ace-5e0c-453a-9129-ad82e427ac67", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Tours of Peru - GeoEx® - Luxury Guided Tours | geoex.com", + "title": "Geoex", + "targetUrl": "www.geoex.com/Official_Site/Peru" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "xrH2KKuKBDm", + "name": "Cruise Vacations" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1a62ff10-cf1e-4250-9563-12639393a00b", + "name": "general", + "startAt": "2017-09-24T19:37:58.587Z", + "endAt": "2019-09-24T19:37:58.587Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "18f9be86-50a6-4c18-97ff-ac7c9a7f2207", + "creativeSets": [ + { + "creativeSetId": "3fe7f719-03f0-475f-aba1-261543435471", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3879207e-5531-465d-abdc-d0044c4568e7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Latest Sports News & Updates - Get Insider Information Today", + "title": "Get.allsportsinsiders", + "targetUrl": "get.allsportsinsiders.com/News" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "F7q5REWSRoB", + "name": "Sports Betting" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8bb394eb-1662-4db0-9bad-c2540ad4c162", + "name": "general", + "startAt": "2017-09-24T19:37:59.186Z", + "endAt": "2019-09-24T19:37:59.186Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5096c13a-493b-4762-a5a9-40fc6780e9b1", + "creativeSets": [ + { + "creativeSetId": "588c964d-8103-4649-a9c3-068c3c0df8a8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ddf20c57-e4a9-4902-a95f-5529d5d58876", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Meet A Financial Advisor - Plan For Today & Every Day.", + "title": "Get.northwesternmutual", + "targetUrl": "get.northwesternmutual.com/Financial-Plan" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "z7floCfZA_P", + "name": "Financial Advisors" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "03a79a58-4bb9-4dd8-94ef-bdf9741f40c0", + "name": "general", + "startAt": "2017-09-24T19:37:59.842Z", + "endAt": "2019-09-24T19:37:59.842Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "92f32f85-8874-404b-a889-8309b11d6bac", + "creativeSets": [ + { + "creativeSetId": "9260b4c9-7e30-48c9-b49d-7448c3db59d5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "17fa8724-9f09-4731-9b87-1a18a2bf62e8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Inventory Software | getapp.com", + "title": "Getapp", + "targetUrl": "getapp.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "2QJW6dTCw6z", + "name": "Inventory Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "219a57a0-be1d-48af-b0f3-ccee9361428d", + "name": "general", + "startAt": "2017-09-24T19:38:00.402Z", + "endAt": "2019-09-24T19:38:00.402Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3311666f-8be0-49db-bb9e-de121a7ebcd5", + "creativeSets": [ + { + "creativeSetId": "4aad2707-e9b4-4237-9c9f-c248e1337fd9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "64fc7970-28e5-40c0-8b61-616fb8db67a9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Inventory Software - Compare Top Business Software | getapp.com", + "title": "GetApp.com", + "targetUrl": "https://www.getapp.com/p/sem/inventory-management-software?camp=bing&msclkid=b0858e7f6781130d2899d407a0f7a0cd&utm_source=bing&utm_medium=cpc&utm_campaign=BS_inventory-management-software_x_US_Desktop&utm_term=free%20inventory%20software&utm_content=inventory%20management%20software_free_Broad_x_%20inventory-management-software" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "RlfNkgwBC28y", + "name": "freeware" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ed46a9f6-572c-4bfc-9b74-d78a1ef1bacf", + "name": "general", + "startAt": "2017-09-24T19:38:00.968Z", + "endAt": "2019-09-24T19:38:00.968Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "180be4f4-b106-4a12-ab34-7037899fcad3", + "creativeSets": [ + { + "creativeSetId": "517d0c8d-3cd2-4ae4-9cd3-ac027a4c1169", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "43bdc33f-8a6d-44f1-9cbf-001bfbcfd4dc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Get Published - Liberty Hill Publishing", + "title": "Getm", + "targetUrl": "getmyguide.libertyhillpublishing.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "KjrAF8XxEDc", + "name": "Book Publishing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0d875dfd-36f5-4511-89f3-ceaede07140f", + "name": "general", + "startAt": "2017-09-24T19:38:01.545Z", + "endAt": "2019-09-24T19:38:01.545Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f74d1050-1174-4d93-8705-2d19d61d3cfc", + "creativeSets": [ + { + "creativeSetId": "78a0317e-0228-4e90-adb4-f1f2b569648b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "acd91bee-8059-4084-a1fc-ccf620fe69b2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "How To Gain 600% More Muscle - Plus Gain 9X More Biceps Mass!", + "title": "GetMonsterized", + "targetUrl": "GetMonsterized.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "vVZgFB3iWow", + "name": "Bodybuilding Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2c352e59-b84f-4372-97fa-7311c535c67f", + "name": "general", + "startAt": "2017-09-24T19:38:02.331Z", + "endAt": "2019-09-24T19:38:02.332Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8c023e98-1eb8-4af3-9285-dd79eafcd6ce", + "creativeSets": [ + { + "creativeSetId": "bdd30f35-2e77-4b3d-9281-d4e100b2f7a7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "56a4a93b-fd07-4834-865d-b6b8ad970328", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top Remedy to Calm Stress - My Endless Nervousness is Gone", + "title": "Gettranquilene", + "targetUrl": "www.gettranquilene.com/All-Natural/Stress-Free" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "3p24XjIze4TV", + "name": "Stress Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8d8fe548-39c4-4fc9-a682-fd7e8702cac7", + "name": "general", + "startAt": "2017-09-24T19:38:02.887Z", + "endAt": "2019-09-24T19:38:02.887Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8400b5f2-ec87-4bf1-a7f8-03f188ff8675", + "creativeSets": [ + { + "creativeSetId": "9bb17bd8-0464-471b-a8aa-4f026daf969c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7c4b2eca-6626-49f2-bfe2-8d0b3f192754", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Soft Darts - Find Soft Darts", + "title": "GigaPromo", + "targetUrl": "GigaPromo.com/Soft Darts" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "gxL4h38VZWH", + "name": "Darts Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "afe53c6a-6485-45fe-abaf-7133954cd991", + "name": "general", + "startAt": "2017-09-24T19:38:03.538Z", + "endAt": "2019-09-24T19:38:03.538Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "383a65f9-75ba-408f-a17c-031ca2d25957", + "creativeSets": [ + { + "creativeSetId": "6e1b2b6d-8220-4418-a6d8-dd89263e90e2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b8872fb7-cf35-4456-9a9e-91c68f604b17", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Giovanni Rana® Italian Pasta - Made With Premium Ingredients", + "title": "Giovanniranausa", + "targetUrl": "www.giovanniranausa.com/Pasta" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "AqMmPbWQnUE", + "name": "Fresh Pasta" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "df0583fd-cfea-4712-bf51-c2b609f31a14", + "name": "recipes", + "startAt": "2017-09-24T19:38:04.128Z", + "endAt": "2019-09-24T19:38:04.128Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8e512077-7f3e-4baa-a6d6-85b16b303e98", + "creativeSets": [ + { + "creativeSetId": "c29bf7e8-4b04-406b-9910-14b6ce4ab375", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "29f3fb32-a380-4f3b-a102-27c7f8a8a27e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Glad® Recipes - In the Kitchen w/Ayesha Curry | glad.com", + "title": "Glad", + "targetUrl": "www.glad.com/Ayesha/Curry" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "9Roh9lJ0tSd", + "name": "Cooking Recipes" + } + ] + }, + { + "creativeSetId": "ec34f4d1-82f1-4afc-b568-b96b6ab64a97", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4a4ae1cb-f115-45b1-9407-30d784cb9df5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Glad® Meal Prep & Recipe Ideas - Inspiration For Any Occasion", + "title": "Glad", + "targetUrl": "www.glad.com/Recipes" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "EpjpWnjpgxV", + "name": "Drink Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0567007d-6da5-4ede-9b20-ab88f30d3ab7", + "name": "kids", + "startAt": "2017-09-24T19:38:04.692Z", + "endAt": "2019-09-24T19:38:04.692Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8e512077-7f3e-4baa-a6d6-85b16b303e98", + "creativeSets": [ + { + "creativeSetId": "2353234f-5543-49a0-b628-bb6b40267ae0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a9930cfc-ad67-48ad-a1c5-a84bfc307a60", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Recycling Crafts For Kids - Fun Upcycling Ideas From Glad®", + "title": "Glad", + "targetUrl": "www.glad.com/UpcyclingCrafts" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "ueFaBreO21-9", + "name": "Arts and Crafts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1f4b0684-bd48-46d1-a9b3-15cd3a5c43bb", + "name": "general", + "startAt": "2017-09-24T19:38:05.302Z", + "endAt": "2019-09-24T19:38:05.302Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8a31ee0c-4be0-46e2-89b3-f2ad3199bf47", + "creativeSets": [ + { + "creativeSetId": "43b098e8-396f-46e9-9183-ae0a3a3e4017", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "298b63dc-fffa-4114-8a26-455b02e8bbc2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Global Golf Official Website - The Golf Equipment Superstore", + "title": "Globalgolf", + "targetUrl": "www.globalgolf.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "hDQ_wObOKVe", + "name": "Golf Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "23826ea5-cb03-4498-ac31-0c57dc29022a", + "name": "general", + "startAt": "2017-09-24T19:38:05.996Z", + "endAt": "2019-09-24T19:38:05.997Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0b5f8e84-fc86-4929-bc23-4b0ec2ac4ab8", + "creativeSets": [ + { + "creativeSetId": "2a12dca7-77cc-4b9b-be49-84a2e27c319a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9f773857-8318-4253-824f-45d6b5e139da", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Global Knowledge® - Did You Forget Something?", + "title": "Globalknowledge", + "targetUrl": "www.globalknowledge.com" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "HJWyQTrQEe3", + "name": "Adobe Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a72f1b27-19c9-48e6-b1b0-97d8550ede51", + "name": "general", + "startAt": "2017-09-24T19:38:06.534Z", + "endAt": "2019-09-24T19:38:06.534Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9ad49f5-1e81-44b8-832c-2c6eae94db68", + "creativeSets": [ + { + "creativeSetId": "7314270c-0fc9-451d-84f5-ee28d92b55ed", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "52c46691-7533-43ca-9223-5c2c395bb204", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Investing in AI & Robotics? - Learn more about BOTZ", + "title": "Globalxfunds", + "targetUrl": "www.globalxfunds.com/BOTZ" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "_PEMAp6RE_k9", + "name": "Learn Stocks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4332c29a-4029-4acf-be93-3c4de05174cd", + "name": "general", + "startAt": "2017-09-24T19:38:07.088Z", + "endAt": "2019-09-24T19:38:07.088Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "108ab446-8026-4a7c-a0a2-772eaaed82b4", + "creativeSets": [ + { + "creativeSetId": "e544c434-d81f-49ee-a089-353065a347ca", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "25a26960-66fe-4fac-8101-83ac478dc56b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "GMC® Sierra Pickup Truck - View Photos & Pricing - gmc.com", + "title": "Gmc", + "targetUrl": "www.gmc.com/Sierra/Truck" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "TrWA-UI4zhY", + "name": "Pickup Trucks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "488a6bf6-258b-4d9c-ba0d-adfa24a51282", + "name": "general", + "startAt": "2017-09-24T19:38:07.671Z", + "endAt": "2019-09-24T19:38:07.672Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4419061f-0400-415e-a81f-2d354c12a268", + "creativeSets": [ + { + "creativeSetId": "7a028463-6d54-4d28-abfa-289aa9a0d463", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bfad3673-6fef-46ff-bc94-26a419f2c2a9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Corporate Legal Hold Checklist - Steps to Create a Legal Hold", + "title": "Go.exterro", + "targetUrl": "go.exterro.com/legal-hold/checklist" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "3kVpCcrPlDrA", + "name": "Legal Help" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2f7a8c99-4597-468e-81ed-92b222ed45f0", + "name": "general", + "startAt": "2017-09-24T19:38:08.567Z", + "endAt": "2019-09-24T19:38:08.567Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "15e98ef6-75c6-4d81-b4f3-7c675d61840b", + "creativeSets": [ + { + "creativeSetId": "83c27d7f-a4ae-4d30-ba1a-73db5e256ed5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8795083e-888e-4c2a-8562-669c76c9bce1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "NUVI Social Media Management - Manage Your Social Analytics", + "title": "Go.nuvi", + "targetUrl": "go.nuvi.com/Social_Media/Analytics" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "UBXGkQ3Bdgz4", + "name": "Social Media Analytics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0c6fd8d2-c349-4d0a-8c62-66665c974cd0", + "name": "general", + "startAt": "2017-09-24T19:38:09.123Z", + "endAt": "2019-09-24T19:38:09.124Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a30036f9-a797-45d1-ae3f-b3cc5324b2a1", + "creativeSets": [ + { + "creativeSetId": "00d52daf-a167-4419-8e43-f12dd7ccd183", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1b9f671e-2f20-41f0-ae10-0325128b6478", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "112 Evaluation Criteria - Across 4 Major Categories", + "title": "Go.profisee", + "targetUrl": "go.profisee.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "P9Lfpxf-FV6", + "name": "Management Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "eadfc142-7a0b-4278-9c0c-ab31fcaff370", + "name": "general", + "startAt": "2017-09-24T19:38:09.795Z", + "endAt": "2019-09-24T19:38:09.796Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "61dfe68a-667c-4f41-8799-98702574c847", + "creativeSets": [ + { + "creativeSetId": "c4b6b24f-2e7c-4916-ab6b-49608e4ff194", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "63bc6136-c383-4b23-a1f2-767f3959f5f2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Purdue University Global - Earn a Degree On Your Schedule", + "title": "Go.purdueglobal", + "targetUrl": "go.purdueglobal.edu/Psychology" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mTbLUekRxb3", + "name": "Psychology Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ff468ac9-efb8-4f3e-96ff-b4f6b1f09127", + "name": "general", + "startAt": "2017-09-24T19:38:10.442Z", + "endAt": "2019-09-24T19:38:10.442Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "49b06a62-51d5-4e9c-b064-3219b1fa8ee9", + "creativeSets": [ + { + "creativeSetId": "00667f46-b920-4096-b429-47a21beb04d1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c8e8e4b0-5e66-4f09-bbeb-d364272b6177", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Make the ITSM Switch - Get the e-Book Now | go.servicenow.com", + "title": "Go.servicenow", + "targetUrl": "go.servicenow.com/ITSM/eBook" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "P9Lfpxf-FV6", + "name": "Management Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "86b5ed4e-4c00-47ac-8009-c6e45677a45a", + "name": "general", + "startAt": "2017-09-24T19:38:11.108Z", + "endAt": "2019-09-24T19:38:11.109Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2529236a-3ef0-4d1e-b2ff-c8c37471e417", + "creativeSets": [ + { + "creativeSetId": "e3cf1363-604b-4d23-8cdf-7a7530c74268", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2a94b7ed-f712-4bde-94b2-3b8c0f206c25", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Valpak® Direct Mail Campaigns - Trusted By 41K Businesses", + "title": "Go.valpak", + "targetUrl": "go.valpak.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "rN7XjveZc4b", + "name": "Email Marketing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9855abf6-5f2d-4964-b434-d50dd27965f8", + "name": "general", + "startAt": "2017-09-24T19:38:11.860Z", + "endAt": "2019-09-24T19:38:11.860Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "88f28ebe-ddd4-4fcc-8872-0fd50a0f4f80", + "creativeSets": [ + { + "creativeSetId": "45017682-e842-4a66-ab9c-6471799ab857", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "74b17d7c-d9ad-4b60-b452-109d09f524f5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "GoalieMonkey® Official Site - Memorial Day Sale", + "title": "Goaliemonkey", + "targetUrl": "www.goaliemonkey.com/Goalie-Gear/Clearance" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wnYgEl7cckf", + "name": "Soccer Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b4c9a969-51e6-4bd2-bd6d-a5f70eabab3c", + "name": "general", + "startAt": "2017-09-24T19:38:12.474Z", + "endAt": "2019-09-24T19:38:12.475Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "12ef51bf-0f38-4d5b-9e0d-617ac760fea9", + "creativeSets": [ + { + "creativeSetId": "ed9bb869-3c26-42e9-bb6f-f18cf1585d0b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0cfdbaff-83da-4ec0-9105-62c4226e5cb0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Join the United States Army® - Visit goarmy.com | goarmy.com", + "title": "Goarmy", + "targetUrl": "www.goarmy.com/Enlist" + } + } + ], + "segments": [ + { + "code": "xdewbpM2V5-", + "name": "Military" + }, + { + "code": "YwcGJSE5gioe", + "name": "Join The Military" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5ebff61b-76c9-4319-a367-d1be5aaa945c", + "name": "general", + "startAt": "2017-09-24T19:38:13.025Z", + "endAt": "2019-09-24T19:38:13.026Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "296a5f10-676c-4bfa-aaa2-a7d0ff325ede", + "creativeSets": [ + { + "creativeSetId": "1e6fc283-9878-4507-b350-b474ba65f5c7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dd64a5bf-288c-4996-b42f-9dc3383fb937", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Read Comic Strips at GoComics.com", + "title": "GoComics.com", + "targetUrl": "http://www.gocomics.com/" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "Z9_rTBx8G867", + "name": "comics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "55f9c1bf-c6a3-4c42-9fdf-871695ae5568", + "name": "general", + "startAt": "2017-09-24T19:38:13.729Z", + "endAt": "2019-09-24T19:38:13.729Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cb26547c-9788-419e-9845-96f82f201ff8", + "creativeSets": [ + { + "creativeSetId": "5bc17d5b-6a47-42cd-a8c5-bf1a57966acb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4d8f9c9d-c977-4db6-8823-c1d17a3b4c34", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Custom Golf Balls - Great deals", + "title": "Golfbox", + "targetUrl": "golfbox.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "hDQ_wObOKVe", + "name": "Golf Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bc611487-30cd-4d7f-b247-095d3b001fb4", + "name": "general", + "startAt": "2017-09-24T19:38:14.307Z", + "endAt": "2019-09-24T19:38:14.307Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ed40b640-7da5-4a06-a0a1-ebb757c9a7c8", + "creativeSets": [ + { + "creativeSetId": "5b7be412-9ea3-4982-9154-83062c74d441", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "62eb30a1-ee62-413f-aabc-af7c7d12c131", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Tacki-Mac Golf Grips - Variety of Comfortable Grips", + "title": "Golfworks", + "targetUrl": "www.golfworks.com/TackiMac" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "5Puf4sqhfzx", + "name": "Mac Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c709cc76-87d6-42e1-8ef9-e378db967514", + "name": "general", + "startAt": "2017-09-24T19:38:14.839Z", + "endAt": "2019-09-24T19:38:14.840Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b3cc46a2-6200-4778-9b53-8f18223d9173", + "creativeSets": [ + { + "creativeSetId": "ca8b1f85-be71-46ff-a6a0-d6081352fcaf", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d252c198-d6ee-4db6-b187-f5192eda0d65", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Play PC games for free - Build, conquer & trade online.", + "title": "GoodGameStudios", + "targetUrl": "lp.empire.goodgamestudios.com/Empire-Game/Free-to-Play" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "o7Q1hjps7Vm", + "name": "Online PC Games" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "23872988-a920-4f5e-9be0-c017469856c7", + "name": "general", + "startAt": "2017-09-24T19:38:15.406Z", + "endAt": "2019-09-24T19:38:15.406Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ea0aa745-4335-4334-bf12-0bfa610a6610", + "creativeSets": [ + { + "creativeSetId": "fe96c3af-abb9-490b-9c72-b8b24e7c26b6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e5b5c65b-1abd-49d0-906b-71e2fa20bf1f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Popular Terrorism Books - Goodreads", + "title": "Goodreads", + "targetUrl": "https://www.goodreads.com/shelf/show/terrorism" + } + } + ], + "segments": [ + { + "code": "xdewbpM2V5-", + "name": "Military" + }, + { + "code": "B-IDbtnUQS-m", + "name": "terrorism" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a9f01605-bba5-41c8-ac0f-2ac118f21903", + "name": "fashion", + "startAt": "2017-09-24T19:38:16.159Z", + "endAt": "2019-09-24T19:38:16.160Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "76178196-74d6-49fd-905a-1f6b9b4dba38", + "creativeSets": [ + { + "creativeSetId": "6812fa09-f4f6-4eed-9279-d0d08d7c9b63", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9abec46e-04f4-44a9-90a8-6c895250c3bc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Google Maps | Women's Clothing Store‎", + "title": "Google", + "targetUrl": "www.google.com/maps/WomensClothing ‎ (929) 337-6083" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "cKE--V39Tbj", + "name": "clothing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b9a803f2-d5b1-43d1-be31-718cceb1f38e", + "name": "school", + "startAt": "2017-09-24T19:38:16.747Z", + "endAt": "2019-09-24T19:38:16.748Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7ac89368-974c-44cd-989c-6e229ba742d6", + "creativeSets": [ + { + "creativeSetId": "92fdda38-f4a6-4404-9dd8-71cbd52f168c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "765c7dee-4da7-4ccc-8a18-961593ffecd8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Architectural Degrees - Architectural Degrees", + "title": "Gopher", + "targetUrl": "www.gopher.com/Architectural Degrees" + } + } + ], + "segments": [ + { + "code": "avw0QD-PbLk", + "name": "Architecture" + }, + { + "code": "dOQmj5NS4GvY", + "name": "Architecture Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bbdd2d6b-26e5-4333-8878-d73fbe7a2f9b", + "name": "work", + "startAt": "2017-09-24T19:38:17.117Z", + "endAt": "2019-09-24T19:38:17.117Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7ac89368-974c-44cd-989c-6e229ba742d6", + "creativeSets": [ + { + "creativeSetId": "4c864993-275d-4717-993b-b8e6a67f019d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9fa83c71-2653-4c5f-8b51-07d8211f06f0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find Work - Find Work | gopher.com | gopher.com", + "title": "Gopher", + "targetUrl": "www.gopher.com/Find Work" + } + } + ], + "segments": [ + { + "code": "6QLcn3Fnca-", + "name": "Careers" + }, + { + "code": "AkN_-chsgWP", + "name": "Find Work" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7b5e8f04-4690-41d6-af02-cca15ff8769d", + "name": "recipes", + "startAt": "2017-09-24T19:38:17.549Z", + "endAt": "2019-09-24T19:38:17.549Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7ac89368-974c-44cd-989c-6e229ba742d6", + "creativeSets": [ + { + "creativeSetId": "9d571f11-3348-4c52-b9ef-349676788ea9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "23d411e4-2c19-4571-9ff3-089d6047df0d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Healthy Cooking Recipes - Search Multiple Engines", + "title": "Gopher", + "targetUrl": "www.gopher.com/Healthy Cooking Recipes/results" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "9Roh9lJ0tSd", + "name": "Cooking Recipes" + } + ] + }, + { + "creativeSetId": "d09cf16a-3b94-41d0-bfa8-458e2f260352", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "449923ab-40a3-44ea-948e-925f51484164", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Mixed Drinks.com - Mixed Drinks.com - Find Mixed Drinks.com", + "title": "Gopher", + "targetUrl": "www.gopher.com/Mixed Drinks.com/results" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "EpjpWnjpgxV", + "name": "Drink Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bb8b11c7-2b5e-46f6-9f07-5c0432c24d3f", + "name": "pets", + "startAt": "2017-09-24T19:38:18.110Z", + "endAt": "2019-09-24T19:38:18.110Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7ac89368-974c-44cd-989c-6e229ba742d6", + "creativeSets": [ + { + "creativeSetId": "ae8214c7-9052-4577-89fc-d72c3a12d089", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ecd899ae-16fd-49c0-98e3-a1c824c7c975", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cat Supplies - Cat Supplies | gopher.com", + "title": "Gopher", + "targetUrl": "www.gopher.com/Cat Supplies" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "6BRJuRThFS_", + "name": "Cat Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "38a245ba-3b45-4469-8128-7afd60403812", + "name": "religion", + "startAt": "2017-09-24T19:38:18.425Z", + "endAt": "2019-09-24T19:38:18.425Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7ac89368-974c-44cd-989c-6e229ba742d6", + "creativeSets": [ + { + "creativeSetId": "72ab3cd4-7dd9-49b5-aef5-50b15eecbd1d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ad7176b8-8366-4d8c-9459-672bd8bff904", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Books About Buddhism - Books About Buddhism", + "title": "Gopher", + "targetUrl": "www.gopher.com/Books About Buddhism" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "Cb93mi5knGhn", + "name": "Buddhism Books" + } + ] + }, + { + "creativeSetId": "552367c3-ea6f-45ba-8875-43cdb440636d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "aa8ac0fc-771f-498e-8e09-eb4a306d7b15", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Jewish Books - Free Jewish Books", + "title": "Gopher", + "targetUrl": "www.gopher.com/Free Jewish Books/results" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "mTbd3Gmk0cr", + "name": "Judaism Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "89fabbe0-0328-453e-a9c4-8b6fcff5a55c", + "name": "sports", + "startAt": "2017-09-24T19:38:19.036Z", + "endAt": "2019-09-24T19:38:19.036Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7ac89368-974c-44cd-989c-6e229ba742d6", + "creativeSets": [ + { + "creativeSetId": "6ecd740c-6615-4588-a899-4f7cd4eab398", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a56bfb3c-41ae-41c3-b127-2216db4cff5c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Diving Accessories - Diving Accessories | gopher.com", + "title": "Gopher", + "targetUrl": "www.gopher.com/Diving Accessories/results" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "fH7PFGfR2R8", + "name": "Diving Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6fa4f071-f4e1-4bc7-97e0-da6c76a92ab9", + "name": "hobbies", + "startAt": "2017-09-24T19:38:19.367Z", + "endAt": "2019-09-24T19:38:19.367Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7ac89368-974c-44cd-989c-6e229ba742d6", + "creativeSets": [ + { + "creativeSetId": "79bfe7ed-43cf-4064-a532-3ecbe1a301ba", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0eddc47f-1986-4b18-b27c-3cfa80d81f3c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Train Kits - Search Train Kits", + "title": "Gopher", + "targetUrl": "www.gopher.com/Train Kits/results" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6dab1nE-Ik7", + "name": "Train Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4fd74d47-ca22-46f3-bc8e-31b50abd9f15", + "name": "general", + "startAt": "2017-09-24T19:38:20.164Z", + "endAt": "2019-09-24T19:38:20.165Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ad7d1880-e100-4700-bc4a-bbf807436ca2", + "creativeSets": [ + { + "creativeSetId": "5b758486-d8d2-43ea-945a-a36715931fe4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bc6287df-9555-41b7-b30c-147fd3d635c5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Obamacare Health Insurance - Enroll In A Plan Today", + "title": "Governmenthealthinsurance", + "targetUrl": "www.governmenthealthinsurance.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mltw3XEd08nw", + "name": "Health & Fitness Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "85544e75-851e-4ae1-a30b-0076be034aae", + "name": "general", + "startAt": "2017-09-24T19:38:20.748Z", + "endAt": "2019-09-24T19:38:20.748Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5808a0bf-b81a-48b9-827e-460d217fad68", + "creativeSets": [ + { + "creativeSetId": "31c642c3-66f7-4333-b055-21d9f48fe6d7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c0712513-0328-4b93-91f2-2f10f18e0ed7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Work Finder. - Work Finder | govtsearches.com", + "title": "Govtsearches", + "targetUrl": "govtsearches.com/Work Finder" + } + } + ], + "segments": [ + { + "code": "6QLcn3Fnca-", + "name": "Careers" + }, + { + "code": "AkN_-chsgWP", + "name": "Find Work" + } + ] + }, + { + "creativeSetId": "48a035bd-3f85-48ba-a9ad-cc5dadfc0600", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1ebc9da9-f33a-41e9-8ba6-7fec81a89ef4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hiv Privacy Laws. - Hiv Privacy Laws", + "title": "Govtsearches", + "targetUrl": "govtsearches.com/privacy laws" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "ljRVUx5AHbA", + "name": "Hiv Education" + } + ] + }, + { + "creativeSetId": "f782116f-9c4f-4b14-b533-670ddd5d78fa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "01f5b8cb-8f72-456f-9cd6-7d96226d3eb8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Application For Green Card. - Search for green card Now.", + "title": "Govtsearches", + "targetUrl": "govtsearches.com/green card" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "A7Bk9uyA2zgj", + "name": "Green Card Application" + } + ] + }, + { + "creativeSetId": "1701f907-43a6-4bc4-8dcb-09ffb817c3f7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e2d3eef7-e689-4e97-be99-2aac61c7fe52", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Military Join. - Military Join | govtsearches.com", + "title": "Govtsearches", + "targetUrl": "govtsearches.com/Military Join" + } + } + ], + "segments": [ + { + "code": "xdewbpM2V5-", + "name": "Military" + }, + { + "code": "YwcGJSE5gioe", + "name": "Join The Military" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1a85e0f5-6927-4b95-b0cf-6656cdf8d2fb", + "name": "general", + "startAt": "2017-09-24T19:38:22.288Z", + "endAt": "2019-09-24T19:38:22.289Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "523ca24a-9276-4d8c-9f16-d9c614b1a446", + "creativeSets": [ + { + "creativeSetId": "631c3beb-5ccc-4a7e-87c7-ce8e2ce1f91e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c20d31c4-24fb-4d1c-9838-1cfaf87ecf36", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Grand Marnier® - Fine Cognac & Orange Liqueur", + "title": "Grand-marnier", + "targetUrl": "grand-marnier.com/GrandMarnier" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "unFLrtorUoq", + "name": "Alcohol Delivery" + } + ] + }, + { + "creativeSetId": "1b6a34c2-bc79-460d-b325-fa4879dcf759", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cfbafe6d-6cff-4a78-9ebd-f1f531b29541", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Grand Marnier® - Fine Cognac & Orange Liqueur", + "title": "Grand-marnier", + "targetUrl": "grand-marnier.com/GrandMarnier" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "EpjpWnjpgxV", + "name": "Drink Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "039ea038-5d32-47e1-a5c0-b06e2534f740", + "name": "general", + "startAt": "2017-09-24T19:38:23.104Z", + "endAt": "2019-09-24T19:38:23.105Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "364388c2-9d3a-49b6-b1ed-a1735d4013cc", + "creativeSets": [ + { + "creativeSetId": "3d92b976-5ea9-4500-80bd-ffd4b59820c1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b922474b-de36-4238-9fcd-ab6884cb0eb8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pearl – Grayling Jewelry‎", + "title": "Graylingjewelry", + "targetUrl": "www.graylingjewelry.com/ ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1638ab7c-95b4-4468-902d-15c56fa123db", + "name": "general", + "startAt": "2017-09-24T19:38:23.691Z", + "endAt": "2019-09-24T19:38:23.691Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5636e627-0fff-4b92-bcb2-a5b0c4e88b7a", + "creativeSets": [ + { + "creativeSetId": "e72048fb-4430-47ae-8dc8-ec2cf4638833", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "70a3a869-5993-41c4-bf08-1866821dabe2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Incredible Canvas Wall Art - Save On Over 700,000 Prints", + "title": "Greatbigcanvas", + "targetUrl": "www.greatbigcanvas.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "18fq9aiLp0z", + "name": "body art" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d40086dc-a966-4797-a8c2-1bea1230f55f", + "name": "general", + "startAt": "2017-09-24T19:38:24.256Z", + "endAt": "2019-09-24T19:38:24.256Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "dc94ce00-dd53-4cb0-ac64-ce619c50493b", + "creativeSets": [ + { + "creativeSetId": "5b7d4c6c-a72a-42ff-9868-a2dc71003537", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4a74830c-5471-48c0-9df2-cc513f8c0633", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Certified Coin Auctions", + "title": "GreatCollections", + "targetUrl": "GreatCollections.com/Coins" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "K24r-df9CcZ", + "name": "Rare Coins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1ae5db3e-a961-4910-b1e3-0e52de101f7b", + "name": "general", + "startAt": "2017-09-24T19:38:24.825Z", + "endAt": "2019-09-24T19:38:24.826Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4b016a99-da88-4638-89f3-067795ccc709", + "creativeSets": [ + { + "creativeSetId": "19035208-a787-4879-a3ef-47d4fe097bcf", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f32e7970-b722-4fe1-80f1-437a09491c9f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Greenbrook TMS NeuroHealth - Depression Therapy In WDC", + "title": "Greenbrooktms", + "targetUrl": "www.greenbrooktms.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "ZYCLaYR2JuLH", + "name": "Depression Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "edd1079b-9b2e-4f78-84b5-0d3318a1d498", + "name": "hobbies", + "startAt": "2017-09-24T19:38:25.483Z", + "endAt": "2019-09-24T19:38:25.484Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "73bac07d-acf8-4929-a336-e6111bc289dd", + "creativeSets": [ + { + "creativeSetId": "75875722-edad-4e65-8c97-0fb8bb2a03fc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8830668b-c986-42f6-9c96-4e5234e19999", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Now & Then Dance Studios - Up to 57% Off With Groupon", + "title": "Groupon", + "targetUrl": "www.groupon.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "tDcqDSsaTpB", + "name": "Dance Lessons" + } + ] + }, + { + "creativeSetId": "0556d90e-c99c-464c-8e87-a5b561c3d4de", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d057b088-9c7a-4ee0-aa3c-3be17084d7b0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Nor Cal Hobbies - Up to 50% Off With Groupon | groupon.com", + "title": "Groupon", + "targetUrl": "https://www.groupon.com/deals/nor-cal-hobbies-and-raceway?utm_source=bing&utm_medium=cpc&utm_campaign=us_dt_sea_bng_txt_ttt_sr_cbp_ch1_nbr_k*nor%20cal%20hobbies%20deal_m*bb_d*san-jose-RTC-Coupon_g*RTC-Coupon-nor-cal-hobbies-and-raceway-BROAD_c*{creative}_ap*{adposition}_t*kwd-74217092823579:loc-71284&loc_physical_ms=43896&loc_interest_ms=&template=" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "dv1vtouUAEgd", + "name": "hobbies & interests" + } + ] + }, + { + "creativeSetId": "88faf0ff-cc45-4de2-a95d-d3b6b620d3e7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1a0099e6-edaf-4b52-b1be-abf68635f544", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Kids Love Martial Arts - Up to 90% Off With Groupon", + "title": "Groupon", + "targetUrl": "www.groupon.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "M2Rtnq7snDL", + "name": "Martial Arts Training" + } + ] + }, + { + "creativeSetId": "1c286c4e-7f9b-4a14-baab-2b959ca81365", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e13612ea-5fa2-4648-9c29-0862a26612cb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The Yoga Collective - Up to 91% Off With Groupon", + "title": "Groupon", + "targetUrl": "https://www.groupon.com/deals/the-yoga-collective-1-8-san-francisco-1?utm_source=bing&utm_medium=cpc&utm_campaign=us_dt_sea_bng_txt_ttt_sr_cbp_ch1_nbr_k*yo%20ga_m*be_d*san-francisco-RTC-KWService_g*RTC-KWService-the-yoga-collective-1-8-san-francisco-1-EXACT_c*{creative}_ap*{adposition}_t*kwd-73323755174444:loc-71284&loc_physical_ms=43940&loc_interest_ms=&template=" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "Ia8Bq_IQSb2V", + "name": "yoga" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4789ac51-fa5d-4a50-b94a-c0a2171b295d", + "name": "pets", + "startAt": "2017-09-24T19:38:26.668Z", + "endAt": "2019-09-24T19:38:26.668Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "73bac07d-acf8-4929-a336-e6111bc289dd", + "creativeSets": [ + { + "creativeSetId": "d13e13df-1447-4e0a-a6a8-4f2b995bab04", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ba16ba83-a16d-4b56-b805-fcd44b1971d0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pet Grooming - Up to 46% Off With Groupon", + "title": "Groupon", + "targetUrl": "www.groupon.com" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "cJeWKlUNo4Y", + "name": "Dog Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "697dea3f-09f2-4841-8591-b56ee8e7f20b", + "name": "general", + "startAt": "2017-09-24T19:38:27.248Z", + "endAt": "2019-09-24T19:38:27.248Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "83f5d1ed-648e-4cbd-92c8-c1514a9e2530", + "creativeSets": [ + { + "creativeSetId": "0fc9c56a-73d5-4cbb-b1b2-0ae39b065c4b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ad52498b-3a62-491f-ad09-23ee2701d3d8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Financial Practices For Sale - Find Sellers In Your Area", + "title": "Grow.successionlink", + "targetUrl": "grow.successionlink.com" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "z7floCfZA_P", + "name": "Financial Advisors" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fdd2d533-feec-4afd-b5f5-265504a95b19", + "name": "general", + "startAt": "2017-09-24T19:38:27.821Z", + "endAt": "2019-09-24T19:38:27.822Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "438146d3-f2a8-4f63-8791-ccbb34f82024", + "creativeSets": [ + { + "creativeSetId": "a16f17aa-242f-4c78-8837-eaaa71edbe43", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fbf62153-1c57-4ac0-88f6-ad108092bce6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Grubhub® - Local Food Delivery - Quick & Convenient Ordering", + "title": "Grubhub", + "targetUrl": "www.grubhub.com/Order-Online/Food" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "YnihSiXSdRZ", + "name": "Food Delivery" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a4749797-bba6-4cf2-a825-57b6be92daae", + "name": "general", + "startAt": "2017-09-24T19:38:28.394Z", + "endAt": "2019-09-24T19:38:28.396Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e240c02d-dc37-4efa-83dd-cae548a68172", + "creativeSets": [ + { + "creativeSetId": "da1f11c4-168f-4768-bf30-ab012a9c2e2f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "619ba901-9722-440b-a282-16a002ba75eb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Healthcare Professional Info - Influenza Vaccination", + "title": "Gsksource", + "targetUrl": "www.gsksource.com/flu" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "w3QYv0DISr3a", + "name": "Flu Prevention" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f0d492c3-b10c-4176-9948-71fb7847ca0d", + "name": "general", + "startAt": "2017-09-24T19:38:28.952Z", + "endAt": "2019-09-24T19:38:28.952Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ba5f2b0d-78ef-48e6-970d-05330dce4b7d", + "creativeSets": [ + { + "creativeSetId": "61d09a96-25a6-468b-976e-16fe6df6792f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "30cb9d4a-78af-4a13-bde8-2cfdf24e6684", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Cheerleading Pom Poms - Starting at $5. Tons of Colors", + "title": "Gtmsportswear", + "targetUrl": "gtmsportswear.com/Cheerleading/Poms" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "ar7C1cuDv9N", + "name": "Cheerleading Pom Poms" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "413cf6d8-8ab6-46e6-9309-240cdbea304f", + "name": "military", + "startAt": "2017-09-24T19:38:29.519Z", + "endAt": "2019-09-24T19:38:29.519Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "819a743a-0446-4e39-bd9d-d9af1357a606", + "creativeSets": [ + { + "creativeSetId": "ec36f2d9-dac8-4514-908b-e52995166712", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5cf406f2-0004-4bd5-9957-c4550d384231", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Terrorism Studies - Terrorism Studies", + "title": "Guardengine", + "targetUrl": "www.guardengine.com/Terrorism Studies/results" + } + } + ], + "segments": [ + { + "code": "xdewbpM2V5-", + "name": "Military" + }, + { + "code": "Hut3q5NthJL", + "name": "Terrorism Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a6be5d6a-0871-40c4-8f66-a9274fb3108c", + "name": "religion", + "startAt": "2017-09-24T19:38:30.006Z", + "endAt": "2019-09-24T19:38:30.006Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "819a743a-0446-4e39-bd9d-d9af1357a606", + "creativeSets": [ + { + "creativeSetId": "f954efd1-f95f-418d-a142-a8e87c540367", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2f167213-ff09-44ca-9b0e-7c05d0387202", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Books About Buddhism - Books About Buddhism", + "title": "Guardengine", + "targetUrl": "www.guardengine.com/Books About Buddhism/results" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "Cb93mi5knGhn", + "name": "Buddhism Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e5c871d8-ea7a-48a7-9941-5b08b5b64b99", + "name": "school", + "startAt": "2017-09-24T19:38:30.344Z", + "endAt": "2019-09-24T19:38:30.344Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "819a743a-0446-4e39-bd9d-d9af1357a606", + "creativeSets": [ + { + "creativeSetId": "73a70a3f-f922-4721-8baf-3c1862448e99", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e12f795a-f96f-4b86-be62-58ed1c959228", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Teaching Chemistry Online - Teaching Chemistry Online", + "title": "Guardengine", + "targetUrl": "www.guardengine.com/Teaching Chemistry Online/results" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "Q1LjD-it3o5", + "name": "Chemistry Education" + } + ] + }, + { + "creativeSetId": "19b763e8-7d15-47ef-a4c4-878365e6f00e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2f3e4cbf-0b17-4139-8e13-ea3ea3c52ea5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Geology Courses Online - Geology Courses Online", + "title": "Guardengine", + "targetUrl": "www.guardengine.com/Geology Courses Online/results" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "wD_uOo81OfO", + "name": "Geology Shop" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "aa604673-8e40-4bbb-ad68-ae455c43467b", + "name": "hobbies", + "startAt": "2017-09-24T19:38:30.924Z", + "endAt": "2019-09-24T19:38:30.924Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "819a743a-0446-4e39-bd9d-d9af1357a606", + "creativeSets": [ + { + "creativeSetId": "c1d29eb7-ef63-4561-bf85-cade746f8882", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5b5e8997-5a33-4ddb-9640-5c0caabe693f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Archery Backstops - Archery Backstops - Find Archery Backstops", + "title": "Guardengine", + "targetUrl": "www.guardengine.com/Archery Backstops/results" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "MaS1t2gzIou", + "name": "Archery Courses" + } + ] + }, + { + "creativeSetId": "e325b7c8-6c59-44af-8dc4-e2fd5eb7c18a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "606cc1bf-c465-4d0a-a247-c5f7c0d984cc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fencing Trophies - Fencing Trophies", + "title": "Guardengine", + "targetUrl": "www.guardengine.com/Fencing Trophies/results" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "lUKHxt2iV2P9", + "name": "Fencing Trophies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "660ed09e-8afe-4d84-86e3-f5fe29272b29", + "name": "general", + "startAt": "2017-09-24T19:38:32.019Z", + "endAt": "2019-09-24T19:38:32.020Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "fe998075-3ad3-4d2a-9476-cf20338eb1c2", + "creativeSets": [ + { + "creativeSetId": "840a46fa-80d8-4ee6-86fb-2fc10d34af58", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "23e99a16-1e9a-44fa-952b-f97de1a0f78d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Try Vitafusion??? Adult Gummies - Save $2 w/ Coupon. Buy Today.", + "title": "Gummyvites", + "targetUrl": "www.gummyvites.com/Vitafusion/Gummies" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "5Ry6TcY_ODM", + "name": "Buy Vitamins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3f5d40c6-21ad-4dfe-b4ef-62c669814b09", + "name": "general", + "startAt": "2017-09-24T19:38:32.606Z", + "endAt": "2019-09-24T19:38:32.606Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cb7d867e-72ff-4ead-8852-2b8bec0af1b4", + "creativeSets": [ + { + "creativeSetId": "a64328b5-f19e-4836-9ddf-820c5e25901a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c467c636-35b6-4364-a6e3-d2f71d87fcb6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Gusmer Enterprises Inc‎", + "title": "Gusmerbeer", + "targetUrl": "www.gusmerbeer.com/ ‎" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "sSHTp7EuwPZ", + "name": "Brewery Kits" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0c177c51-043d-4432-86f8-2a83298d2a7a", + "name": "general", + "startAt": "2017-09-24T19:38:33.197Z", + "endAt": "2019-09-24T19:38:33.198Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "db51f279-6f81-4eec-935a-de93394f0270", + "creativeSets": [ + { + "creativeSetId": "cb980e8e-ea2e-45b4-b789-7f8055342ab8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "28254bc3-4515-45c9-9a49-bee6cda0b85f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hammer Nutrition - Official Site - Order Direct | hammernutrition.com", + "title": "Hammer Nutrition", + "targetUrl": "https://www.hammernutrition.com/?utm_source=bing&utm_medium=ad&utm_campaign=adcentermt&utm_term=hammernutrition&utm_content=Hammer%20Nutrition%20-%20With%20Call%20Extension" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "bFwbf9ysQTnR", + "name": "nutrition" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "26316eac-8dcc-4e56-8c76-0fc94dd0bc8f", + "name": "general", + "startAt": "2017-09-24T19:38:33.745Z", + "endAt": "2019-09-24T19:38:33.746Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6e9b2cf2-3559-4cbf-96c0-eb5fd2b8e1af", + "creativeSets": [ + { + "creativeSetId": "9d527469-2ba0-455b-b80e-72903ecff85f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e3378cf0-cfcf-4fa9-8ac3-5f6c49d9417a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Harp Program Refinance Loan - Do You Qualify For HARP?", + "title": "Har", + "targetUrl": "harpguide.org/HARP-Loan/Qualification" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "ME0864i1Nfkc", + "name": "Refinance Home" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "894ea164-032e-43cd-9487-3705bf9e0c3d", + "name": "general", + "startAt": "2017-09-24T19:38:34.355Z", + "endAt": "2019-09-24T19:38:34.356Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f031a426-8220-487b-930a-31acba0d9ef4", + "creativeSets": [ + { + "creativeSetId": "d602f579-60d3-40c6-bfab-c218dbc29e6f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "95bb9d45-7363-4078-af2f-25c65c522f50", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Book Peter R. Orszag - Schedule Peter Orszag | harrywalker.com", + "title": "HarryWalker.com", + "targetUrl": "http://www.harrywalker.com/speakers/peter-r-orszag" + } + } + ], + "segments": [ + { + "code": "IKz_FG_xPdH", + "name": "politics" + }, + { + "code": "jsuzYoVb5gBR", + "name": "government" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "411beef8-abc0-4736-91fa-6da149a9c993", + "name": "general", + "startAt": "2017-09-24T19:38:34.938Z", + "endAt": "2019-09-24T19:38:34.938Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4a133b51-ec00-4cbe-b1e9-641b2c173ddf", + "creativeSets": [ + { + "creativeSetId": "08568528-82d0-4e51-b5cc-3556a36882f9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7fb4e72e-bf54-408c-a7bf-8493e878f2fb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Want To Cloud Mining Crypto ? - Earn Money Made Easy Mining", + "title": "Hashflare", + "targetUrl": "http://promo.hashflare.eu/?utm_source=advendor&tracking_id=5a78e3a6900eff00016b21ec" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "wih9bQx9omQ0", + "name": "mining" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "26ca3dff-f144-45ce-9d7e-2403d47641ee", + "name": "general", + "startAt": "2017-09-24T19:38:35.561Z", + "endAt": "2019-09-24T19:38:35.561Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a5de3940-3ac1-469e-b2ad-e5c5b3c77600", + "creativeSets": [ + { + "creativeSetId": "e8be5e17-7de4-487e-9b71-62714823e9ef", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "461af572-6501-4617-85fe-e3e75c82d41f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Crypto Mining - Our Features Are Unbeatable | hashflare.io", + "title": "Hashflare.io", + "targetUrl": "hashflare.io" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "FIwLp4gtICpI", + "name": "Crypto Mining" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "74bbbb71-59f3-430d-aeab-a01333c3e066", + "name": "general", + "startAt": "2017-09-24T19:38:36.122Z", + "endAt": "2019-09-24T19:38:36.123Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b58528bc-ccf9-44d8-930b-b871bbb25628", + "creativeSets": [ + { + "creativeSetId": "554b185a-7344-4b31-821e-ce0a53ebc385", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3b86b471-32f3-42dd-b7ac-5a35a7f80edd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Safe Drug Detox - The Haven Detox | South FL", + "title": "Havendetoxnow", + "targetUrl": "havendetoxnow.com" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "ZFoOZxsAWHI", + "name": "Drug Tests" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "14255114-6f13-40b8-9f4c-86bbbc36791f", + "name": "home", + "startAt": "2017-09-24T19:38:36.681Z", + "endAt": "2019-09-24T19:38:36.682Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "11bf8332-6d27-4159-b103-08b806bc8f9a", + "creativeSets": [ + { + "creativeSetId": "9c2f6efa-0500-474c-a1b2-2d41e8c97dff", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d5e6994e-4539-4a59-bbb6-5d1ef12e9adc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Furniture Sale - Up to 50% off Select Styles.", + "title": "Hayneedle", + "targetUrl": "www.hayneedle.com/furniture" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "JdIppC2dyV9", + "name": "Home Furniture" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e1831ed7-0344-47f6-bde8-bd6742c82215", + "name": "pets", + "startAt": "2017-09-24T19:38:36.989Z", + "endAt": "2019-09-24T19:38:36.989Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "11bf8332-6d27-4159-b103-08b806bc8f9a", + "creativeSets": [ + { + "creativeSetId": "6381306f-1530-4f1c-bb54-faf1fcac9a24", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "33491069-09d1-4017-902d-6b1905be25a6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Aquarium Supplies Sale - We Have it and More - Shop Now", + "title": "Hayneedle", + "targetUrl": "www.hayneedle.com/aquariums" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "T2fnJ3M0GxS", + "name": "Aquarium Supplies" + } + ] + }, + { + "creativeSetId": "73647883-80b4-4294-9d03-a03ed010edf8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "db20f6c4-324c-4cec-bd76-14be8f3d6f78", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cat Accessories Sale - Free Shipping on Orders >$49", + "title": "Hayneedle", + "targetUrl": "www.hayneedle.com/cataccessories" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "6BRJuRThFS_", + "name": "Cat Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fe842d41-2e15-424f-a933-c5b37f82350a", + "name": "sports", + "startAt": "2017-09-24T19:38:37.794Z", + "endAt": "2019-09-24T19:38:37.794Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "11bf8332-6d27-4159-b103-08b806bc8f9a", + "creativeSets": [ + { + "creativeSetId": "b0a6429b-e159-4b97-b27d-30f08365b837", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a8af6946-72e8-4ca7-a457-d5ab75cfced4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Volleyball Supplies Sale – Orders Over $49 Ship Free", + "title": "Hayneedle", + "targetUrl": "www.hayneedle.com/volleyball" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "tnXE6QYG4tO", + "name": "Volleyball Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "76f75806-0fa5-4985-ac23-20cd3095aeaa", + "name": "general", + "startAt": "2017-09-24T19:38:38.356Z", + "endAt": "2019-09-24T19:38:38.356Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0986d036-bdfd-424f-bd18-499aa8424d7e", + "creativeSets": [ + { + "creativeSetId": "9b5fc09e-5a4c-48b3-8dc1-1b4a4765e074", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "07e306b1-139b-490d-928d-7a2f2445fd11", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Products For Hotel Guests - Buy Wholesale & Save Today", + "title": "Hdsupplysolutions", + "targetUrl": "hdsupplysolutions.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6mVE5rciM5p", + "name": "Hotel Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "42bba8be-3b79-4aaf-add6-4fdb581b8531", + "name": "general", + "startAt": "2017-09-24T19:38:38.928Z", + "endAt": "2019-09-24T19:38:38.929Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "aad07692-8733-4095-96f6-fe449b2d2aa0", + "creativeSets": [ + { + "creativeSetId": "bd9d2db2-1c6a-4f6e-b668-6cc8e729ee25", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f74c77aa-4a71-44cc-bb2a-936902097e74", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find Books Orthopedics - Look For What You Need Here!", + "title": "Health.zone/Books Orthopedics", + "targetUrl": "www.health.zone/Books Orthopedics" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "OAHRLfYZDW5", + "name": "Orthopaedic Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "47e4119d-24a9-4daa-b49e-f2567fd9257b", + "name": "general", + "startAt": "2017-09-24T19:38:39.603Z", + "endAt": "2019-09-24T19:38:39.603Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9259b625-b3ac-4a64-a1e4-87ad7ae83db4", + "creativeSets": [ + { + "creativeSetId": "daf3e0bf-55e6-4ca8-90f3-979dedf1783d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7411e8f8-a2ee-4d01-ac67-5eeb722abbcc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Apple cider vinegar diet - How to Loss 12lbs in 5 Days | healthnewworld.com \r\n", + "title": "HealthNewWorld", + "targetUrl": "http://hello-blackjack.com/CNN-Student/HCA-Garcinia/?voluumdata=deprecated&eda=deprecated&cep=KxqFkhH9vkkKoRBvclf7cUfN8eqLA-LkGMpjkr9bKA14hjacyUhEiwcfj8vxUckP7vZrAmjNFOfS2rdTV0PphX3Nh-7K1naCVJYfletkmBQz4C3gIyn4hclLV9vjy3AGK7LrGOo9fAj08qE8ORs9cL2KUkX1tK4A1q5swe6A14PC88-fk_hLEpOFwb5TCgCh" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "FChokrxjP6dw", + "name": "cider" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2ff6a661-5e49-40d3-bd1d-e5d9771ab375", + "name": "general", + "startAt": "2017-09-24T19:38:40.159Z", + "endAt": "2019-09-24T19:38:40.159Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5eed63ba-21a9-4f66-a3c8-510504ed9d0f", + "creativeSets": [ + { + "creativeSetId": "1a3869a8-557f-4e40-8829-924f01e367b7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2918208f-2228-4a64-a9ba-a5b48d77ddeb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Apple cider vinegar diet - 27lbs weight loss in 2 weeks.", + "title": "Healthnewworld", + "targetUrl": "healthnewworld.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "aQGewv5ybwZ", + "name": "Dieting Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d95945e1-4cc3-4591-bea3-57c8a8bfb266", + "name": "general", + "startAt": "2017-09-24T19:38:40.711Z", + "endAt": "2019-09-24T19:38:40.711Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1bff9949-c505-4755-b2c5-2d62f268ab78", + "creativeSets": [ + { + "creativeSetId": "c29a468d-08d8-4dab-ad59-43d18ae8afe8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ed6c814b-3629-4aa8-b85c-190c1c8f23e2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "VA Health Plans $29/mo - See Instant Rates Comparison", + "title": "HealthPlanRate", + "targetUrl": "www.HealthPlanRate.com/Virginia" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mltw3XEd08nw", + "name": "Health & Fitness Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "47311872-d430-48b9-ac2d-4fb9fdf880bf", + "name": "general", + "startAt": "2017-09-24T19:38:41.289Z", + "endAt": "2019-09-24T19:38:41.289Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a2934f72-71d5-4226-b228-ac8e0df19597", + "creativeSets": [ + { + "creativeSetId": "35527c32-fe5a-4a32-985f-35b1260f1676", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a00deae6-17f3-4293-a96a-341de0e952b2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "What Is Alternative Medicine? - Guide To Alternative Health", + "title": "Healthprep", + "targetUrl": "healthprep.com/AlternateHealth" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "AdfV-Z4M1dC", + "name": "Alternative Medicine Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d3c74bf4-72e8-46da-93ce-06affd03216e", + "name": "general", + "startAt": "2017-09-24T19:38:41.841Z", + "endAt": "2019-09-24T19:38:41.841Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "298e073d-7e9f-48dc-8264-569e653e051c", + "creativeSets": [ + { + "creativeSetId": "7a026765-129f-4a70-9565-52bd7544781f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1fc25cd6-c147-466b-a205-efd950faac7c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "America's Online Pharmacy - Save 30-90% on your RX‎", + "title": "Healthwarehouse", + "targetUrl": "www.healthwarehouse.com/ ‎" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "sOqbf6PQ3c-", + "name": "Online Pharmacy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b64328de-7259-497f-b6bc-64d41dd662e4", + "name": "general", + "startAt": "2017-09-24T19:38:42.408Z", + "endAt": "2019-09-24T19:38:42.409Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f1f83569-dcf9-4ff1-8165-4bd493816090", + "creativeSets": [ + { + "creativeSetId": "8c5517ae-4cda-4d0c-b1a9-7c52a3d95318", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "eb5670ec-0a37-41b3-ba04-554cbd76ecfc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "America's Online Pharmacy - FDA Approved Brand & Generics | healthwarehouse.com", + "title": "Healthwarehouse.com", + "targetUrl": "https://www.healthwarehouse.com/?msclkid=b53702a52a981bba31bd58d711bc8d43&utm_source=bing&utm_medium=cpc&utm_campaign=Search%20-%20RX%20-%20Generic%20-%20Online%20Pharmacy&utm_term=the%20online%20drugstore&utm_content=Online%20Pharmacy" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "EacJw-LE-j-C", + "name": "drugs" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2c788921-41cd-49ad-aac8-f41c4e70b98a", + "name": "general", + "startAt": "2017-09-24T19:38:43.181Z", + "endAt": "2019-09-24T19:38:43.181Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1e38cf67-058c-4045-8a03-2b8a3335eb4c", + "creativeSets": [ + { + "creativeSetId": "4aaad930-980e-4401-88a5-ed91c17a915a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "25ce776d-a76e-43e1-b309-bb7f28a0c7bb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Adult Sex Toys On Sale | healthyandactive.com", + "title": "Healthyandactive", + "targetUrl": "www.healthyandactive.com" + } + } + ], + "segments": [ + { + "code": "BLz4HWBCFN", + "name": "Adult" + }, + { + "code": "l3UPx578DUq", + "name": "Adult Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2d3a224b-d4bf-4ce0-af6b-46bcc1c1dcf3", + "name": "general", + "startAt": "2017-09-24T19:38:43.755Z", + "endAt": "2019-09-24T19:38:43.755Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c5b38a21-da16-4864-ae71-09eb061d5762", + "creativeSets": [ + { + "creativeSetId": "4a215255-0c30-46b1-9e38-48e3c3ddc89b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c6f67918-9418-424f-bf84-658dfa0f6369", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Remove Aquarium Algae - All-Natural Water Cleaner - Learn mor", + "title": "Healthyponds", + "targetUrl": "healthyponds.com/Aquarium-Algae" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "T2fnJ3M0GxS", + "name": "Aquarium Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6c804740-1dbc-45e4-9e76-bab647a88cf7", + "name": "general", + "startAt": "2017-09-24T19:38:44.357Z", + "endAt": "2019-09-24T19:38:44.358Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e0d3f2b0-26f1-4441-aea2-7c78930245b9", + "creativeSets": [ + { + "creativeSetId": "42eeac4e-42a8-4fe2-859f-5fa05eb6dbe8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c65e3c0f-d98b-4ac4-b9e5-e5a04be22d7d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hearing Treatment Experts - Ascent Audiology & Hearing", + "title": "Hearingaiddoctors", + "targetUrl": "www.hearingaiddoctors.com/hearing/treatments" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "LRNthVMNdVU", + "name": "Hearing Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d32e293a-460d-4b31-8581-6252a4133078", + "name": "general", + "startAt": "2017-09-24T19:38:44.917Z", + "endAt": "2019-09-24T19:38:44.918Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6be06883-744f-45ad-94aa-333bc625f55f", + "creativeSets": [ + { + "creativeSetId": "320bb8a5-af7e-4abd-b844-b027618b3533", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "52b552ed-b161-4ce7-bc20-10b865fa1c38", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hearing Assist - Buy One, Get One Free Offer - Try Risk Free", + "title": "Hearingassist", + "targetUrl": "www.hearingassist.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "LRNthVMNdVU", + "name": "Hearing Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "57918b7c-aa32-43e5-9e92-c86de29a2d14", + "name": "general", + "startAt": "2017-09-24T19:38:45.540Z", + "endAt": "2019-09-24T19:38:45.540Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "18ec5328-e1de-40f6-acdc-57689e2abe36", + "creativeSets": [ + { + "creativeSetId": "48e77f29-2255-4d70-a701-2538453b18c5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e72de159-6c7b-4232-af8e-1a4b9eeab1e0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pharmacy Services at H-E-B® - Flu Prevention | heb.com", + "title": "Heb", + "targetUrl": "www.heb.com/Pharmacy/Flu-Prevention" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "w3QYv0DISr3a", + "name": "Flu Prevention" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ee01b3c5-abb9-4fc4-84c3-a780719f22d3", + "name": "general", + "startAt": "2017-09-24T19:38:46.103Z", + "endAt": "2019-09-24T19:38:46.104Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "10ecced1-7be8-412d-88c8-6e588b2a8b56", + "creativeSets": [ + { + "creativeSetId": "5bec0edc-29a1-4a02-92c0-7f2b205760a3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e7c45aa6-015c-45dc-a5ca-ce0e836c8382", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Food Delivery | HelloFresh™: Get $40 Off‎", + "title": "Hellofresh", + "targetUrl": "www.hellofresh.com/Food/Delivery ‎" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "YnihSiXSdRZ", + "name": "Food Delivery" + } + ] + }, + { + "creativeSetId": "b5da1497-9088-4438-bf30-552ecb1aef6d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e60e5331-6b12-4b13-8920-7c3cdff59a1f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Meal Delivery - HelloFresh™: Get Up To 50% Off", + "title": "Hellofresh", + "targetUrl": "www.hellofresh.com/Meal/Delivery" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "RjX-wPWa8Z_f", + "name": "Meal Deliveries" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "eb36253d-ab50-4358-8de7-8712b87b7843", + "name": "general", + "startAt": "2017-09-24T19:38:47.073Z", + "endAt": "2019-09-24T19:38:47.074Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5bff0391-ec03-46c3-becb-3f9dab35f8f3", + "creativeSets": [ + { + "creativeSetId": "fd3577b5-1fd1-4fa4-8691-6a598d92e721", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "478e258a-53b5-48e4-8bb5-d20d32c5af6f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "PC Service & Repair - BBB A+ Rated & Accredited | hellotech.com", + "title": "hellotech.com", + "targetUrl": "https://www.hellotech.com/tech-support/computer-repair-laptop-desktop?utm_source=bing&utm_medium=cpc&utm_campaign=pc&phone=18003117002&msclkid=ae7a32f2892516f51a43688a4124c89e" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "dHGbbiReO_Ec", + "name": "hardware" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "aa97e867-e86f-450a-9dbe-e236a7fb414a", + "name": "general", + "startAt": "2017-09-24T19:38:47.667Z", + "endAt": "2019-09-24T19:38:47.667Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "fe2d8343-8779-4441-9582-ce7180311a48", + "creativeSets": [ + { + "creativeSetId": "cf6e7797-bb02-4cf2-824b-9544488ea96e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5f8c16a5-6472-4fad-a455-08e59df210ae", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Seizure Treatment Resource - About Epilepsy Treatment", + "title": "Helpmanageepilepsy", + "targetUrl": "www.helpmanageepilepsy.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "UzZDN_wdJQzE", + "name": "Epilepsy Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a7eab86c-5f0a-4569-9567-b3463aa56e0d", + "name": "general", + "startAt": "2017-09-24T19:38:48.252Z", + "endAt": "2019-09-24T19:38:48.253Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e68f0f88-8dc6-4787-9d20-612070400a43", + "creativeSets": [ + { + "creativeSetId": "a5ce0551-9221-43f5-a54c-839717863fae", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e63a5cd1-2f48-4f5f-bc74-18988a22b1fe", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Help Stop The Virus - Learn About HIV Today", + "title": "Helpstopthevirus", + "targetUrl": "www.helpstopthevirus.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "ljRVUx5AHbA", + "name": "Hiv Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "291579c8-a9d2-4f4d-8176-de3392407a73", + "name": "general", + "startAt": "2017-09-24T19:38:48.940Z", + "endAt": "2019-09-24T19:38:48.940Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7e6ac686-3821-4a10-8ef9-df353d2cb23a", + "creativeSets": [ + { + "creativeSetId": "e009e904-72f6-4640-a219-75bdb42e8388", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1295fe3e-b1d6-4bd1-9695-f06d8df3a595", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hermès Boutique - Online Sales - The Official Home of Hermès", + "title": "Hermes", + "targetUrl": "www.hermes.com/Hermès-Official/Jewelry" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d9372653-f3e2-42bc-ad23-f44d52548d6f", + "name": "general", + "startAt": "2017-09-24T19:38:49.563Z", + "endAt": "2019-09-24T19:38:49.563Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "dfaa8f9c-4d69-4307-8eb3-5f1ac4e55dae", + "creativeSets": [ + { + "creativeSetId": "45b8462a-494a-479c-9fe5-acdabd9d1187", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "968fa07c-590f-4590-8dad-5d99cc92faa9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Used Cars - Buying a Car Made Better | hertzcarsales.com", + "title": "Hertzcarsales", + "targetUrl": "www.hertzcarsales.com/used/dealership" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "b4xuJT0IZ_f", + "name": "Used Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fd141277-39ce-47c0-bfb7-bbacb833c227", + "name": "general", + "startAt": "2017-09-24T19:38:50.306Z", + "endAt": "2019-09-24T19:38:50.306Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e6126c73-bc57-45dd-8c16-c06f9d47426d", + "creativeSets": [ + { + "creativeSetId": "9e087ca1-ac58-467e-846f-49a86da8cf47", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7ae378a3-26da-4469-815b-225a4472a9cd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Delivered Meals - Top 10 Meal Delivery Reviews", + "title": "Highlightreviews", + "targetUrl": "highlightreviews.com/Meal-Delivery/Review" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "RjX-wPWa8Z_f", + "name": "Meal Deliveries" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0573fa19-c99d-475e-90d1-c34b16aac993", + "name": "general", + "startAt": "2017-09-24T19:38:50.934Z", + "endAt": "2019-09-24T19:38:50.934Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "60194ca9-0745-41fc-af13-19a07db98cc4", + "creativeSets": [ + { + "creativeSetId": "d0ae836d-66b3-47ca-9629-8dde00e58aa0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ff1180b4-138d-4f92-a64b-c249219cd0ac", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Men's Swimwear at HisRoom - Free Shipping on Orders $50+", + "title": "Hisroom", + "targetUrl": "www.hisroom.com/Swimwear" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "BgfSFihlac8", + "name": "Swimming Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8df05d4a-ba98-4528-a668-455182ff2ea0", + "name": "general", + "startAt": "2017-09-24T19:38:51.509Z", + "endAt": "2019-09-24T19:38:51.509Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9a0d1b1f-8142-4a71-84a1-072754626745", + "creativeSets": [ + { + "creativeSetId": "538f8051-303f-42b3-9f1c-7262ded91ac2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6b6862ad-a4c4-42d3-a495-dd870c35a312", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "History.com - Vikings at HISTORY", + "title": "History.com", + "targetUrl": "https://www.history.com/shows/vikings?mai=0&mkwid=uxxoYXMA|c_pcrid__pkw__pmt_&utm_source=&utm_medium=cpc&utm_term=&utm_campaign=Gemini_Vikings&paidlink=1&cmpid=PaidSearch__Gemini_Vikings_&s_kwcid=AL!4850!105!30675554351!s!295006240005&ef_id=WmZBUAAAAF4YWyKh:20180206010740:s" + } + } + ], + "segments": [ + { + "code": "5G4C9Gbl_AF", + "name": "History" + }, + { + "code": "BsidvCCd6uVd", + "name": "history" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "218df0a9-ce16-4df9-b5e5-546e3820476d", + "name": "general", + "startAt": "2017-09-24T19:38:52.089Z", + "endAt": "2019-09-24T19:38:52.090Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "dc1540e9-5b1b-4ea2-9d93-52671318a9ab", + "creativeSets": [ + { + "creativeSetId": "f67cf32d-ef32-4446-924d-4f643f7b8c47", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4bb34a71-9f5b-4ad5-a437-368c0d086312", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "HIV Answers - Learn About HIV Today", + "title": "Hivanswers", + "targetUrl": "www.hivanswers.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "ljRVUx5AHbA", + "name": "Hiv Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bb22793e-cb0d-4070-b1f3-7a211dd11ac7", + "name": "general", + "startAt": "2017-09-24T19:38:52.667Z", + "endAt": "2019-09-24T19:38:52.668Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "780ad3fb-74a0-4c89-ada7-efa27c034e3d", + "creativeSets": [ + { + "creativeSetId": "c0558b2b-5500-418a-99b3-3acf5b52fa8e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c1d6e945-117c-496e-8cd8-51651f8d9e24", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Is Your HIV-1 Undetectable? - Discover Treatment Option Here", + "title": "HIVnext", + "targetUrl": "www.HIVnext.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "ljRVUx5AHbA", + "name": "Hiv Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "66688af5-5174-47f7-aede-f9b6c341e53b", + "name": "general", + "startAt": "2017-09-24T19:38:53.416Z", + "endAt": "2019-09-24T19:38:53.416Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1ae9aa17-d4c3-41a5-bd73-41429af96a55", + "creativeSets": [ + { + "creativeSetId": "ed24aa89-6f61-46b3-a2fc-f3dc2b126a7a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e6259898-16b3-4edd-a558-52aa5c877ee2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "H&M - Spring Clothes | Wide selection of clothes‎", + "title": "H&m", + "targetUrl": "www.hm.com/clothes ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "obV7ryiIRW4", + "name": "beauty" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "250be07a-3930-45e8-b347-dc9b2410e4de", + "name": "general", + "startAt": "2017-09-24T19:38:54.040Z", + "endAt": "2019-09-24T19:38:54.041Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "87bc0825-a417-4329-a333-31f1f201f831", + "creativeSets": [ + { + "creativeSetId": "97764e7e-a57e-45da-9c14-247dd71e9fc1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5739c990-3dd0-4a43-9b40-c88257658ff4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "MATH 180 - Top Rated Math180 Materials | hmhco.com", + "title": "Hm", + "targetUrl": "www.hmhco.com/math180" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "o7RiTeSPDIyu", + "name": "Mathematics worksheets" + } + ] + }, + { + "creativeSetId": "df1b9751-04b4-4f94-847a-59a380422855", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9c2c0597-087d-40cb-9bf6-f28b26168aa0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Houghton Mifflin Physics - Top Rated Physics Materials", + "title": "Hm", + "targetUrl": "www.hmhco.com/physics" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "AQ9eV3TbmJq", + "name": "Physics Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "35113d98-2dea-4eec-9c9b-1075114bff0d", + "name": "general", + "startAt": "2017-09-24T19:38:54.980Z", + "endAt": "2019-09-24T19:38:54.980Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cbf5d02a-5278-4a3c-be4f-7562cdc3531a", + "creativeSets": [ + { + "creativeSetId": "f77064c3-4d6c-4f25-a5fd-ef8310b1edb2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "936b0bca-087b-4330-b6e1-b13cba2a27b8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "HOBBY LOBBY® Home Decor - Now 50% Off Select Home Decor", + "title": "Hobbylobby", + "targetUrl": "www.hobbylobby.com/HomeDecor" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "T4rhcMPPBhp", + "name": "Home Décor" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cdf5fc73-f1e6-465e-9993-529e851a8f7a", + "name": "general", + "startAt": "2017-09-24T19:38:55.617Z", + "endAt": "2019-09-24T19:38:55.617Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ac602ed1-eb1f-4522-ad09-61b13acfd55c", + "creativeSets": [ + { + "creativeSetId": "27ed0424-c1a0-44dc-bbb8-4f9e692ace0c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d2223a31-8973-4b49-ba80-56a1a3a75b42", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "HockeyMonkey.com® Site - Premiere Hockey Gear Supplier", + "title": "Hockeymonkey", + "targetUrl": "www.hockeymonkey.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "hAIdxFZ19kvh", + "name": "Hockey Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c571a7be-8dbb-4c20-ad88-fa9be5ad33a5", + "name": "general", + "startAt": "2017-09-24T19:38:56.409Z", + "endAt": "2019-09-24T19:38:56.410Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0ee4c52a-bff0-4e10-8674-7f385ec98a99", + "creativeSets": [ + { + "creativeSetId": "f6922694-df7d-4d2f-803a-546add9cc639", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "17259e3d-8732-41ca-9fc8-ccf3e00c13a3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Holland America Line Cruises - Plan Your Ultimate Getaway", + "title": "Hollandamerica", + "targetUrl": "www.hollandamerica.com/Official-Site" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "xrH2KKuKBDm", + "name": "Cruise Vacations" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "48de829d-cfaa-4fcf-9408-73328afce7ec", + "name": "general", + "startAt": "2017-09-24T19:38:57.034Z", + "endAt": "2019-09-24T19:38:57.034Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e69b8dc5-27bb-4ba8-860d-499972545434", + "creativeSets": [ + { + "creativeSetId": "390cc81f-1635-48d6-a7cd-7bd623c1aafd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ab95f4ae-b8f4-4f0f-8c5f-23d57032be0a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Holland House® Quick Recipes - Bold Flavors Made Easy", + "title": "Hollandhouseflavors", + "targetUrl": "hollandhouseflavors.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "9Roh9lJ0tSd", + "name": "Cooking Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "88cd750c-8e89-4e87-89a6-9496ac831720", + "name": "general", + "startAt": "2017-09-24T19:38:57.584Z", + "endAt": "2019-09-24T19:38:57.585Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "60445212-d9b6-43b6-b4de-fbdb6c4a0244", + "creativeSets": [ + { + "creativeSetId": "e627f82c-5a8f-414f-a6c9-bdbe567a5781", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e211da51-defc-4e60-bb54-8a611c9de18c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Charles Town Horse Racing - Live Thoroughbred Races", + "title": "Hollywoodcasinocharlestown", + "targetUrl": "www2.hollywoodcasinocharlestown.com/Horse-Racing" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "cS2Wr4k8VpH", + "name": "Horse Racing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f993ad42-7d4e-4f5f-84ac-1e87293a82bd", + "name": "general", + "startAt": "2017-09-24T19:38:58.183Z", + "endAt": "2019-09-24T19:38:58.183Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9604f2c5-575b-4d6d-be65-d4bf4b898478", + "creativeSets": [ + { + "creativeSetId": "493ba316-7cb0-4637-afb8-b31075f28750", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f0ddc2fe-12d3-4ede-a806-89e2a4d36063", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Small Business Software", + "title": "Home and More", + "targetUrl": "http://homeandmore.us/topic/20/Best+Small+Business+Manufacturing+Software?utm_campaign=8DT00D2&utm_term=business%20manufacturing&utm_medium=b&g_ti=kwd-77721785009887:loc-190&g_de=c&g_ci=223484237&g_ai=4624160465&utm_content=1" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "nGOxpmc-Rz8P", + "name": "manufacturing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a1044fa0-22ef-4407-a125-61cb0e259732", + "name": "general", + "startAt": "2017-09-24T19:38:58.763Z", + "endAt": "2019-09-24T19:38:58.764Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "071b5128-e9c8-4c8a-a006-f1094d3e07e6", + "creativeSets": [ + { + "creativeSetId": "dda5b9c9-8123-4051-898a-307d76f09673", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ca70b54f-bfd7-4a33-9747-7ddf70365bab", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Connect With A Contractor - Find Your Perfect Contractor", + "title": "Homeadvisor", + "targetUrl": "www.homeadvisor.com/connect" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "9Alas5QGK_f", + "name": "Contractor Jobs" + } + ] + }, + { + "creativeSetId": "0c171521-07fa-4ea7-8fb9-7b4b3b188051", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ec278af4-5166-4f4a-8db9-9008543cc02e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find Contractors - Find Top Rated Service Pros", + "title": "Homeadvisor", + "targetUrl": "www.homeadvisor.com/Local" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "8BeGmq3KFPtE", + "name": "Local Listings" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "388a9446-eda0-41e6-baa4-02cfa6397110", + "name": "general", + "startAt": "2017-09-24T19:38:59.627Z", + "endAt": "2019-09-24T19:38:59.627Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a4e8e05c-5f12-419f-a1d0-485920e1fc0e", + "creativeSets": [ + { + "creativeSetId": "3f2a95e0-c720-40c4-b463-f942f8bb1cc9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3e37e48b-9a7a-477f-92dd-b823419e0761", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Synthetic Grass Experts - Find Top-Rated Landscaping Experts", + "title": "HomeAdvisor", + "targetUrl": "www.HomeAdvisor.com" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "u3b4RF02Ctr", + "name": "Artificial Lawns" + } + ] + }, + { + "creativeSetId": "a09a3d3c-b4ad-4aa9-9ddf-7c4ac906e0b4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ce94cf2c-3dfc-4bb8-9a99-beab73cf12ec", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fences - Don't Hire Just Anyone | HomeAdvisor.com", + "title": "HomeAdvisor", + "targetUrl": "www.HomeAdvisor.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "lUKHxt2iV2P9", + "name": "Fencing Trophies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "baf1fa6b-ef26-4af5-833b-45e7c275101c", + "name": "general", + "startAt": "2017-09-24T19:39:00.416Z", + "endAt": "2019-09-24T19:39:00.416Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "879d26ed-8161-4ef2-b6bf-ebc25be243ff", + "creativeSets": [ + { + "creativeSetId": "c2314578-ac0a-4f9a-ba3e-2283164511d5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "378dc927-a033-4eb5-bc40-56c9f50ad578", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Contractor Leads | HomeAdvisorPros.com", + "title": "HomeAdvisorPros", + "targetUrl": "www.HomeAdvisorPros.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "9Alas5QGK_f", + "name": "Contractor Jobs" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "336fd9ab-12aa-454f-afaf-a9d1064cf567", + "name": "general", + "startAt": "2017-09-24T19:39:01.234Z", + "endAt": "2019-09-24T19:39:01.235Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ad90854d-a8df-410a-a8bb-00d5dd358ff4", + "creativeSets": [ + { + "creativeSetId": "41d761de-f6e9-4ff8-b609-c7106a594d65", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f5521676-72e8-4f9a-bf28-fbe32e34c3c0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Brewing Equipment Kits | Perfect Your Homebrew Beer‎", + "title": "Homebrewit", + "targetUrl": "www.homebrewit.com/ ‎" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "sSHTp7EuwPZ", + "name": "Brewery Kits" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "35c7996f-fde5-4cc1-b5d7-cb245e82edd6", + "name": "general", + "startAt": "2017-09-24T19:39:01.836Z", + "endAt": "2019-09-24T19:39:01.837Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "32c961d8-116b-41b7-8c5b-6371ee1aa31c", + "creativeSets": [ + { + "creativeSetId": "3b597b75-4d57-4e37-b54a-49f1b55f4b6b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "778e0403-56eb-489e-a884-7d0006509cc0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Chef Fresh Meal Kit - 13+ Meals Each Week | homechef.com", + "title": "Homechef", + "targetUrl": "www.homechef.com/Meals" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "RjX-wPWa8Z_f", + "name": "Meal Deliveries" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d36aee0f-8a26-47c4-be5e-026d0289ebde", + "name": "general", + "startAt": "2017-09-24T19:39:02.414Z", + "endAt": "2019-09-24T19:39:02.415Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "89414bae-a39f-46bd-85a5-035c55b70028", + "creativeSets": [ + { + "creativeSetId": "494006a4-3f70-4190-811b-cdc7f7b17728", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b3422411-f94a-427c-980b-f1316368b656", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Depot® Special Buys", + "title": "HomeDepot", + "targetUrl": "www.HomeDepot.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "JdIppC2dyV9", + "name": "Home Furniture" + } + ] + }, + { + "creativeSetId": "842fc4e6-8d1b-4dc2-bdaa-a73879223abd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6393ea82-6c85-4c99-bae7-2f288a401742", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Decor Kitchen Rugs - HomeDepot.com", + "title": "HomeDepot", + "targetUrl": "www.HomeDepot.com/AreaRugs" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "T4rhcMPPBhp", + "name": "Home Décor" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b459d268-68ad-4a91-82e2-8a2d0c982ffa", + "name": "general", + "startAt": "2017-09-24T19:39:03.261Z", + "endAt": "2019-09-24T19:39:03.262Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a54ff607-e511-4e1d-aad8-8d2fb3fad887", + "creativeSets": [ + { + "creativeSetId": "a67e13d5-b9fd-449d-8d82-288db666e101", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cfe7da29-9e9a-4ddf-ad09-30cc318ffb35", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Explore Our Sewing Machine - Available at The Home Depot®", + "title": "Homedepot", + "targetUrl": "www.homedepot.com/Appliances/SteamPress" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "93bPE8nabJd", + "name": "Sewing Supplies" + } + ] + }, + { + "creativeSetId": "fcb591a6-2366-4b7e-a872-1ff50715aafc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c11676f4-56af-408b-8f48-0e572a9fa315", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Compliment Your Style - Home Accents to Love - homedepot.com", + "title": "Homedepot", + "targetUrl": "www.homedepot.com/Home/Accents" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "iOSOYZ7Fm9M", + "name": "Home Decorating" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a39a9e1b-268e-4f10-a8a8-c60a9e54cae9", + "name": "general", + "startAt": "2017-09-24T19:39:04.063Z", + "endAt": "2019-09-24T19:39:04.063Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "589830c8-11f8-479e-935a-0f0c198733b5", + "creativeSets": [ + { + "creativeSetId": "912b31f5-dd4e-43e9-86e7-0f5354fde108", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ffc24396-6d67-40d1-b939-c1225b1a980b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Marijuana Drug Test | HomeHealthTesting.com", + "title": "HomeHealthTesting.com", + "targetUrl": "https://www.homehealthtesting.com/marijuana-drug-test-way-urine-test-p-70.html?utm_source=bing&utm_medium=cpc&utm_campaign=New%2520Campaigns&utm_term=marijuana%2520drug%2520test&utm_content=Marijuana" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "SZXcke7KF-RM", + "name": "cannabis" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "04f18acc-83e6-4da0-aaa0-67de250e869e", + "name": "general", + "startAt": "2017-09-24T19:39:04.614Z", + "endAt": "2019-09-24T19:39:04.614Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d84816a3-5a31-4d7f-83bf-2597fd9e95ec", + "creativeSets": [ + { + "creativeSetId": "09c4e00e-0635-4500-b8c8-2f7c930f4346", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "966c258a-8a39-495b-bfee-abf3085a949b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Refinance Your Home Loan - Refinance With Mr. Cooper®", + "title": "Homeloans.mrcooper", + "targetUrl": "homeloans.mrcooper.com" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "dtTKtVFdpje", + "name": "Refinance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0b080356-f1de-420d-9d74-d0364dae4b17", + "name": "general", + "startAt": "2017-09-24T19:39:05.225Z", + "endAt": "2019-09-24T19:39:05.225Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "42aba439-b696-4c85-b1e5-25da58512c57", + "creativeSets": [ + { + "creativeSetId": "00e5e1f8-8a9e-4356-b17c-eac0b5b1d3aa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4e22d000-8745-4f02-add9-7fd1a74d4435", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Homer Mortgage Rates - Top Lenders", + "title": "Homer.MortgagExaminer", + "targetUrl": "Homer.MortgagExaminer.com/Rates" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "ME0864i1Nfkc", + "name": "Refinance Home" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "618485b6-b741-42ea-9316-d9d1f5dcce6b", + "name": "general", + "startAt": "2017-09-24T19:39:05.966Z", + "endAt": "2019-09-24T19:39:05.966Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "56017890-e6f3-437e-8368-16e3b75706a4", + "creativeSets": [ + { + "creativeSetId": "2132cfe4-b92b-4ec7-8b27-819759e71574", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3d8ee118-d29b-4ad9-a753-09ec5ffab133", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Refinance Calculator - Low 10 15-Yr 30-Yr 2.7% 3.3 APR*", + "title": "HomeRefinance.Priceist", + "targetUrl": "HomeRefinance.Priceist.com" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "ME0864i1Nfkc", + "name": "Refinance Home" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9d33619f-34e5-4162-98a9-ceb8fb382f73", + "name": "general", + "startAt": "2017-09-24T19:39:06.574Z", + "endAt": "2019-09-24T19:39:06.574Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "dd8f3e52-e13d-43db-8bc0-6d2511515a1b", + "creativeSets": [ + { + "creativeSetId": "a40230f4-7357-43bd-a426-c5d457aa6308", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f2c6b2d1-8808-401e-a9b4-a2c00081f984", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hoops King - Basketball", + "title": "HoopsKing", + "targetUrl": "www.HoopsKing.com/Basketball" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FiDfXRZJaDS", + "name": "Basketball Training" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0f1872f4-9569-43b4-9cd2-d8ad4c67bceb", + "name": "general", + "startAt": "2017-09-24T19:39:07.157Z", + "endAt": "2019-09-24T19:39:07.157Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ec4e353f-66f3-4d8f-b4e8-83bf368c0373", + "creativeSets": [ + { + "creativeSetId": "9f3a6a67-749a-4c52-b4dd-1242cbe444c6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "21ab8ab9-6902-447f-b3da-b1088543ceaf", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hootsuite® - Track Your Social Performance.", + "title": "Hootsuite", + "targetUrl": "hootsuite.com/Social" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "UBXGkQ3Bdgz4", + "name": "Social Media Analytics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7db02c59-6128-4907-b019-5ed4b57e782d", + "name": "general", + "startAt": "2017-09-24T19:39:07.774Z", + "endAt": "2019-09-24T19:39:07.774Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3dcbc170-82cf-4372-a44c-6b8a78cb4ddd", + "creativeSets": [ + { + "creativeSetId": "a0474ed4-7b59-459c-bc15-ce2b31f30072", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5ee0a87e-051d-4af6-8692-947945846882", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Astronomy Gratings", + "title": "HORIBA", + "targetUrl": "www.HORIBA.com/scientific" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "M_ZptOvQUEHi", + "name": "Astronomy Magazine" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "81f52248-cde9-4883-9246-399c5180d170", + "name": "general", + "startAt": "2017-09-24T19:39:08.501Z", + "endAt": "2019-09-24T19:39:08.501Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "afb2873d-96ea-4131-b006-25dddc8e9e37", + "creativeSets": [ + { + "creativeSetId": "91fbd3cd-a836-4ac0-a6f8-42672819ec93", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "458f459c-6f28-4892-96cc-76f989f420f3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "HostGator.com© Official - 62% Off Sale | hostgator.com", + "title": "Hostgator", + "targetUrl": "www.hostgator.com/WebHosting" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "zgMSYI-gfMo", + "name": "eCommerce Websites" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8319af09-def0-469e-beb0-4117fae8d8b9", + "name": "general", + "startAt": "2017-09-24T19:39:09.092Z", + "endAt": "2019-09-24T19:39:09.093Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d6e2a2cf-3fbb-49b7-86d5-636d18c418a5", + "creativeSets": [ + { + "creativeSetId": "bf4cdcb8-0d16-417c-87b3-33463bc95e2e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f43be447-ed5f-4114-a903-fc9bb93eb7d4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hotels.com Official Site: Book Your Hotel Today.", + "title": "Hotels.com", + "targetUrl": "https://www.hotels.com/?pos=HCOM_US&locale=en_US&PSRC=G21&rffrid=sem.hcom.US.yahgem.003.00.03.s.kwrd=ZzZz.43700019187017242.0.29362261345.700000001550642.d.c.COmfuZjLidkCFaWVxQIdYPABkw.ds&semid=7635665428.336162112.na.kwd-289180520836.na.na.hotel&gclid=COmfuZjLidkCFaWVxQIdYPABkw&gclsrc=ds" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "eU7w-36a0dwH", + "name": "hotels" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3c2a9e93-e08c-4ccb-a331-f17b57471ca0", + "name": "general", + "startAt": "2017-09-24T19:39:09.655Z", + "endAt": "2019-09-24T19:39:09.655Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c2a98a46-fe17-4f58-8730-2fbd67c42ece", + "creativeSets": [ + { + "creativeSetId": "d5524736-7c0c-4865-ab8c-084f4384a099", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0269db9d-ce52-42e1-a8c7-6048cf5cf952", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hotwire® Hotel Deals – Hot Rate® Deals Up To 60% Off", + "title": "Hotwire", + "targetUrl": "www.Hotwire.com/Cheap-Hotels" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6mVE5rciM5p", + "name": "Hotel Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "656770da-9a13-4957-8b9d-0d597f579a1f", + "name": "general", + "startAt": "2017-09-24T19:39:10.375Z", + "endAt": "2019-09-24T19:39:10.375Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2f77d90d-be15-4455-a988-1e8ea454082a", + "creativeSets": [ + { + "creativeSetId": "3b3395e4-1ddd-4e2c-837d-89f9a5ed43c0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d569c6cd-f728-4ecb-95fa-6535bba28b70", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "We Buy Homes Express - All Cash, No Realtors, No Fees", + "title": "Housebuyersofamerica", + "targetUrl": "www.housebuyersofamerica.com" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "UCZ9mWvmOvyi", + "name": "Buy Real Estate" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fae7efe5-eede-49f4-9bc7-7e2895994e25", + "name": "general", + "startAt": "2017-09-24T19:39:11.067Z", + "endAt": "2019-09-24T19:39:11.067Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6028cbe5-bdf4-4b15-8b00-5fef1a2591c5", + "creativeSets": [ + { + "creativeSetId": "e62fe8d0-457d-4e58-a142-07a3b91dbc0c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5d20015b-c658-47a7-bf6b-5e21f84ce24b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Interior Decorators - Find Local Professionals | houzz.com", + "title": "Houzz", + "targetUrl": "www.houzz.com/Interior-Design" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "T4rhcMPPBhp", + "name": "Home Décor" + } + ] + }, + { + "creativeSetId": "37dee17b-8b68-4cd8-a6b3-41bfbe48a658", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0b5035dc-c3c1-4277-80e6-d53d0a9d5d61", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Interior Decorators - Find Local Professionals | houzz.com", + "title": "Houzz", + "targetUrl": "www.houzz.com/Interior-Design" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "iOSOYZ7Fm9M", + "name": "Home Decorating" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d82cca03-1246-4e72-9ec4-0ba422d41f8b", + "name": "general", + "startAt": "2017-09-24T19:39:12.182Z", + "endAt": "2019-09-24T19:39:12.182Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "80935c14-f73c-4d0d-bd4b-0f73fef37b39", + "creativeSets": [ + { + "creativeSetId": "9090b128-855a-4926-b07b-2bd26f230559", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2cb306ca-9115-4fb2-991e-cb027b443320", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "H&R Block® Official Site - Free Federal Tax Filing", + "title": "Hrblock", + "targetUrl": "www.hrblock.com/Tax-Help/File-Your-Way" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "25hWYRpip_l", + "name": "Turbo Tax" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d786bf7e-891d-4dc1-8711-d31157558395", + "name": "general", + "startAt": "2017-09-24T19:39:12.772Z", + "endAt": "2019-09-24T19:39:12.773Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9c907aa-8e46-4f25-852e-bc186e3cf77f", + "creativeSets": [ + { + "creativeSetId": "7cea4f88-6441-4f10-89d5-418898d91f1f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f4895100-7215-45cf-8e46-76d2909f0fb7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hubert® Official. Leader in - Restaurant Supply Innovation", + "title": "Hubert", + "targetUrl": "www.hubert.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "kORnSRyr0FJ", + "name": "Metalwork Supplies" + } + ] + }, + { + "creativeSetId": "7b6b6355-e3b9-4b8f-a9a8-11c9ab9665be", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "818e001d-ba45-424d-84e5-b3cfea07716b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hubert ® Official Site. #1 - Food Service & Food Retail", + "title": "Hubert", + "targetUrl": "www.hubert.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "5nUrFtckCYM", + "name": "Kayaking Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "75f7ea47-73ff-4cec-aa0b-75045efc4128", + "name": "general", + "startAt": "2017-09-24T19:39:13.730Z", + "endAt": "2019-09-24T19:39:13.730Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8ff9c123-1b82-4f7c-8d2b-3a90c73ade09", + "creativeSets": [ + { + "creativeSetId": "c1470504-374d-48ce-9adb-bce6f7c893db", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "956e00ac-3faf-451e-805d-a16f9035009f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "HUD Homes for Sale - As Low As $10,000", + "title": "Hudforeclosed", + "targetUrl": "www.hudforeclosed.com" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "UCZ9mWvmOvyi", + "name": "Buy Real Estate" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "55f8d29e-9338-4d76-bb8a-db49ed2c607b", + "name": "general", + "startAt": "2017-09-24T19:39:14.319Z", + "endAt": "2019-09-24T19:39:14.320Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e187cbb0-9537-4800-97bb-9a8d7dd35443", + "creativeSets": [ + { + "creativeSetId": "5f206ceb-af46-4d35-be07-4d18208fad63", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9ad03b3d-9498-4688-868b-3f414436b2b5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hulu Official Site | TV Just for You | hulu.com", + "title": "Hulu", + "targetUrl": "www.hulu.com/FreeTrial" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "mRgPV84LYAT", + "name": "Stream Movies" + } + ] + }, + { + "creativeSetId": "70d7f5a4-44d8-4794-9576-84748e63f607", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ce2a5e5b-8eca-441a-86ef-7b2cfd98b103", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Watch Live Sports on Hulu Live - More Than Just Live TV", + "title": "Hulu", + "targetUrl": "www.hulu.com/HuluLive/Sports" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FeUOoTDKpRGk", + "name": "Sports Live" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "634320ca-e4fe-43d2-8f4f-cb96aaaf76ce", + "name": "general", + "startAt": "2017-09-24T19:39:15.198Z", + "endAt": "2019-09-24T19:39:15.198Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "66037c67-718e-42ad-a186-43db7586ec5c", + "creativeSets": [ + { + "creativeSetId": "30fc977d-64ff-4d77-a9a5-bc1af4cffc34", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8aa3821a-ce62-477f-8314-2c37339bcd81", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hunt's?? 100% Natural Tomatoes - Quality You Can Taste", + "title": "Hunts", + "targetUrl": "www.hunts.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "5rrqOyiLvSS", + "name": "Hunting Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7d2e3940-1b07-4d1a-b5b2-8379b3b5fd75", + "name": "general", + "startAt": "2017-09-24T19:39:16.007Z", + "endAt": "2019-09-24T19:39:16.007Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7efc7223-02a5-441e-a650-e4445ba225ed", + "creativeSets": [ + { + "creativeSetId": "476011da-64f0-4610-a6f3-964effa4b5a1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "156d2843-f2f0-485b-ba3c-c3e3a77b2bb8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Biomedical Employment | iHireBiotechnology.com", + "title": "I Hire Biotechnology", + "targetUrl": "https://www.ihirebiotechnology.com/ppc/se/employment?&ct=61&ctname=Biomedical&ihirematch=b&creative=181756834&utm_medium=cpc&utm_content=MICROSOFT&utm_campaign=BIO&adgroup=BIO+-+Biomedical+Employment&searchterm=Biomedical+employment&searchquery=biomedical&device=c&msclkid=8314ee3b3b1917202c3bb443d13d85bb&utm_source=bing&utm_term=Biomedical%20employment&gclid=COnyipb4j9kCFQmEfgodjJAPEA&gclsrc=ds#!/search/c=employment&loc=94550&d=75&k=Biomedical&o=14&ct=61&searchtype=page-load" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "yyoKO-EjEOyY", + "name": "biomedical" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d3f2f437-270e-4b5b-b2dc-a7aabfa48ac1", + "name": "general", + "startAt": "2017-09-24T19:39:16.650Z", + "endAt": "2019-09-24T19:39:16.650Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "24077673-a01d-4f88-a8ce-2b330796dc08", + "creativeSets": [ + { + "creativeSetId": "eb66e787-6542-4af0-9fd5-f7e9475c2354", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6baeae62-ea39-418a-ad48-ea9d3bf578ff", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Investigation Case Management - Improve Your Investigations", + "title": "I-sight", + "targetUrl": "i-sight.com/Investigation/Software" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "P9Lfpxf-FV6", + "name": "Management Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "08587b7a-0cc3-4290-86f0-d1d7c75b4121", + "name": "general", + "startAt": "2017-09-24T19:39:18.277Z", + "endAt": "2019-09-24T19:39:18.277Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a22348f7-e0e8-4882-939b-eafeaf0096ee", + "creativeSets": [ + { + "creativeSetId": "c9b7867e-5613-43fc-a704-d0c6515b207c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e9b14ffc-c4b2-4834-a99e-6080464e4dcc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Outdoor Kitchen Bbq Grills. - Outdoor Kitchen Bbq Grills.", + "title": "Idealhomegarden", + "targetUrl": "idealhomegarden.com/bbq grills" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "w2RZcyzoMxq", + "name": "Barbecues" + } + ] + }, + { + "creativeSetId": "dc2c28af-12ba-4921-8957-025b8177e2d4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b4942aca-daf0-4cfe-8016-cec9d62201b6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Artificial Lawns Cost. - Artificial Lawns Cost.", + "title": "Idealhomegarden", + "targetUrl": "idealhomegarden.com/lawns cost" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "u3b4RF02Ctr", + "name": "Artificial Lawns" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "21b57096-3ba5-4f3e-8c5d-5b4c30bfc6a1", + "name": "general", + "startAt": "2017-09-24T19:39:19.181Z", + "endAt": "2019-09-24T19:39:19.181Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b2a48a37-5f32-4731-98a9-078340d78f1b", + "creativeSets": [ + { + "creativeSetId": "4ae59840-1ee2-4055-a787-e06db5d59a82", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dff34cc2-cf48-40c9-af81-ff773aa16643", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Search New Accounting Jobs - on iHireAccounting.", + "title": "IHireA", + "targetUrl": "www.iHireAccounting.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "2YtFT0-MFv1", + "name": "Job Search" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d5f0bde1-dc48-46dd-83ec-2a135cea8beb", + "name": "general", + "startAt": "2017-09-24T19:39:19.965Z", + "endAt": "2019-09-24T19:39:19.966Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d16daf6f-d116-4b51-ad8f-801ed53fcbd4", + "creativeSets": [ + { + "creativeSetId": "3d1552ef-bc0d-4818-8d57-37a22b480916", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3a866f4b-c4e8-4c93-98ea-ddeed1e276d4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Inventory Software | iMagicInventorySoftware.com", + "title": "IMagicInventorySoftware", + "targetUrl": "www.iMagicInventorySoftware.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "2QJW6dTCw6z", + "name": "Inventory Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c62b188a-5832-4509-ae14-915ba89e0391", + "name": "general", + "startAt": "2017-09-24T19:39:20.530Z", + "endAt": "2019-09-24T19:39:20.530Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d01504d5-815d-4a4b-9ff9-5a3b85215259", + "creativeSets": [ + { + "creativeSetId": "40316bdf-c01d-4ef3-ba69-3a757ff547b9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "52375fc4-8afd-4e28-8176-28b3dedb12d1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Homebrewing Yeast | Organic Brewing Yeast‎", + "title": "Imperialyeast", + "targetUrl": "www.imperialyeast.com/where-to-buy ‎" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "sSHTp7EuwPZ", + "name": "Brewery Kits" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5ef20489-4016-4e99-877b-eb61bbd37994", + "name": "general", + "startAt": "2017-09-24T19:39:21.106Z", + "endAt": "2019-09-24T19:39:21.106Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b4ebd6bf-9467-4769-bd8f-41ddbc473cc9", + "creativeSets": [ + { + "creativeSetId": "0d4b5057-625c-42b0-8be5-f106de5755ec", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3abe4924-9fc1-43cf-b146-2e2173baa9c5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find Quick & Easy Egg Recipes - The Incredible Egg", + "title": "Incredibleegg.org", + "targetUrl": "incredibleegg.org/Recipes" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "9Roh9lJ0tSd", + "name": "Cooking Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f8f2f751-246e-4863-aaa3-b60f29e25731", + "name": "general", + "startAt": "2017-09-24T19:39:22.033Z", + "endAt": "2019-09-24T19:39:22.034Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "38527001-be98-49d9-99f5-6c2210e9aad7", + "creativeSets": [ + { + "creativeSetId": "5486ef9f-4cf1-40d5-b093-8089d6605c8b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3c02b6de-6f9d-43e5-a551-ad28fe31810f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Search For Greatness On Indeed - Find Your Next Contractor Job.", + "title": "Indeed", + "targetUrl": "www.indeed.com/Contractor" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "9Alas5QGK_f", + "name": "Contractor Jobs" + } + ] + }, + { + "creativeSetId": "f3ecd825-8729-4664-a733-1df8c2463d17", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5efc78ac-2583-4440-a655-287e5eea98f9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find Jobs In Your Area | indeed.com", + "title": "Indeed", + "targetUrl": "indeed.com/Job+Search" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "2YtFT0-MFv1", + "name": "Job Search" + } + ] + }, + { + "creativeSetId": "867545c6-f939-439a-b871-f589d7ac722e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bb0fbbf7-0dda-467f-9b00-6d3e3d7120be", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find Worker - Indeed.com | indeed.com", + "title": "Indeed", + "targetUrl": "indeed.com/hire" + } + } + ], + "segments": [ + { + "code": "6QLcn3Fnca-", + "name": "Careers" + }, + { + "code": "AkN_-chsgWP", + "name": "Find Work" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fc05866a-ad2b-46eb-bb63-ad40f429e226", + "name": "general", + "startAt": "2017-09-24T19:39:23.128Z", + "endAt": "2019-09-24T19:39:23.128Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1c23f58c-108c-4e56-a3e0-e3ffbc3ca66b", + "creativeSets": [ + { + "creativeSetId": "27d94d90-9ce8-4c46-840c-afdd99d8a712", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ed2daf7e-2b13-481f-a95f-b45144b32ce8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2018 Health Insurance Plans - (Free Quotes)", + "title": "Individualhealthquotes", + "targetUrl": "www.individualhealthquotes.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mltw3XEd08nw", + "name": "Health & Fitness Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2f128fbb-7e4e-478a-99c4-d1ac6c900ea0", + "name": "general", + "startAt": "2017-09-24T19:39:23.950Z", + "endAt": "2019-09-24T19:39:23.950Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9e3c40b7-6073-401b-9e36-46e3a2a49c40", + "creativeSets": [ + { + "creativeSetId": "8dbaaaa8-696d-4156-8c0d-e3f3c51e3436", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cdb2c557-a08f-4a82-9125-c0dd23885de8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Metal On Line - Top Social Media Results - info.com", + "title": "Info", + "targetUrl": "www.info.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "70IAZkzKPe0E", + "name": "Online metals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "72f1978a-719b-4049-8256-7ba504eec941", + "name": "recipes", + "startAt": "2017-09-24T19:39:24.284Z", + "endAt": "2019-09-24T19:39:24.284Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9e3c40b7-6073-401b-9e36-46e3a2a49c40", + "creativeSets": [ + { + "creativeSetId": "d442da85-9ad0-4e20-8b0f-a0e9ab3fa397", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0384a491-79c8-4d3f-8b6f-578338932416", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Recipes For Drinks With Rum - Recipes For Drinks With Rum", + "title": "Info", + "targetUrl": "www.info.com/Recipes For Drinks With Rum" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "EpjpWnjpgxV", + "name": "Drink Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9e82e4c2-7058-4ed1-b17a-42e08899dd55", + "name": "hobbies", + "startAt": "2017-09-24T19:39:24.637Z", + "endAt": "2019-09-24T19:39:24.637Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9e3c40b7-6073-401b-9e36-46e3a2a49c40", + "creativeSets": [ + { + "creativeSetId": "7a989219-9d97-4c8a-a8d4-58809925f840", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4cfb1dc4-3a0a-4c96-8083-66200af40f10", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Discounted Board Games - Top Social Media Results", + "title": "Info", + "targetUrl": "www.info.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "y-dD1TIXfNn", + "name": "Board Games" + } + ] + }, + { + "creativeSetId": "37ce6345-fa38-46d8-a963-aa5480bdc0b2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ae5cb861-f8e7-466b-86c3-41aea30d306f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sewing Suplies - Top Social Media Results", + "title": "Info", + "targetUrl": "www.info.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "93bPE8nabJd", + "name": "Sewing Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f0355bbb-fc45-4e93-810a-6785c539d6b8", + "name": "pets", + "startAt": "2017-09-24T19:39:25.220Z", + "endAt": "2019-09-24T19:39:25.220Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9e3c40b7-6073-401b-9e36-46e3a2a49c40", + "creativeSets": [ + { + "creativeSetId": "3bc2ef3e-3dfa-4b09-aa36-3dd1f8552fea", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cc89bc1d-125f-4f46-a201-b5c182012890", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Birding Stores - Info from Multiple Engines", + "title": "Info", + "targetUrl": "www.info.com" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "S2jGIYx0-6x", + "name": "Bird Store" + } + ] + }, + { + "creativeSetId": "e42c911f-9ea3-477e-9160-8481f38d4567", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "33316450-f58e-4f48-ada8-1807198a799e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Reptile Aquariums - Reptile Aquariums", + "title": "Info", + "targetUrl": "www.info.com/Reptile Aquariums/results" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "rH6iVpeEME2", + "name": "Reptile Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f14b43f1-db57-4f99-9a87-84068e721d6d", + "name": "school", + "startAt": "2017-09-24T19:39:25.919Z", + "endAt": "2019-09-24T19:39:25.919Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9e3c40b7-6073-401b-9e36-46e3a2a49c40", + "creativeSets": [ + { + "creativeSetId": "73503fe2-9d81-47c4-949b-e1c790c986ab", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "68382896-b66c-479f-8577-174fe5aceabc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Book On Physics - Info from Multiple Engines", + "title": "Info", + "targetUrl": "www.info.com" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "AQ9eV3TbmJq", + "name": "Physics Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4e02e439-613c-477c-bb99-828602b6660c", + "name": "tech", + "startAt": "2017-09-24T19:39:26.248Z", + "endAt": "2019-09-24T19:39:26.248Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9e3c40b7-6073-401b-9e36-46e3a2a49c40", + "creativeSets": [ + { + "creativeSetId": "549fbab1-205e-4036-a38a-7fe7c5b53529", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6f9c0d09-fdad-4891-843b-42b7a5753d51", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Try ConnectWise Automate Free - Formerly LabTech Software", + "title": "Info", + "targetUrl": "info.connectwise.com/Software/Automate" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "mAWzKREQPg8", + "name": "Automation Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4541b085-6d47-4ce9-90c6-a30a37f155d2", + "name": "general", + "startAt": "2017-09-24T19:39:26.832Z", + "endAt": "2019-09-24T19:39:26.832Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a126fac3-4246-4755-b2c3-d26562170496", + "creativeSets": [ + { + "creativeSetId": "764eb29c-6b0c-4a84-8e92-0b1e5c305da1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1891847c-6e43-4223-9c62-98b77218b692", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Social media analytics - Stay on Top of Your KPIs", + "title": "Info.datorama", + "targetUrl": "info.datorama.com" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "UBXGkQ3Bdgz4", + "name": "Social Media Analytics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "430c4a1a-364b-4c1e-9062-17d82d3e932b", + "name": "general", + "startAt": "2017-09-24T19:39:27.431Z", + "endAt": "2019-09-24T19:39:27.431Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "857240a5-0d9a-41ae-9af9-bf75b7a80cb3", + "creativeSets": [ + { + "creativeSetId": "c6475717-6560-4e4c-ac7c-23f6dbf3b008", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a3d90497-ce6d-449b-819f-80cc34a7b4be", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Diamond Forestry Mulcher - Free Forestry Teeth Offer", + "title": "Info.diamondmowers", + "targetUrl": "info.diamondmowers.com/attachments/2018-promotion" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "A7P6uoAIgzo", + "name": "Forestry Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "37608607-d071-4a77-9b77-32893b2c1d6c", + "name": "general", + "startAt": "2017-09-24T19:39:27.987Z", + "endAt": "2019-09-24T19:39:27.987Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c1537ca3-cd67-4844-b2ce-2049f1fdd846", + "creativeSets": [ + { + "creativeSetId": "f6f6e39f-6082-41b3-a96f-774195628cc4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5c9072da-f40e-4305-ac27-3123bee8f8f9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Digital River Ecommerce - Go Direct. Go Global.", + "title": "Info.digitalriver", + "targetUrl": "info.digitalriver.com/Ecommerce/Solutions" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "zgMSYI-gfMo", + "name": "eCommerce Websites" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "54e19a45-ae50-4753-b957-e7770d27a35d", + "name": "general", + "startAt": "2017-09-24T19:39:28.571Z", + "endAt": "2019-09-24T19:39:28.571Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5c55046a-de18-46d9-ba92-869cefdcddae", + "creativeSets": [ + { + "creativeSetId": "4e8be606-bdc8-4404-9edc-0b6541fa2949", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "47888865-323c-4f5c-9ae3-5cb0d14cc0fe", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Geography Tutoring - Geography Tutoring", + "title": "Info.dogpile", + "targetUrl": "info.dogpile.com/Geography Tutoring/results" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "wz0LfYE3w8k", + "name": "Geography Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "22c008fb-ee29-4416-b162-9d0c0d7fcbc9", + "name": "general", + "startAt": "2017-09-24T19:39:29.161Z", + "endAt": "2019-09-24T19:39:29.161Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "809038d4-0ddf-489c-ac78-b2e8f3dad1b4", + "creativeSets": [ + { + "creativeSetId": "d93f291b-7106-4bcd-a09b-40fb84482821", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5a8bfdf7-babf-441c-a935-b29b61d5689e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dorrance Publishing Company - Book Publishers", + "title": "Info.dorrancepublishing", + "targetUrl": "info.dorrancepublishing.com/Submissions" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "KjrAF8XxEDc", + "name": "Book Publishing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "638132ba-ab1f-482f-946d-d5b94b6b0d94", + "name": "general", + "startAt": "2017-09-24T19:39:29.740Z", + "endAt": "2019-09-24T19:39:29.740Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2df1357c-595c-4366-8ee2-adeb6ff10481", + "creativeSets": [ + { + "creativeSetId": "84cf2bdd-036a-42be-a9de-993a278bc0c1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4eb04f41-867d-4b6c-a2b8-5751a2801d01", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Boldly Fighting Depression - #GoBoldly Into Hope", + "title": "Innovation", + "targetUrl": "Innovation.org/Depression" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "ZYCLaYR2JuLH", + "name": "Depression Treatment" + } + ] + }, + { + "creativeSetId": "c86dae86-9d7c-4b55-98f8-2857eedf771c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "814a4072-7dc2-425e-bda9-672bdd2895ff", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Boldly Fighting HIV/AIDS - Advancements in Research", + "title": "Innovation", + "targetUrl": "Innovation.org/HIV-AIDS" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "ljRVUx5AHbA", + "name": "Hiv Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bf09221a-ff2b-4bb8-ab98-d8b8c04b2544", + "name": "general", + "startAt": "2017-09-24T19:39:30.613Z", + "endAt": "2019-09-24T19:39:30.613Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ba166e53-80b6-4483-827a-d7732c70310d", + "creativeSets": [ + { + "creativeSetId": "09249f45-53f1-4228-a32f-c40bc9b01a5c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5a80c17c-64e5-4aa2-a6fc-5b64d359ebf6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Simplest Photo Editor Ever - Whatever you want in a minute", + "title": "Inpixio", + "targetUrl": "www.inpixio.com/magic/PhotoClip" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "IdSgRp0c7Tn", + "name": "Stock Photos" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ab8e3d3c-9b2a-4218-89fd-316c2e0d3d2d", + "name": "general", + "startAt": "2017-09-24T19:39:31.174Z", + "endAt": "2019-09-24T19:39:31.175Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9bf063d-ea7f-405b-95af-e469181e0812", + "creativeSets": [ + { + "creativeSetId": "1b9fa521-eb97-45d7-a4b8-6397b43e777d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ac559647-56bd-40f9-9430-47c6097c5730", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Create Online eBooks - Start a Free 7 Day Trial", + "title": "Instantmagazine", + "targetUrl": "www.instantmagazine.com/Create Online/eBook" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "Fd-YZYI1wwN", + "name": "Online Ebooks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b78a0555-ba1b-4886-8377-ab4039e26988", + "name": "general", + "startAt": "2017-09-24T19:39:31.890Z", + "endAt": "2019-09-24T19:39:31.891Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8e3239ba-285b-4195-a6af-97287baf5780", + "creativeSets": [ + { + "creativeSetId": "80927a61-afd9-40ae-9dfc-a885a252e53a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "924d25da-0899-4ab7-9c5f-dc6190c19426", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "New 2018 Laptops & PCs - Do More Than You Can Imagine", + "title": "Intel", + "targetUrl": "www.intel.com/YouCould" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "1Uk9lOnHZczB", + "name": "Computer Repairs" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b9ba9a6b-9c30-45fa-b41d-bd51377ba25e", + "name": "general", + "startAt": "2017-09-24T19:39:32.475Z", + "endAt": "2019-09-24T19:39:32.476Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1c7ff816-95c6-4f21-99ad-b212d0c55b08", + "creativeSets": [ + { + "creativeSetId": "187f46bc-869b-493e-81de-db490c0a5771", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a814d4e3-d152-4a06-98dc-d59c2f512147", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "International Dating Site - Meet 700,000+ Foreign Beauties", + "title": "Internationalcupid", + "targetUrl": "www.internationalcupid.com/Join-Free" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "tEYym_TVzMg", + "name": "Christian Meet" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0fd5baa4-a7f1-406a-87c0-969dc03e3a6d", + "name": "general", + "startAt": "2017-09-24T19:39:33.059Z", + "endAt": "2019-09-24T19:39:33.059Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "13bf4309-7da6-449b-bb8d-0b8cb384b904", + "creativeSets": [ + { + "creativeSetId": "a1ba497e-d9b0-4271-a80f-596f73ef0abe", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "238b73c1-694a-4f32-8c5c-dd7401f0de5f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Big Trucks For Sale By Owner - For Sale - Low Starting Prices", + "title": "Ironpl", + "targetUrl": "www.ironplanet.com" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "b4xuJT0IZ_f", + "name": "Used Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "37cddb62-381f-4952-95f6-da3009dc889a", + "name": "general", + "startAt": "2017-09-24T19:39:33.749Z", + "endAt": "2019-09-24T19:39:33.749Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4bc1d4e6-0f33-4a99-bc4a-59ecd3246e03", + "creativeSets": [ + { + "creativeSetId": "7f716ba3-fd29-4cfd-8b0d-93298e0081c6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3765e3b9-ce56-48b8-9101-aca1270bcf4f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Have Questions About HIV? - Find Basic HIV Info Here", + "title": "Isenttress", + "targetUrl": "https://www.isentress.com/raltegravir/isentress/consumer/about_hiv1/?utm_source=bing&utm_medium=cpc&utm_campaign=HIV%20Awareness%20%26%20Consideration%20%7C%20Exact&utm_term=hiv%20aids&utm_content=HIV%20General%20(Exact)&gclid=CMG1_7KLkNkCFc4EfwodkuACMQ&gclsrc=ds&dclid=CI2fgrOLkNkCFY6TfgodJpoNGg" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "SqrCTdSD7NRk", + "name": "aids hiv" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9936a0dd-91ab-42b1-961d-11f7a720a52e", + "name": "general", + "startAt": "2017-09-24T19:39:34.402Z", + "endAt": "2019-09-24T19:39:34.402Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "df1fb7de-ceee-44c1-afbb-ad47e97d7f3c", + "creativeSets": [ + { + "creativeSetId": "7c6e9c1d-77e3-439b-b19d-cbf32bf2f387", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ba244cf1-2b6c-4f47-b23d-ebea92eca3f6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "iStock Photos - iStockphoto.com", + "title": "iStock Photos", + "targetUrl": "https://www.istockphoto.com/?esource=SEM_IS_BI_US_Photo_Generic_EN_Exact&kw=US_Photo_Exact_photo_e&kwid=s_43700009874864727_dc&pcrid=11479524247&msclkid=2680d22f330214c1946f885aa0a4456a&gclid=CLDljqLJidkCFe2rZQodzvQBjQ&gclsrc=ds&dclid=CL7ol6LJidkCFY3JZAodSlYF5g" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "n5f4j_BIsKV_", + "name": "photography" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9a0df4cb-b3fc-4086-ba20-beddd9f7231d", + "name": "general", + "startAt": "2017-09-24T19:39:35.029Z", + "endAt": "2019-09-24T19:39:35.029Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1db7328f-16eb-4278-bef0-537fedf3d082", + "creativeSets": [ + { + "creativeSetId": "6300b2f4-5e0f-4c98-9c02-1b71ae6fe843", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "15744bd0-14f9-46b9-a331-fd8c5cf61988", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "iStock™ Official Site - Stunning Exclusive Imagery", + "title": "Istockphoto", + "targetUrl": "www.istockphoto.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "IdSgRp0c7Tn", + "name": "Stock Photos" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "84488cbd-73bb-4259-b7d2-bdf50eea3951", + "name": "general", + "startAt": "2017-09-24T19:39:35.669Z", + "endAt": "2019-09-24T19:39:35.669Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2f6723f2-da12-4371-abac-05cd0083e3ab", + "creativeSets": [ + { + "creativeSetId": "ff9e4f79-257c-420f-af87-0d6f5f1b97d3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3cfdbac0-247e-429e-9313-ca641cd39479", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Get Your Book Published - Your Foundation for Success", + "title": "Iuniverse", + "targetUrl": "www.iuniverse.com/Book/Publishing" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "KjrAF8XxEDc", + "name": "Book Publishing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6264d949-08ac-4052-870b-1cd86713024b", + "name": "general", + "startAt": "2017-09-24T19:39:36.228Z", + "endAt": "2019-09-24T19:39:36.228Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d2b885bb-d6cd-4ba7-9168-274d567bfe04", + "creativeSets": [ + { + "creativeSetId": "fa533c12-edbf-4207-9ce5-95b0db997e01", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8bb333b1-672d-495b-9e08-4cafe89b4e16", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Basic Math Online - Unlimited Math Skills Practice", + "title": "Ixl", + "targetUrl": "www.ixl.com/math" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "o7RiTeSPDIyu", + "name": "Mathematics worksheets" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "36d4c768-4c82-48dd-8cfa-3c5c617568f6", + "name": "general", + "startAt": "2017-09-24T19:39:36.805Z", + "endAt": "2019-09-24T19:39:36.806Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e5a091e4-2b3c-4717-bb9a-c487253544ee", + "creativeSets": [ + { + "creativeSetId": "dacd4259-1b94-4d34-a335-f3276343c871", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c8437060-d2f8-4670-8d6b-d61b7b75ebc8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "JANUVIA® (sitagliptin) - Official Product Site", + "title": "Januvia", + "targetUrl": "https://www.januvia.com/sitagliptin/?MTD=2&ENG=2&CMP=3&ADG=9&GCN=2&utm_source=bing&utm_medium=cpc&utm_campaign=Januvia%20_Unbranded%20in%20Brand_UNBB_NA_EDUC_MULTI_TEXT_A35%2B&utm_term=diabetics&utm_content=Unbranded%20in%20Brand&utm_kxconfid=sgaivj8q4&msclkid=c9a0653ea72f15de67803f465944e10c&gclid=CIj_iMGLkNkCFSEZfgod500Ovg&gclsrc=ds" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "fDYszmoQIm3S", + "name": "diabetes" + } + ] + }, + { + "creativeSetId": "22ff0a02-879d-43b7-a5c8-afad861826df", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7c4f4223-7676-4a73-9601-1e36745f4d0c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "JANUVIA® (sitagliptin) - Official Product Site", + "title": "Januvia", + "targetUrl": "www.januvia.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "VSR0lepFE8Hw", + "name": "Diabetes Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8a681c71-127d-487d-8cc6-e43b78b75409", + "name": "general", + "startAt": "2017-09-24T19:39:38.010Z", + "endAt": "2019-09-24T19:39:38.010Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6ff5d5cc-6418-4a09-9caa-e1ad6357d25b", + "creativeSets": [ + { + "creativeSetId": "b8217730-83ce-407e-8c89-d294fcfbda4d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dca7ea95-523a-4068-b968-150ab07e33d8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Penny Stocks Free Masterclass - Training Lesson Starting Now | JasonBondPicks.com", + "title": "Jason Bond Picks", + "targetUrl": "https://www.jasonbondpicks.com/lp/webinar/?refsrc=9081&msclkid=01ce9d639d0a12b2ab9ec711a44c85a4&utm_source=bing&utm_medium=cpc&utm_campaign=Campaign%20001&utm_term=getting%20into%20penny%20stocks&utm_content=Penny%20Stocks" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "5vPJWdHAEMlr", + "name": "stocks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "982896b4-aa87-4e2d-ae15-830657032521", + "name": "home", + "startAt": "2017-09-24T19:39:38.586Z", + "endAt": "2019-09-24T19:39:38.588Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2ef7fc3c-80a4-4e99-96db-c5fe7ca52738", + "creativeSets": [ + { + "creativeSetId": "dcd27570-129b-48d5-9115-3b0a667ff660", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ba9708bb-90e7-4f99-b9a4-05aba5c35f86", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Décor at JCPenney® - Save 25% With Coupon Today!", + "title": "Jcpenney", + "targetUrl": "https://www.jcpenney.com/g/home-decor/N-bwo3vD1nohp2?pageType=X2H2&utm_source=bing&utm_medium=cpc&utm_campaign=paid%20search&cid=paid%20search%7cbing%7cM_Home_Decor%7cM_Home_BMOD&msclkid=e4e79de95b871a3c7904c79b62222dd6&gclid=COmHjoGXg9kCFZddfgodZCYK9g&gclsrc=ds&dclid=CITLkIGXg9kCFQLaZAod8ewFaQ" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "E0hdPaG4PZWP", + "name": "home" + } + ] + }, + { + "creativeSetId": "eb28e3e5-4527-4281-960f-5c00eb5d2839", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a147ca1f-40af-45f0-b686-8d9deb8b6554", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Appliances at JCP® - Up to 40% Off on Appliances", + "title": "Jcpenney", + "targetUrl": "www.jcpenney.com/HomeAppliances" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "mkmN9m3WHmgP", + "name": "Home Appliances" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c179d517-12d1-40c6-a01d-7fee4c4c695a", + "name": "clothing", + "startAt": "2017-09-24T19:39:39.168Z", + "endAt": "2019-09-24T19:39:39.169Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2ef7fc3c-80a4-4e99-96db-c5fe7ca52738", + "creativeSets": [ + { + "creativeSetId": "e7101159-506b-4bde-a5f0-93b015177c88", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a73e7da2-1291-4d56-9bc6-0afd24152e7f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Spring Clothes at JCP® | Save on Great Brands at JCP‎", + "title": "Jcpenney", + "targetUrl": "www.jcpenney.com/SpringClothes ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "obV7ryiIRW4", + "name": "beauty" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9d40e2db-eba6-4492-9ad4-ba108ce74092", + "name": "hobbies", + "startAt": "2017-09-24T19:39:39.693Z", + "endAt": "2019-09-24T19:39:39.694Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2ef7fc3c-80a4-4e99-96db-c5fe7ca52738", + "creativeSets": [ + { + "creativeSetId": "9a00d2f7-86f4-42a3-829c-3b7ca2f4bd29", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "49a92ef9-9276-44e1-b917-f4c99660f070", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Board Games at JCPenney® – Save on Great Brands at JCP", + "title": "Jcpenney", + "targetUrl": "jcpenney.com/BoardGames" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "y-dD1TIXfNn", + "name": "Board Games" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "aaf98440-269d-4422-8982-aec6c64d92b8", + "name": "general", + "startAt": "2017-09-24T19:39:40.382Z", + "endAt": "2019-09-24T19:39:40.382Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5159e815-7db5-40a6-ad41-88c673bc785c", + "creativeSets": [ + { + "creativeSetId": "ac3370c5-fa19-46f1-bf4a-6b953faf2207", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "283b5713-50e9-4a8c-80ee-99f12eef7775", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Jerry's Ford of Leesburg - Your Local Ford Dealer.", + "title": "Jerrysfordleesburg", + "targetUrl": "www.jerrysfordleesburg.com/Ford" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "tGlEpkd2UFQ", + "name": "New Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "224437c5-0d0d-4325-9a52-0eb9b1ea238a", + "name": "general", + "startAt": "2017-09-24T19:39:40.951Z", + "endAt": "2019-09-24T19:39:40.952Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4fc13acf-e687-4ad5-9044-3fd6fdb7930e", + "creativeSets": [ + { + "creativeSetId": "6aab46d1-935d-4f5e-a014-2991625946c5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "90a5b709-87de-4ec9-8391-a5cf14d2bf42", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "JetBlue® - Official Site - Great Deals On Flights", + "title": "Jetblue", + "targetUrl": "www.jetblue.com/Deals" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "0LyFuY7_Cse", + "name": "Flight Deals" + } + ] + }, + { + "creativeSetId": "a9c70033-9a45-49b8-bfa4-0eaeffdcee39", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5562b723-39dd-43eb-ba98-286c22c6c881", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "JetBlue Vacations® - Great Deals On Hotel & Flight", + "title": "Jetblue", + "targetUrl": "www.jetblue.com/Vacations/Deals" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6gRfXQJbCmu", + "name": "Vacation Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2995f8b6-32ff-4b85-8269-70298d783d09", + "name": "general", + "startAt": "2017-09-24T19:39:41.833Z", + "endAt": "2019-09-24T19:39:41.834Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "69681c0c-a78a-4432-8e81-85ea5b93eabb", + "creativeSets": [ + { + "creativeSetId": "d17e7b94-b84c-4b00-846c-07b41c1bfd9c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bd85539b-726e-4a31-9116-393f1da05bfa", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bulk Pearls Wholesale - Beads & Pearls Supply", + "title": "Jewelryandfindings", + "targetUrl": "www.jewelryandfindings.com/pearls/jewelry" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "588adf10-c028-4582-8e38-b714ba01d557", + "name": "general", + "startAt": "2017-09-24T19:39:42.620Z", + "endAt": "2019-09-24T19:39:42.621Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b4ebeba4-d154-4b22-b0cc-9551c26e06e1", + "creativeSets": [ + { + "creativeSetId": "4ecc965a-c107-4eb3-9fdc-b15b88b9a5bb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "656c293b-fca8-4780-9e6b-32c6914cfeba", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "JJsHouse.com Official | JJsHouse.com", + "title": "JJsHouse", + "targetUrl": "JJsHouse.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "mDuvMtm0102", + "name": "fashion" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a6f85313-931a-4f47-84b6-b903e88253c0", + "name": "general", + "startAt": "2017-09-24T19:39:43.202Z", + "endAt": "2019-09-24T19:39:43.202Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cf75e6f2-0ce5-4395-8355-2e72620eab5c", + "creativeSets": [ + { + "creativeSetId": "04446f27-ef2b-4514-817a-92dc4e826128", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "26b6be91-d10f-463b-9384-67536917e385", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "JOANN Fabrics Sewing Supply - Order Online Today & Save Big.", + "title": "Joann", + "targetUrl": "www.joann.com/JOANN/Stores" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "93bPE8nabJd", + "name": "Sewing Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7f638acc-c497-49e9-9d1b-e9077a3a6828", + "name": "general", + "startAt": "2017-09-24T19:39:43.894Z", + "endAt": "2019-09-24T19:39:43.895Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d75a018b-1d83-4cc4-98ef-55ca920844c4", + "creativeSets": [ + { + "creativeSetId": "08643bf4-4468-492e-a787-5444f2aaf635", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "afc7464b-8030-4c1e-bcff-c2cfdcdb5ed7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "$21-45/Hr IT Jobs (Technology) - No Experience Needed (FT/PT)", + "title": "Job-engine", + "targetUrl": "www.job-engine.net/info-technology/jobs" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "9Alas5QGK_f", + "name": "Contractor Jobs" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0c3351d9-2f0c-48f0-8839-a9e82f689254", + "name": "general", + "startAt": "2017-09-24T19:39:44.477Z", + "endAt": "2019-09-24T19:39:44.477Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "991f7aa1-c29a-45c5-80f9-7bd35e14181f", + "creativeSets": [ + { + "creativeSetId": "b54ffa82-49db-4526-ac1d-5a3d17f2d9f9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "79f27c69-9673-4b9e-9148-6cfc290668a6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Biotech Openings - 14 urgent openings. Apply now", + "title": "Jobrapido", + "targetUrl": "us.jobrapido.com/Biotech Openings/Jobs" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "vPlAftFRlgO", + "name": "Biotech Business" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e918e13f-e67a-42e1-ae82-f699e36f6b11", + "name": "general", + "startAt": "2017-09-24T19:39:45.049Z", + "endAt": "2019-09-24T19:39:45.049Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "61c22c14-b624-47a0-bd3e-49a838575586", + "creativeSets": [ + { + "creativeSetId": "255b9cc6-77b3-48a9-abed-9612b420036c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ce160602-fd20-468e-b6c2-ccdec688c854", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Jobs Contract - $12-45/Hr (No Experience Req.) - Apply Today", + "title": "Jobs2careers", + "targetUrl": "www.jobs2careers.com/Contract" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "9Alas5QGK_f", + "name": "Contractor Jobs" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7443633b-1d0e-45ed-8d7d-bb554f57cb40", + "name": "general", + "startAt": "2017-09-24T19:39:45.779Z", + "endAt": "2019-09-24T19:39:45.779Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f48d8ce1-18c2-474e-af73-2b5a25557cfd", + "creativeSets": [ + { + "creativeSetId": "7ae344dc-71ec-4c8e-a265-c3487cad10fc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ed4bdf0d-51fb-4788-855d-9403d59442a8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Brewery Hiring - 6 Urgent Openings, Apply Now", + "title": "Jobsearch.jobsgalore", + "targetUrl": "jobsearch.jobsgalore.com/Brewery Hiring/New_jobs" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "sSHTp7EuwPZ", + "name": "Brewery Kits" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "87247f8a-9bbe-4b3c-9c75-06a416e66027", + "name": "general", + "startAt": "2017-09-24T19:39:46.393Z", + "endAt": "2019-09-24T19:39:46.393Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "539922e2-084f-48e6-a21a-5730d824c6a8", + "creativeSets": [ + { + "creativeSetId": "0af87c6d-d60f-486b-8d98-0a963fddee86", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "396f6380-70ec-44a3-9d12-ade2fd342c59", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Careers - New positions. Apply now | us.jobrapido.com", + "title": "JobsRapido", + "targetUrl": "http://us.jobrapido.com/Careers-jobs?r=auto&utm_source=yahoo&utm_medium=cpc&utm_campaign=US_EXPANSION_OCT17_SEARCH&msclkid=5053a33c027a1e1bd1b9f944deb24974" + } + } + ], + "segments": [ + { + "code": "6QLcn3Fnca-", + "name": "Careers" + }, + { + "code": "EJSDImae9xK1", + "name": "careers" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "55261d7a-29cd-419e-b692-d82065824319", + "name": "general", + "startAt": "2017-09-24T19:39:46.979Z", + "endAt": "2019-09-24T19:39:46.979Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "41cbaad4-ec46-4077-83ff-7d3b1aa20d9b", + "creativeSets": [ + { + "creativeSetId": "ffd19c15-b308-45bb-bbec-330063ef2ccf", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ff6ae3ad-e9f5-4914-9416-7a25ba590530", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "$14-31/Hr Local Jobs - No Experience Needed (FT/PT)", + "title": "Jobtomic", + "targetUrl": "www.jobtomic.com/job-openings/all-jobs" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "2YtFT0-MFv1", + "name": "Job Search" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "52ed2ded-a689-4a9e-ba4e-edf7f123065a", + "name": "general", + "startAt": "2017-09-24T19:39:47.577Z", + "endAt": "2019-09-24T19:39:47.577Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "841fd5b2-0db8-4218-80c0-1df81cce2f42", + "creativeSets": [ + { + "creativeSetId": "60203d57-0edc-4381-b933-fa93df126ea8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7acbded2-29c2-45b5-a58a-5d9ae02576a2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Kayak Supplies - Ocean Kayak® Official Website", + "title": "Johnsonoutdoors", + "targetUrl": "oceankayak.johnsonoutdoors.com/Accessories" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "5nUrFtckCYM", + "name": "Kayaking Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d6e95689-ac11-4fd3-942b-a0081a97dc86", + "name": "general", + "startAt": "2017-09-24T19:39:49.458Z", + "endAt": "2019-09-24T19:39:49.458Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f5e09dc2-1070-42fe-b8d5-27504e5cd90d", + "creativeSets": [ + { + "creativeSetId": "aa06ca1f-848b-435f-9540-36170af27569", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e0c9c22b-7120-4d47-9e5e-2e9f1063c9ef", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Never Search for Deals Again - Save on Millions of Products", + "title": "Joinhoney", + "targetUrl": "www.joinhoney.com/Daily/Deals" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "VulAzM57Pkqw", + "name": "Online Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5ce69c07-44e7-4943-8648-2fe1d92dc6f3", + "name": "general", + "startAt": "2017-09-24T19:39:50.039Z", + "endAt": "2019-09-24T19:39:50.039Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "20826869-8159-4c91-88d1-717260080d48", + "creativeSets": [ + { + "creativeSetId": "c1b10271-1763-43d8-a327-cab601c37fd8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1ba8feec-273b-4b75-b37c-ec340f8a0913", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "New 2018 Hip Pain Studies - Advanced Pain Relief Research", + "title": "Jointsalive", + "targetUrl": "jointsalive.com/pain-relief/research" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "RhUDc8iP5Xa", + "name": "Chronic Pain Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4c6e9b74-926d-4219-9a1b-fe6c355f3724", + "name": "general", + "startAt": "2017-09-24T19:39:50.590Z", + "endAt": "2019-09-24T19:39:50.591Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f5708f76-787e-4ea3-a4ce-b379042c6ab7", + "creativeSets": [ + { + "creativeSetId": "36a4cc87-dae5-4421-9494-0adedc30a9d2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c018e235-ccb0-4656-856b-a570497eebdb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Medals and Medallions - Prices as low as 69¢ each", + "title": "Jonesawards", + "targetUrl": "www.jonesawards.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "GElRy07ca5jr", + "name": "Cricket Medals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6834894f-5b31-4e52-a655-c8cf9666211b", + "name": "general", + "startAt": "2017-09-24T19:39:51.183Z", + "endAt": "2019-09-24T19:39:51.183Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ba073bdb-9548-4e27-bb4f-b6531f601adf", + "creativeSets": [ + { + "creativeSetId": "4e19ef91-e52b-4f6c-980c-a3084c6991eb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8467e0c3-47cf-4fa4-82b7-4e4251bec668", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Army Trial Lawyers | JordanUCMJLaw.com", + "title": "JordanUCMJLaw", + "targetUrl": "JordanUCMJLaw.com/Military-Crimes" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "E_MEtpVexy1", + "name": "Find a Lawyer" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "111150a9-98fb-4b65-b1f9-8a6a90dca75d", + "name": "general", + "startAt": "2017-09-24T19:39:52.104Z", + "endAt": "2019-09-24T19:39:52.105Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d666b77d-9af8-488a-87af-ed54bd9e2c07", + "creativeSets": [ + { + "creativeSetId": "8d292f9f-fa1c-49b4-a3a0-4b7a50200124", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a90ba12d-4c45-4e75-a8ca-ec283a985cc5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Juice Plus® Official Site - Farm-Fresh Quality Ingredients", + "title": "JuicePlus", + "targetUrl": "www.JuicePlus.com/JuicePlus/Omega" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "lFMT5ZDQdjc", + "name": "Juice Drinks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5ce444ee-cfb2-419c-af3c-fdf5670e5c35", + "name": "general", + "startAt": "2017-09-24T19:39:52.756Z", + "endAt": "2019-09-24T19:39:52.757Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3e0b7eb3-6707-4498-af8b-96f179da4750", + "creativeSets": [ + { + "creativeSetId": "63d6a59f-5f06-42c7-9388-f2d0b84bb44b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a372392c-d300-47b0-be0c-e9897fc2493a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Our Tech Startup Just Rebuilt - Investment Management Software", + "title": "Junipersquare", + "targetUrl": "www.junipersquare.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "P9Lfpxf-FV6", + "name": "Management Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cd4dd970-fc42-4a43-bef7-e84b349ef37f", + "name": "general", + "startAt": "2017-09-24T19:39:53.419Z", + "endAt": "2019-09-24T19:39:53.420Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "65898356-623f-433d-a3ce-78ca20a8f210", + "creativeSets": [ + { + "creativeSetId": "c135906d-8168-421e-b153-f76f2d64443a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e92fe68c-d560-442a-ae0b-7fdf0b252f4e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Ask a Lawyer Online Now - Legal help", + "title": "JustAnswer", + "targetUrl": "JustAnswer.com/Legal-Help" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "3kVpCcrPlDrA", + "name": "Legal Help" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b131df03-182a-4b59-a50c-50cbe192be3b", + "name": "general", + "startAt": "2017-09-24T19:39:54.204Z", + "endAt": "2019-09-24T19:39:54.204Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6a1b8474-dbfc-41be-8147-cfa9626e1850", + "creativeSets": [ + { + "creativeSetId": "078a7754-ec65-4710-870f-77b66a10dad3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4681becb-0654-4c3b-8726-5c3076dad7c7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Ask a Lawyer: Crime Law - Ask a Verified Expert Online.", + "title": "JustAnswer.com", + "targetUrl": "https://www.justanswer.com/sip/criminal-law?mkwid=eDUDygAo&pcrid=78065376065613&pkw=laws%20crime&pmt=be&" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "6bcGbqrck8Pz", + "name": "crime" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8ac6f6ef-83ba-4c83-8a33-90baf509870e", + "name": "general", + "startAt": "2017-09-24T19:39:55.305Z", + "endAt": "2019-09-24T19:39:55.305Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "23259e2f-c0d5-4fc2-b023-cd6aba8eec17", + "creativeSets": [ + { + "creativeSetId": "8dac5c64-2964-4ae7-81f8-f8e02574877e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b2d241d7-4e67-4e88-9568-037b525fff93", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Just Award Medals - Shop Now For Low Price Guarantee", + "title": "JustAwardMedals", + "targetUrl": "JustAwardMedals.com/Awards" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "GElRy07ca5jr", + "name": "Cricket Medals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cf2fe41e-93da-4ed3-93ab-21417494bae0", + "name": "general", + "startAt": "2017-09-24T19:39:55.944Z", + "endAt": "2019-09-24T19:39:55.945Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "97dc2f32-24fb-411d-a6c7-9a831d0461e2", + "creativeSets": [ + { + "creativeSetId": "70c97e32-ddd3-4535-9377-c1e519b5daa5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "805db48f-1c5c-41b3-835f-509804fb2994", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Trophies From $2.79", + "title": "K2Awards", + "targetUrl": "www.K2Awards.com/CheapTrophies" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "lUKHxt2iV2P9", + "name": "Fencing Trophies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4538e46e-bcbe-4f60-b2ca-b7cbe5a168f4", + "name": "general", + "startAt": "2017-09-24T19:39:56.510Z", + "endAt": "2019-09-24T19:39:56.510Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bb748d2e-f280-4d2e-a557-eadf4df96a1f", + "creativeSets": [ + { + "creativeSetId": "57bae033-f1ea-405d-b7f2-ff570f572f32", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fd1110dd-107d-4c29-8d30-117312a90571", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Multiple Dog Runs & Kennels - Complete Runs & Accessories", + "title": "K9kennelstore", + "targetUrl": "www.k9kennelstore.com" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "cJeWKlUNo4Y", + "name": "Dog Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a22abb6e-b232-4a7d-95c3-fbaa2cc8be59", + "name": "general", + "startAt": "2017-09-24T19:39:57.067Z", + "endAt": "2019-09-24T19:39:57.067Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "37b5dd3b-4bf9-4baa-844b-d3305673ef65", + "creativeSets": [ + { + "creativeSetId": "42410e39-1126-456f-9178-f159d4e8694b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "355c6172-6ef5-4e6c-876d-0339ced88729", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Costa Rican Luxury Surf", + "title": "Kalonsurf", + "targetUrl": "www.kalonsurf.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "nYUpPvk5Fx7s", + "name": "Surfing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d26aa80a-d15b-4dc3-bbc1-5244d3abde6e", + "name": "general", + "startAt": "2017-09-24T19:39:57.820Z", + "endAt": "2019-09-24T19:39:57.821Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "590da630-9085-4874-b967-b9c69cd16891", + "creativeSets": [ + { + "creativeSetId": "d80d7a0f-1f13-4e67-8377-a5f4a518d36f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9289f375-a639-4d26-a0db-23129152da96", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Book Travel Faster: KAYAK - We Search 100s of Sites at Once", + "title": "KAYAK", + "targetUrl": "KAYAK.com/Travel" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "VulAzM57Pkqw", + "name": "Online Deals" + } + ] + }, + { + "creativeSetId": "1e0636ee-f4cd-4950-a0ad-5fe4d1842f0d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "93c1bd62-ac0a-437d-a4c5-073c20776286", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find Flight Deals Faster | Don't Overpay for Your Flight", + "title": "KAYAK", + "targetUrl": "KAYAK.com/Flight-Deals" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "0LyFuY7_Cse", + "name": "Flight Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c0996484-16d4-421f-bf68-2cfb9f2a8655", + "name": "general", + "startAt": "2017-09-24T19:39:58.626Z", + "endAt": "2019-09-24T19:39:58.626Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d5e8e5e6-9b54-40e0-a1fc-79bff8580648", + "creativeSets": [ + { + "creativeSetId": "7fa004b3-3ab6-40f4-b01c-9fe6b6640f02", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "30f09f4b-454d-4925-b446-887102429090", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Search Travel Deals Now - Search 100s of Sites at Once.", + "title": "Kayak", + "targetUrl": "https://www.kayak.com/horizon/sem/kpack/general?lang=en&utm_campaign=Package+General+-+Exact&utm_content=Travel&utm_medium=cpc&utm_source=bing&utm_term=budget+travel&skipapp=true&gclid=-1&gclsrc=-1" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "V9vMN9vhPaGb", + "name": "budget travel" + } + ] + }, + { + "creativeSetId": "fdffb068-a85c-41f0-9600-44c5c727c269", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c7fb91bb-a06f-46c7-9775-7aa5f5fc4f2b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Great Hotel Deals in Las Vegas - Save up to 25% with KAYAK®", + "title": "Kayak", + "targetUrl": "www.kayak.com/Hotel-Deals/Las Vegas" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6mVE5rciM5p", + "name": "Hotel Deals" + } + ] + }, + { + "creativeSetId": "4f40b198-ce22-410c-933a-cbef7e81f008", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ab7e8897-9111-4ef2-9760-87f6cfaac39c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dubai Vacation Packages - Search 100s of Sites at Once.", + "title": "Kayak", + "targetUrl": "www.kayak.com/Vacations/Dubai" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "lvYt-vwY0ml", + "name": "Travel Tours" + } + ] + }, + { + "creativeSetId": "c96fede9-629d-49b7-958a-035c28975767", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7e152009-ac2e-4878-a96f-c6ccaa372612", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Vacation Package Deals - KAYAK® Vacation Deals - kayak.com", + "title": "Kayak", + "targetUrl": "www.kayak.com/Vacation Deals" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6gRfXQJbCmu", + "name": "Vacation Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b219a881-cc39-4965-a9ff-8cb7e6b86096", + "name": "general", + "startAt": "2017-09-24T19:40:00.371Z", + "endAt": "2019-09-24T19:40:00.371Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8020a799-e58e-428d-bdf5-32900bbd7ca5", + "creativeSets": [ + { + "creativeSetId": "8d61eb6a-004b-45fc-aa58-a132fbf49fc2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c04fddef-874b-421c-afdb-720222fa7783", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Kayaking In Kauai", + "title": "Kayakkauai", + "targetUrl": "www.kayakkauai.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "5nUrFtckCYM", + "name": "Kayaking Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ceb81c56-aa98-492d-a6c7-568642dc54fc", + "name": "general", + "startAt": "2017-09-24T19:40:00.957Z", + "endAt": "2019-09-24T19:40:00.957Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a28f8088-78d4-4d8a-8ac4-a507cb338454", + "creativeSets": [ + { + "creativeSetId": "cd38c9e3-cbbd-4bba-af97-4dfb446a8f21", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "49b5eb02-7302-4e2a-b68f-5f481d60a59c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Car Research", + "title": "KBB", + "targetUrl": "www.KBB.com" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "tGlEpkd2UFQ", + "name": "New Cars" + } + ] + }, + { + "creativeSetId": "b03002ad-099e-432e-9798-3ff98cc74f05", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a73243e2-4844-4326-8aed-8352e2695d74", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Car Research - KBB.com", + "title": "KBB", + "targetUrl": "www.KBB.com" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "b4xuJT0IZ_f", + "name": "Used Cars" + } + ] + }, + { + "creativeSetId": "60b4e625-bd25-4bc3-a925-4c1d35a456f8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "22f70a0a-6e59-465a-b698-024644d113cf", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rc Vehicles", + "title": "KBB", + "targetUrl": "www.KBB.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "eJu7bz6XQx4", + "name": "RC Vehicles" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fde02418-279e-4c10-8a6e-e2cdf8ab6ff7", + "name": "general", + "startAt": "2017-09-24T19:40:02.330Z", + "endAt": "2019-09-24T19:40:02.331Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c161dc91-dddc-41c9-b319-f51f59b7086b", + "creativeSets": [ + { + "creativeSetId": "1162d52f-2f4b-496c-94e8-b360f04a0139", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2c7fd85e-a312-4bfb-87ae-c065059c90ae", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Keiser University Online - Making Education Work For You", + "title": "Keiser", + "targetUrl": "keiser-education.com/Online/Info-Technology" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "rNd-q2umuLA", + "name": "IT Online Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "320b5f31-d3e9-4cf5-9d4e-9cd27eb6587f", + "name": "general", + "startAt": "2017-09-24T19:40:02.948Z", + "endAt": "2019-09-24T19:40:02.948Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "51c18c1e-7835-48b3-9ce3-429fb0c9edaf", + "creativeSets": [ + { + "creativeSetId": "323a8cae-b206-41a0-b265-fab6f14831d9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d4955b22-e9f5-4d7f-a88f-7f6aa82166fe", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Keiser University Online - Making Education Work For You", + "title": "Keisercation", + "targetUrl": "keiser-education.com/Online/Cyber-Forensics" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "ANs-xRChItO", + "name": "College Degrees Online" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6332c0df-ca05-48fd-8c67-39444e02aa48", + "name": "general", + "startAt": "2017-09-24T19:40:03.525Z", + "endAt": "2019-09-24T19:40:03.525Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b11dc87b-101e-46eb-88fe-602b96f80b59", + "creativeSets": [ + { + "creativeSetId": "961c440a-ae74-4a7e-8750-8b864c992066", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6fd8be30-b90a-4b4d-af99-1b03d6e34408", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Club® Crackers Recipes - Try Them All Today", + "title": "Kelloggsfamilyrewards", + "targetUrl": "www.kelloggsfamilyrewards.com/Info/Recipes" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "9Roh9lJ0tSd", + "name": "Cooking Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0202243c-718b-42f5-ad8c-3d4ecd65e037", + "name": "general", + "startAt": "2017-09-24T19:40:04.114Z", + "endAt": "2019-09-24T19:40:04.115Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "293630ee-3aaf-489e-b6c5-76fbfe4ecbe8", + "creativeSets": [ + { + "creativeSetId": "99402036-e2c6-4c12-9a73-610086dbfdcb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ea29137b-8f17-471e-b68b-e4240d680ad7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Stamp Collecting Catalog", + "title": "KenmoreStamp", + "targetUrl": "www.KenmoreStamp.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "12wGC9Ye4QL", + "name": "Rare Stamps" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "053cc813-aaed-4f20-b5d7-ef0f8368953e", + "name": "school", + "startAt": "2017-09-24T19:40:04.711Z", + "endAt": "2019-09-24T19:40:04.711Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "632def05-f1b4-4880-a0b5-b00cce5af163", + "creativeSets": [ + { + "creativeSetId": "1cb7403a-c2b7-4b07-ba0d-609cf53b39df", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "560fb440-9143-410e-8bee-644c719b9f61", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top Ten Animation Schools - Information | kensaq.com", + "title": "Kensaq", + "targetUrl": "kensaq.com/Top Ten Animation Schools/Now" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "K1d6Q52s4WP", + "name": "Animation Degree" + } + ] + }, + { + "creativeSetId": "4d1c8612-df27-4f8f-81e6-85386a5b86fb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d9611899-f957-4cdd-aad1-a2dcca082e53", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "College Textbooks Audio Books - Right Now", + "title": "Kensaq", + "targetUrl": "kensaq.com/College Textbooks Audio Books/Here" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "AQ9eV3TbmJq", + "name": "Physics Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0b048f87-2ad8-4903-8bac-67262278efad", + "name": "music", + "startAt": "2017-09-24T19:40:05.294Z", + "endAt": "2019-09-24T19:40:05.295Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "632def05-f1b4-4880-a0b5-b00cce5af163", + "creativeSets": [ + { + "creativeSetId": "5799ff5d-f091-4155-9453-8f8a33b73184", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a91dcab0-56a9-4ea3-aa28-e8136d1867f4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Online Streaming Music - Information", + "title": "Kensaq", + "targetUrl": "kensaq.com/Free Online Streaming Music/Now" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "yk5gcAl32Yu", + "name": "Music Streaming" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e782b2f4-a9e5-4b40-8b1f-c4f8ef96ead3", + "name": "auto", + "startAt": "2017-09-24T19:40:05.617Z", + "endAt": "2019-09-24T19:40:05.618Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "632def05-f1b4-4880-a0b5-b00cce5af163", + "creativeSets": [ + { + "creativeSetId": "ab98845c-712d-4d36-ae97-7cd92620d741", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b73679b2-9940-4c95-9560-a26a7b4ca039", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "New Cars - Welcome to Kensaq | kensaq.com", + "title": "Kensaq", + "targetUrl": "kensaq.com/New Cars/See_More" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "tGlEpkd2UFQ", + "name": "New Cars" + } + ] + }, + { + "creativeSetId": "a72a9814-2041-47b1-ab56-ac53fd4c59c8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c811d40a-f03f-4c41-b95e-202a1a29db37", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dodge Ram Small Truck - Information | kensaq.com", + "title": "Kensaq", + "targetUrl": "kensaq.com/Dodge Ram Small Truck/Now" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "TrWA-UI4zhY", + "name": "Pickup Trucks" + } + ] + }, + { + "creativeSetId": "87338f47-da68-4f68-9937-f6d4fda9c4fd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "066e37df-9128-413d-8fe9-4118a91a448c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Certified Pre Owned - Right Now | kensaq.com", + "title": "Kensaq", + "targetUrl": "kensaq.com/Certified Pre Owned/Here" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "b4xuJT0IZ_f", + "name": "Used Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7e08bb61-1c16-4c29-a7c3-7d25a9c7b2e8", + "name": "business", + "startAt": "2017-09-24T19:40:06.448Z", + "endAt": "2019-09-24T19:40:06.448Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "632def05-f1b4-4880-a0b5-b00cce5af163", + "creativeSets": [ + { + "creativeSetId": "284c3203-cd5e-4459-b4b3-d74cfa6ff51a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c16d4ef7-5844-45d1-a94f-a553bd377613", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fuel Cards - Welcome to Kensaq | kensaq.com", + "title": "Kensaq", + "targetUrl": "kensaq.com/Fuel Cards/See_More" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "OAA-T668LRa", + "name": "Fuel Cards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b4a18a5b-eb6a-4ebe-987e-8c1dbdfe988e", + "name": "home", + "startAt": "2017-09-24T19:40:06.788Z", + "endAt": "2019-09-24T19:40:06.788Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "632def05-f1b4-4880-a0b5-b00cce5af163", + "creativeSets": [ + { + "creativeSetId": "dd737ed2-801f-4813-9696-980bec4af185", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "84aa8f6f-aab7-406b-ab77-5090c322678f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Weber Grills For Sale Clearance - Information | kensaq.com", + "title": "Kensaq", + "targetUrl": "kensaq.com/Weber Grills For Sale Clearance/Now" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "w2RZcyzoMxq", + "name": "Barbecues" + } + ] + }, + { + "creativeSetId": "f5dbc2d7-d5a0-416b-ac50-a931fd0e02c1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "192c8263-6acd-485f-b565-ea1a6e03e3fd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Goods Decor Store - Right Now | kensaq.com", + "title": "Kensaq", + "targetUrl": "kensaq.com/Home Goods Decor Store/Here" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "T4rhcMPPBhp", + "name": "Home Décor" + } + ] + }, + { + "creativeSetId": "de46cb77-4d4e-4be3-a6f4-3a5ea4d311a7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "09d64e44-e3eb-42dd-aca9-e205609c79c3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Artificial Lawns Cost - Welcome to Kensaq", + "title": "Kensaq", + "targetUrl": "kensaq.com/Artificial Lawns Cost/See_More" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "u3b4RF02Ctr", + "name": "Artificial Lawns" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fa6b2535-dd4a-4523-a21f-f1a0688c2264", + "name": "recipes", + "startAt": "2017-09-24T19:40:07.665Z", + "endAt": "2019-09-24T19:40:07.666Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "632def05-f1b4-4880-a0b5-b00cce5af163", + "creativeSets": [ + { + "creativeSetId": "8029eaad-b7ac-4efb-b5b6-8feb16f3c7a7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b85ca282-301b-4d3a-a25b-0a1fa213bece", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Recipes For Fresh Tomato Pasta Sauce - Information", + "title": "Kensaq", + "targetUrl": "kensaq.com/Recipes For Fresh Tomato Pasta Sauce/Now" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "AqMmPbWQnUE", + "name": "Fresh Pasta" + } + ] + }, + { + "creativeSetId": "1f86d389-20fa-4a98-b3c0-fa27f42eff02", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7a2b39df-3ad2-4627-bf2a-246069270e65", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "All Natural Juice Drinks - Search and Find", + "title": "Kensaq", + "targetUrl": "kensaq.com/Information/All Natural Juice Drinks" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "lFMT5ZDQdjc", + "name": "Juice Drinks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a571c36e-6cbb-4f4a-a0ff-d28867fc03c3", + "name": "hobbies", + "startAt": "2017-09-24T19:40:08.500Z", + "endAt": "2019-09-24T19:40:08.500Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "632def05-f1b4-4880-a0b5-b00cce5af163", + "creativeSets": [ + { + "creativeSetId": "b809b2f4-e887-48b5-b141-583849c3af9b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "69e5c2dd-c695-42e4-92d2-b6954534e55d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dart Supplies Wholesale - Information | kensaq.com", + "title": "Kensaq", + "targetUrl": "kensaq.com/Dart Supplies Wholesale/Now" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "gxL4h38VZWH", + "name": "Darts Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4ed44dc4-f39d-470f-a43c-e860e773c180", + "name": "vacation", + "startAt": "2017-09-24T19:40:08.823Z", + "endAt": "2019-09-24T19:40:08.823Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "632def05-f1b4-4880-a0b5-b00cce5af163", + "creativeSets": [ + { + "creativeSetId": "5f993a58-c0dd-49a4-8787-d4037525a028", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dcf9f2e1-a265-488c-b4a0-a3942748efa1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "All Inclusive Vacation Packages - Right Now | kensaq.com", + "title": "Kensaq", + "targetUrl": "kensaq.com/All Inclusive Vacation Packages/Here" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6gRfXQJbCmu", + "name": "Vacation Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1c1edc99-bf38-49aa-a82f-5778d9157187", + "name": "vacation", + "startAt": "2017-09-24T19:40:09.405Z", + "endAt": "2019-09-24T19:40:09.405Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "40322247-ac35-4d72-9c31-45356cfefa87", + "creativeSets": [ + { + "creativeSetId": "a78acb23-da41-4048-9239-dc6f979ac310", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6ad68426-a92e-4d18-8719-0b0d59423799", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Scotland Train Tours - Tailor-Made Private Tours", + "title": "Kensingtontours", + "targetUrl": "www.kensingtontours.com/Tours/Scotland" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6dab1nE-Ik7", + "name": "Train Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8b5c3d59-58f5-4122-bc17-6958c34eaeda", + "name": "general", + "startAt": "2017-09-24T19:40:10.309Z", + "endAt": "2019-09-24T19:40:10.310Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3b91d66a-ba77-4323-ab7b-40a8a53f4cb3", + "creativeSets": [ + { + "creativeSetId": "62c3dddb-7c21-4253-b0fe-0d782b1914d0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6bda8043-52c7-4a34-8077-e46d38924e8d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Biology | Science | Khan Academy", + "title": "Khan Academy", + "targetUrl": "https://www.khanacademy.org/science/biology" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "CbwZHFCK4Mzr", + "name": "biology" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "45e6551d-0c07-495d-ad51-8435506aa651", + "name": "general", + "startAt": "2017-09-24T19:40:10.906Z", + "endAt": "2019-09-24T19:40:10.906Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9fb82327-13e9-4c6d-a1ef-00a3cc229a98", + "creativeSets": [ + { + "creativeSetId": "ee80287b-3de6-4207-9021-ee6b7ad6f86b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3f662f24-812d-4e6e-91dc-c2f6f3d19dd6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Kids Get Fit Doing Karate | Kicks Karate‎", + "title": "Kickskarate", + "targetUrl": "www.kickskarate.com/ ‎" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "M2Rtnq7snDL", + "name": "Martial Arts Training" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d86f2bc4-98c9-4666-aeda-f2fb5da9c489", + "name": "general", + "startAt": "2017-09-24T19:40:12.217Z", + "endAt": "2019-09-24T19:40:12.217Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "353ddd51-cb92-4367-ada0-0e37cbd7f638", + "creativeSets": [ + { + "creativeSetId": "afe7fb07-47c4-4723-8f32-55ea25818151", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "87e20461-ec4f-4294-97d8-cec4f0ea144b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Swimming Gear Online - Wide Selection, Fast Shipping.", + "title": "Kiefer", + "targetUrl": "www.kiefer.com/swim/gear" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "BgfSFihlac8", + "name": "Swimming Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d7024958-762a-48ca-9329-8c2174800ffe", + "name": "finance", + "startAt": "2017-09-24T19:40:12.812Z", + "endAt": "2019-09-24T19:40:12.812Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "75859334-ddc5-4a4d-b11c-ab140c0e525b", + "creativeSets": [ + { + "creativeSetId": "57009481-1619-41e5-b265-45778a5204e4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ae8f5265-f480-4577-bc1b-d9a14903092d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Personal Finance ™ - Official Site - Amazon.com", + "title": "Kindle.Amazon", + "targetUrl": "Kindle.Amazon.com" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "KclHbUft33H", + "name": "Personal Finance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5510d7be-1372-44ae-ba1c-1c169dbdc2a0", + "name": "society", + "startAt": "2017-09-24T19:40:13.138Z", + "endAt": "2019-09-24T19:40:13.139Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "75859334-ddc5-4a4d-b11c-ab140c0e525b", + "creativeSets": [ + { + "creativeSetId": "b597a96d-7453-4c5e-a928-9a6bf3514f38", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2a38fb96-4d48-4b4e-8cf0-aef3fb2a2042", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Social Media ™ - Official Site - Amazon.com", + "title": "Kindle.Amazon", + "targetUrl": "Kindle.Amazon.com" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "UBXGkQ3Bdgz4", + "name": "Social Media Analytics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4e293259-3f4e-44a4-a3a9-6d4eef234840", + "name": "general", + "startAt": "2017-09-24T19:40:14.760Z", + "endAt": "2019-09-24T19:40:14.760Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4060ad4b-54cf-4dcb-a68e-d2093755e852", + "creativeSets": [ + { + "creativeSetId": "1ee32755-ef49-4103-9335-fa3230aaa382", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "529160e3-4e98-443a-b699-5346ebbbe547", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "King University Online - 16 Degrees, 100% Online", + "title": "KingEdu", + "targetUrl": "online.king.edu" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "ANs-xRChItO", + "name": "College Degrees Online" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b02a6b71-ce5d-48d5-951b-7f5286fb3b50", + "name": "general", + "startAt": "2017-09-24T19:40:15.375Z", + "endAt": "2019-09-24T19:40:15.376Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4815226d-0f8a-434a-aaac-3e273c223250", + "creativeSets": [ + { + "creativeSetId": "81d06083-42ac-41d7-97a7-445852cf35b4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4e7e29b8-3e45-42d0-ab3f-ade8082dace9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Being a Landlord is Exhausting - 1031 Exchange Into our DSTs", + "title": "Kingsbarnrealtycapital", + "targetUrl": "www.kingsbarnrealtycapital.com/1031 Exchange/Properties" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "UCZ9mWvmOvyi", + "name": "Buy Real Estate" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "333bcbe4-ece6-492a-952e-d405b95511e9", + "name": "general", + "startAt": "2017-09-24T19:40:16.081Z", + "endAt": "2019-09-24T19:40:16.082Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "318fb068-74d3-4a09-9419-687b442325f8", + "creativeSets": [ + { + "creativeSetId": "1f81adbd-92c2-460d-9c53-46f4c561e837", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "71118264-9725-4715-a24a-67170948c441", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Kingsford® Charcoal - The Gold Standard of Barbeque", + "title": "Kingsford", + "targetUrl": "www.kingsford.com/Kingsford" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "w2RZcyzoMxq", + "name": "Barbecues" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1c3c03a7-11b6-46dd-a4e2-b84c1b4c81d3", + "name": "general", + "startAt": "2017-09-24T19:40:16.692Z", + "endAt": "2019-09-24T19:40:16.693Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5759b0f9-1422-4399-a346-e6a4be2bcc1c", + "creativeSets": [ + { + "creativeSetId": "8405f518-7457-4d30-bf7c-7d76d46e736e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ad4eeca1-a20b-44a3-9f2c-e4422951f3bb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Arborist Rope Store | KnotAndRope.com", + "title": "KnotAndRope", + "targetUrl": "www.KnotAndRope.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "zJrrQvnmCnp", + "name": "Climbing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bc528b2d-01df-4e8e-b619-418a86181e16", + "name": "general", + "startAt": "2017-09-24T19:40:17.359Z", + "endAt": "2019-09-24T19:40:17.359Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3cd16437-6b0a-4156-86ea-8d06d581e583", + "creativeSets": [ + { + "creativeSetId": "6eb61c55-0dd1-4287-b0b3-d7108e5477ea", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b6fabf8b-b613-490b-b39f-a76d2f9879cd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Depression Treatment Centers - Latest Treatment Options", + "title": "Knowhubb", + "targetUrl": "knowhubb.com/Alcohol/Depression" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "ZYCLaYR2JuLH", + "name": "Depression Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e96924ed-8236-4d6c-9c48-4e94bcef0d1e", + "name": "general", + "startAt": "2017-09-24T19:40:17.972Z", + "endAt": "2019-09-24T19:40:17.973Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "74e762a0-01a1-4e22-a1e9-7ee211d16419", + "creativeSets": [ + { + "creativeSetId": "582b5b75-5f58-494c-8041-af1520924c7e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "43d14ba8-5b65-4159-8511-48928ca349ea", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Kobo™ Bookstore Official Site – Huge Selection & Great Prices", + "title": "Kobo", + "targetUrl": "www.kobo.com/us/en" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "Fd-YZYI1wwN", + "name": "Online Ebooks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0ffcc6c6-a855-4694-9174-22f9dad3a2d3", + "name": "home", + "startAt": "2017-09-24T19:40:18.551Z", + "endAt": "2019-09-24T19:40:18.551Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9ed259d7-a85e-4676-a89d-64f29ce84781", + "creativeSets": [ + { + "creativeSetId": "2ea0af9a-22a6-4667-9a70-673efefad1b4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "46b43899-3563-4173-b3ef-2f1c6e801942", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Smart TV Televisions TV & Home Theater, Electronics - Kohl's", + "title": "Kohls", + "targetUrl": "kohls.com" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "x3uhuK7aLGkU", + "name": "Buy Television" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3df6da79-ecd2-4073-a894-c53d40a6213e", + "name": "general", + "startAt": "2017-09-24T19:40:18.902Z", + "endAt": "2019-09-24T19:40:18.902Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9ed259d7-a85e-4676-a89d-64f29ce84781", + "creativeSets": [ + { + "creativeSetId": "110154d7-37c4-459d-85e4-d4053f0c3118", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6e3bea77-0c12-470c-a000-2f713d1061ff", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Kohl's® Has What You Need - Buy Online Pick Up In Store", + "title": "Kohls", + "targetUrl": "www.kohls.com/NearYou" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "VulAzM57Pkqw", + "name": "Online Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e2fb3aba-c587-4e90-ad11-a6297c284044", + "name": "hobbies", + "startAt": "2017-09-24T19:40:19.245Z", + "endAt": "2019-09-24T19:40:19.245Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9ed259d7-a85e-4676-a89d-64f29ce84781", + "creativeSets": [ + { + "creativeSetId": "ee90e7e0-7acb-4f6c-af71-93d295566cb1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6837bb16-1db2-41b5-9b9a-b3be00bb45a2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Kohl's : Board Games - Get Low Prices on Board Games", + "title": "Kohls", + "targetUrl": "Kohls.com/BoardGames" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "y-dD1TIXfNn", + "name": "Board Games" + } + ] + }, + { + "creativeSetId": "25aaea44-1295-4183-a299-89dca3bb1097", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e9fb0e0d-e397-4228-b939-a570fdd52c89", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Footballs - Save on Football Equipment - kohls.com", + "title": "Kohls", + "targetUrl": "https://www.kohls.com/catalog/football-sporting-goods-sports-fitness.jsp?CN=Activity:Football+Category:Sporting%20Goods+Department:Sports%20%26%20Fitness&kwid=p5423270658&utm_source=bing&utm_medium=cpc&utm_term=footballs&utm_campaign=Sporting%20Goods&UTM_Adgroupid=58700000339530914&pfx=pfx_msn_roi&cid=aagsportgoods2&gclid=CIi607Kpj9kCFUkIfwod68kDYQ&gclsrc=ds&dclid=CPPF3bKpj9kCFQ5mfgod5U0Iow" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "8pXRo6ZanQZo", + "name": "american football" + } + ] + }, + { + "creativeSetId": "a1fd17b0-a89a-4200-8306-cd897677808c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "065bae68-2c8a-4f4f-b6af-7bfeff8f0355", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Skateboards - Get Low Prices on Skate Equipment - Kohls.com", + "title": "Kohls", + "targetUrl": "Kohls.com/Skate" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FWG6gM9kOij", + "name": "Skateboards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "61d62e63-ca5c-47e4-a0c7-1a0ddfd8f79e", + "name": "general", + "startAt": "2017-09-24T19:40:20.536Z", + "endAt": "2019-09-24T19:40:20.537Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c928758a-e265-460e-b5af-3ef9f05e81a4", + "creativeSets": [ + { + "creativeSetId": "9fbdf8ae-2308-4f13-8d39-9f6465005311", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0c390039-c09b-4215-a5c1-697060a160e7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Easy Cheese Recipes | KraftRecipes.com", + "title": "Kraft Recipes", + "targetUrl": "http://www.kraftrecipes.com/kraftcheese/kraft-natural-cheese.aspx" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "dMFNdU7Z96yX", + "name": "cheese" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "093a3367-56f7-4f97-99ea-9ab59e5aa59b", + "name": "general", + "startAt": "2017-09-24T19:40:21.105Z", + "endAt": "2019-09-24T19:40:21.106Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c838cdc5-3ee7-4228-8e2e-37e61ec5dc31", + "creativeSets": [ + { + "creativeSetId": "ba4c64af-8b9e-4ad4-b43a-52c7fecd8448", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9ea733df-cb34-4e75-a5e3-5351ac4b64dd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Kraft® Mac And Cheese - You Know That You Love It", + "title": "Kraftmacandcheese", + "targetUrl": "www.kraftmacandcheese.com/meals" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "9Roh9lJ0tSd", + "name": "Cooking Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "08dfd3b0-db83-4f46-acb6-32cb139bb510", + "name": "general", + "startAt": "2017-09-24T19:40:21.685Z", + "endAt": "2019-09-24T19:40:21.685Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9d9b193b-6438-4949-a900-e46be25aaeb4", + "creativeSets": [ + { + "creativeSetId": "08835960-4206-4efd-b7fd-03eff27ea5b6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "95b4f8cb-781e-4af6-8f2a-01b4dd4d6a20", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dance & Movement Programs - Book Your Class Today", + "title": "Kripalu", + "targetUrl": "www.kripalu.org/Dance/Classes" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "tDcqDSsaTpB", + "name": "Dance Lessons" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8cda23df-5a4c-468a-812b-0a3c26909bdc", + "name": "general", + "startAt": "2017-09-24T19:40:22.257Z", + "endAt": "2019-09-24T19:40:22.257Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e9fc58b6-21c1-4f96-a9c7-a7fe8f741e05", + "creativeSets": [ + { + "creativeSetId": "9315a5fb-599b-4705-8863-e84d4dcc28b3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8e48a482-fa7e-492e-a1d1-0ce2b394bb75", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Martial Art Supply Outlet", + "title": "Kungfu4less", + "targetUrl": "www.kungfu4less.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "M2Rtnq7snDL", + "name": "Martial Arts Training" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2eb5397d-3546-4e34-ac05-b2f2afb4f8c9", + "name": "general", + "startAt": "2017-09-24T19:40:22.832Z", + "endAt": "2019-09-24T19:40:22.832Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d7ca9ed6-7a1d-47f2-9efe-2f4558e5e08e", + "creativeSets": [ + { + "creativeSetId": "608184da-e8d7-4637-b46d-96a12127301f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1fb78ee3-86f7-47b6-8aa7-c80d1cfa3d31", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Martial Arts Supply | KungFu4Less.com", + "title": "KungFu4Less.com", + "targetUrl": "https://www.kungfu4less.com/" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "1z4qDT9hJKf6", + "name": "martial arts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1b3f55cc-cf23-43ff-97be-72cfdb14ae7a", + "name": "general", + "startAt": "2017-09-24T19:40:23.416Z", + "endAt": "2019-09-24T19:40:23.416Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e81d2782-089a-443f-803f-1cac87263463", + "creativeSets": [ + { + "creativeSetId": "f0da040f-a176-4af1-81a9-9cd682c16133", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "94822f50-b011-482a-9eb3-7947c4577bfe", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Graphic Design - LaFilm.edu - Graphic Design Degree", + "title": "LaFilm", + "targetUrl": "learn.lafilm.edu/graphic-design" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "HJWyQTrQEe3", + "name": "Adobe Courses" + } + ] + }, + { + "creativeSetId": "399c4025-d52f-46a3-ace2-841987cd59a0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b5f10902-cbef-40cf-a93e-8628d4cffd1a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Filmmaking Degree Online - Los Angeles Film School®", + "title": "LaFilm", + "targetUrl": "learn.lafilm.edu/film-program" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "BAhEnDxcxBo", + "name": "Film Production Degree" + } + ] + }, + { + "creativeSetId": "23ff0303-f8de-43ca-ac73-8b9715964912", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3ca03124-d608-4e87-8225-1129699ff142", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Entertainment Business Degree - Online Program, Learn At Home", + "title": "LaFilm", + "targetUrl": "learn.lafilm.edu/entertainment/online" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "w5KTA-1-lyt", + "name": "Online Education" + } + ] + }, + { + "creativeSetId": "ffa1c3de-08c6-4c88-8cec-969534506417", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9102ad44-5c7e-4a04-b8cb-011c3f9dcd7f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Learn Graphic Design Online - Online Classes Now Enrolling", + "title": "LaFilm", + "targetUrl": "learn.lafilm.edu/graphic-design" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "EjsX_m6RTAg", + "name": "Graphic Designers" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "75eefd93-09e7-434f-9b52-daf9616700a3", + "name": "general", + "startAt": "2017-09-24T19:40:24.876Z", + "endAt": "2019-09-24T19:40:24.876Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ac7564e5-c3ab-41b2-9fc7-3d972ca23c79", + "creativeSets": [ + { + "creativeSetId": "0fcc01ae-439d-4513-8c4d-3bd7dc96fa4b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a53290dc-77d6-4d24-9304-158f33cc5724", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Animation & VFX Degree - Degree In Animation | learn.lafilm.edu", + "title": "LAFilm.edu", + "targetUrl": "http://learn.lafilm.edu/animation-vfx/?src=BINGCA&course=campus&program=BSAVE&lid=Desktop-BMM-animation?msclkid=b0ff8fff2d73132f1d6ed587dd7b3c79" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "dnjrRXlICsbx", + "name": "animation" + } + ] + }, + { + "creativeSetId": "90c7ede0-15c8-4f53-85ee-ffa62e694547", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7c73e07e-6d22-4f02-b350-bc0349984cd5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Film Production Degrees - Los Angeles Film School® | learn.lafilm.edu", + "title": "LAFilm.edu", + "targetUrl": "http://learn.lafilm.edu/film/?src=BINGFM&course=campus&program=BSFP&lid=Desktop-Exact-film?msclkid=3eb45508ae7a14ae9fde0f7041d12c46" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "dwCr-8vFtxZF", + "name": "film" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a0594d55-c016-4bc4-a6fe-0a0681753c48", + "name": "general", + "startAt": "2017-09-24T19:40:25.910Z", + "endAt": "2019-09-24T19:40:25.910Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ae1c962d-5438-400f-977e-977532477759", + "creativeSets": [ + { + "creativeSetId": "3600d617-5417-4047-a63e-86008039717c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a97df735-7656-4f06-a74a-a65c96979a1d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Elegant Real Pearl Ring - We Will Not be Beaten On Price | lagunapearl.com", + "title": "Laguna Pearl", + "targetUrl": "https://www.lagunapearl.com/pearl-rings.html" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "23a84efe-0cb3-49da-b1c7-8e0c6cca28c6", + "name": "general", + "startAt": "2017-09-24T19:40:26.522Z", + "endAt": "2019-09-24T19:40:26.522Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9990c11a-b6c8-4c84-ac2e-01bacd6d31d9", + "creativeSets": [ + { + "creativeSetId": "eebc7a7b-11f2-4ab7-8189-5f8ce6e0f349", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "51512d13-6889-45cd-920e-5e9f02b91a18", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sci-Fi Ebooks - Free Bestselling Sci-Fi Ebooks", + "title": "Landers Books", + "targetUrl": "http://landers.bookbub.com/covers_rc/?source=ygcatscifi" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "2mcKvmAuse_c", + "name": "sci-fi" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9aa5f49c-7218-4fd3-8ab8-4d87a2b38f9b", + "name": "general", + "startAt": "2017-09-24T19:40:27.089Z", + "endAt": "2019-09-24T19:40:27.089Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "37974550-a626-4cea-b79b-7e2f2dcff77f", + "creativeSets": [ + { + "creativeSetId": "ec20881e-b093-4b98-8160-b08e5cab4935", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4a706216-4665-4240-924f-4dd3e4dd1961", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Small Business Gas Cards - Save Time & Money. Apply Now", + "title": "Landingpage.fuelman", + "targetUrl": "landingpage.fuelman.com/small-business/fuel-cards" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "OAA-T668LRa", + "name": "Fuel Cards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3763d2f9-0824-4b3b-bf83-7f97b78aff73", + "name": "general", + "startAt": "2017-09-24T19:40:27.836Z", + "endAt": "2019-09-24T19:40:27.837Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d5d81d3b-77f4-48f2-8ed8-29854f26fc60", + "creativeSets": [ + { + "creativeSetId": "f5ca7965-928a-4f77-8018-987a2b9ff5d4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "554e2fc5-8fcc-409b-9c5c-fc1fcf12a84e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Mac Power Adapter Sale | LaptopRescue.com", + "title": "LaptopRescue.com", + "targetUrl": "http://laptoprescue.com/Mac_Power_Adapters/" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "ucMn3IyWii5i", + "name": "apple" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "440de88d-274f-4a35-bf9c-774b5dd34bf5", + "name": "general", + "startAt": "2017-09-24T19:40:28.404Z", + "endAt": "2019-09-24T19:40:28.404Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "408c5564-f22c-4ca8-9ad2-9fd1fa651d1d", + "creativeSets": [ + { + "creativeSetId": "ee41cddd-cb33-4a88-9bbd-894701513e30", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "35b32713-62a4-4377-a377-5fc43a872b55", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Employment Templates - Edit and Download. 100% Free.", + "title": "Lawdepot", + "targetUrl": "www.lawdepot.com/OnlineForms/Employment" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "9Alas5QGK_f", + "name": "Contractor Jobs" + } + ] + }, + { + "creativeSetId": "a786c912-37d3-4f18-9b60-6d4cabf443b0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cfaea380-7115-4ef9-9d8a-34107f6aa648", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Home Purchase Offer Form - Download and Print. 100% Free.", + "title": "Lawdepot", + "targetUrl": "www.lawdepot.com/OnlineForms/OfferToPurchase" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "UCZ9mWvmOvyi", + "name": "Buy Real Estate" + } + ] + }, + { + "creativeSetId": "3dc14a28-7d61-4620-b5b3-4e1f3f7c1c37", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9adec1a5-fffe-4a7f-835c-187908313f17", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Child Travel Consent Form - Download and Print. 100% Free.", + "title": "Lawdepot", + "targetUrl": "www.lawdepot.com/OnlineForms/TravelConsent" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "lvYt-vwY0ml", + "name": "Travel Tours" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "220ff88e-bb96-43ec-a076-038130051d97", + "name": "general", + "startAt": "2017-09-24T19:40:29.461Z", + "endAt": "2019-09-24T19:40:29.461Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "dbfe45ba-9643-4f84-a0fe-7aa5f5542ac9", + "creativeSets": [ + { + "creativeSetId": "82cfa2d7-e69b-4b1c-8af6-9e23439f5cea", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3646e83c-a52b-44ce-a49d-bc506cf37e62", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Need A Defense Lawyer? | lawinfo.com", + "title": "LawInfo", + "targetUrl": "www.lawinfo.com" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "E_MEtpVexy1", + "name": "Find a Lawyer" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "07534e45-5812-41c7-b418-352f277c42a8", + "name": "general", + "startAt": "2017-09-24T19:40:30.214Z", + "endAt": "2019-09-24T19:40:30.214Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cde786d0-a9f2-4fcd-b017-ea19f3ce6a28", + "creativeSets": [ + { + "creativeSetId": "81b6e63d-9bae-42d5-955c-d73a56884c38", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0c34d358-635d-49df-8823-c990cfa2476f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hurt In a Slip & Fall? | lawinfo.com", + "title": "LawInfo.com", + "targetUrl": "https://attorneys.lawinfo.com/slip-and-fall/?PPC=1&dcmp=ADC-LI_PINationwide-SlipFall-ExactSQ&HBX_PK=lawyers&utm_source=ADC&utm_medium=PPC&utm_term=lawyers&utm_campaign=LI_PINationwide-SlipFall-ExactSQ" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "rJ5z91HKFhbZ", + "name": "law" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "50384170-f0f8-4b3c-9da1-8e8bfb34b11c", + "name": "general", + "startAt": "2017-09-24T19:40:30.783Z", + "endAt": "2019-09-24T19:40:30.783Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f77dc2b6-b281-4edb-9d8c-ffb6c9ffcc47", + "creativeSets": [ + { + "creativeSetId": "d87d8fc4-4210-4c57-94e2-24fa179a61ae", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "eecc2516-dab9-4e74-83f4-52ae7bc67cff", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find the Right Lawyer for You. - Database of 1MM+ Attorneys.", + "title": "Lawyers", + "targetUrl": "www.Lawyers.com" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "E_MEtpVexy1", + "name": "Find a Lawyer" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "609e3839-a7c5-46e4-95b5-5523ff4262b9", + "name": "general", + "startAt": "2017-09-24T19:40:31.370Z", + "endAt": "2019-09-24T19:40:31.370Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "40254b97-757b-43db-955b-a41b0ab198a6", + "creativeSets": [ + { + "creativeSetId": "96b5da8c-5d88-4c07-a481-be9a0fe71d05", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "568a02a5-c81b-423c-b2b9-00d25fffad81", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Consult Attorneys - Find an Attorney for Your Legal Issue", + "title": "Lawyers.FindLaw", + "targetUrl": "Lawyers.FindLaw.com" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "E_MEtpVexy1", + "name": "Find a Lawyer" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d9d364a7-552e-4789-998b-76be28e60832", + "name": "general", + "startAt": "2017-09-24T19:40:31.947Z", + "endAt": "2019-09-24T19:40:31.949Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "566f282a-5667-4436-ae15-d47036aa3a6e", + "creativeSets": [ + { + "creativeSetId": "0b27814b-80c4-441e-893c-905d0f6d1db8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c7d58801-9f82-4c52-bbbb-7c119d4e1fa0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cardiovascular Education", + "title": "Learn", + "targetUrl": "Learn.org/Cardiovascular" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "F4UI56jArDpU", + "name": "Cardiac Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5d594f00-3b60-468d-926c-91f7b93133e7", + "name": "general", + "startAt": "2017-09-24T19:40:32.540Z", + "endAt": "2019-09-24T19:40:32.540Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f5918c3e-0814-4cf0-a659-81c95326042a", + "creativeSets": [ + { + "creativeSetId": "1e6da2f2-d316-4b81-9dcc-c40bc06ac816", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8f921da7-17d0-40cf-923e-7df4d48987c5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Univ of Maryland Univ College - Information Tech Certificates", + "title": "Learn-more.umuc", + "targetUrl": "learn-more.umuc.edu/ComputerScience" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "rNd-q2umuLA", + "name": "IT Online Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "92dbd645-04ac-42d8-8071-a8f4d4c82003", + "name": "general", + "startAt": "2017-09-24T19:40:33.102Z", + "endAt": "2019-09-24T19:40:33.102Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7f9965af-f5f7-4e0a-a936-632b10168cbc", + "creativeSets": [ + { + "creativeSetId": "24f2e66d-ef25-4c02-9548-82d59cf2d5fa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d4fc59cf-1afc-4546-887d-2280327898fd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Improve Your IT Operations - VMware vRealize Case Studies", + "title": "Learn.vmware", + "targetUrl": "learn.vmware.com/vRealize-Suite/Case-Studies" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "P9Lfpxf-FV6", + "name": "Management Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "368bf60b-85c7-4bf3-be71-fab8259477ee", + "name": "general", + "startAt": "2017-09-24T19:40:33.853Z", + "endAt": "2019-09-24T19:40:33.853Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5f61deef-d105-454a-a910-c4dace23d7bd", + "creativeSets": [ + { + "creativeSetId": "3c6e29a8-aa13-4bb0-abe4-e1303065f5f7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e64a29ac-d401-40af-b8e0-16baa74ecea0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Certified Adobe Training | Ledet.com", + "title": "Ledet", + "targetUrl": "www.Ledet.com" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "HJWyQTrQEe3", + "name": "Adobe Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8269caac-d8ff-4005-9446-43513ed9d736", + "name": "general", + "startAt": "2017-09-24T19:40:34.556Z", + "endAt": "2019-09-24T19:40:34.556Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "86f668dc-0f06-4583-84c3-2efca547a49c", + "creativeSets": [ + { + "creativeSetId": "2ad6924c-b3ae-4b33-90f0-32bb8e62ee87", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "815bf28e-d093-4fee-8361-ba075ce1aeb8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Contractor job agreement - Personalize & Print Instantly", + "title": "Lega", + "targetUrl": "www.legalcontracts.com/LegalTemplates/Service" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "9Alas5QGK_f", + "name": "Contractor Jobs" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a4b44ca2-28ea-4370-a449-2a5d1adc2262", + "name": "general", + "startAt": "2017-09-24T19:40:35.150Z", + "endAt": "2019-09-24T19:40:35.151Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3c3ce34a-7b7a-406a-8644-e536b0fd50a2", + "creativeSets": [ + { + "creativeSetId": "9d34ebeb-22f2-4b61-9f78-e988ca4d896d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "65c59eab-99d1-4a94-b2d0-be17e950a3a2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find Lawyers in Your Area - Legal help", + "title": "LegalMatch", + "targetUrl": "www.LegalMatch.com" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "3kVpCcrPlDrA", + "name": "Legal Help" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "05ecbf14-7335-4fa3-ac33-95b25b189473", + "name": "general", + "startAt": "2017-09-24T19:40:35.747Z", + "endAt": "2019-09-24T19:40:35.747Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f319fd9c-0b7a-4c53-93bc-e18332ef3170", + "creativeSets": [ + { + "creativeSetId": "4e5248f8-810b-4eda-97c0-a64c076b2906", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e08f12cd-2997-4eb2-961a-613777368a20", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find A Lawyer - LegalShield® Official Site | legalshield.com", + "title": "Legalshield", + "targetUrl": "www.legalshield.com" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "E_MEtpVexy1", + "name": "Find a Lawyer" + } + ] + }, + { + "creativeSetId": "f35301a3-3122-4d11-9726-a559557aed6a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "65cf5f34-bcc4-448e-80bd-40c6e28d3b75", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Legal Help - LegalShield® Official Site | legalshield.com", + "title": "Legalshield", + "targetUrl": "www.legalshield.com" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "3kVpCcrPlDrA", + "name": "Legal Help" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "049efc17-1f4e-4228-a7b6-951f4fd1d23c", + "name": "general", + "startAt": "2017-09-24T19:40:36.550Z", + "endAt": "2019-09-24T19:40:36.550Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "eeb2a62b-cb98-4c6e-8505-f5de0289e41e", + "creativeSets": [ + { + "creativeSetId": "c54cfb87-ba51-4014-9f33-45426714dd0f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "60e16a42-36e6-43f2-be7a-70494d6a52f2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Apply For A Green Card - Live & Work In The USA - legalzoom.com", + "title": "Legalzoom", + "targetUrl": "www.legalzoom.com/green-card/usa" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "A7Bk9uyA2zgj", + "name": "Green Card Application" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "32d36d66-684b-401e-a4e1-fef1345eeaf5", + "name": "general", + "startAt": "2017-09-24T19:40:37.131Z", + "endAt": "2019-09-24T19:40:37.131Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e1bd4deb-2390-4300-85a2-192d24cc8783", + "creativeSets": [ + { + "creativeSetId": "bb1d6b66-d905-4ad3-a476-7e276675d6db", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b2cb96af-980c-49aa-9ad8-7afe145ed9f8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Scuba Diving Gear - Buy Your Diving Gear Online Today", + "title": "Leisurepro", + "targetUrl": "leisurepro.com/Diving_Gear" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "fH7PFGfR2R8", + "name": "Diving Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "44c72e64-acd8-4a83-a492-6caabfab1360", + "name": "general", + "startAt": "2017-09-24T19:40:37.686Z", + "endAt": "2019-09-24T19:40:37.686Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6d8c4863-208e-4bd0-95ea-a5f82f122e54", + "creativeSets": [ + { + "creativeSetId": "6792b88e-3600-4d9f-93d2-4b712aea7c40", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2fcda5a5-f179-45a5-b5ae-1256e412fdb7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online Sildenafil Medication - Online doctor visit", + "title": "Lemonaidhealth", + "targetUrl": "www.lemonaidhealth.com/Sildenafil/Online" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "sOqbf6PQ3c-", + "name": "Online Pharmacy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "114735ff-11f2-4035-abb2-6209808b27ac", + "name": "general", + "startAt": "2017-09-24T19:40:38.253Z", + "endAt": "2019-09-24T19:40:38.254Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f7ee2160-5351-4370-837b-197334a6b603", + "creativeSets": [ + { + "creativeSetId": "71dbff22-81e7-40bd-ad2e-851d8baf2a02", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4810a1d9-6500-4204-ac5a-2d123a77106c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2018 Best Personal Loans - Your Best Offer In Minutes", + "title": "Lending Tree", + "targetUrl": "https://www.lendingtree.com/lp/personal-loans-plaform.html?esourceid=6205436&cproduct=pl&cchannel=sem&cname=personal.nb&csource=bing&ccontent=cname-SYNDICATION+-+Personal+Loan+-+Broad:ecid-73141223:dscid-71700000022576193:aname-SYNDICATION+-+Personal+Loan+-+Modified+Broad:eagid-4803428429:dsagid-58700002348161888:kwd-27112474888:loc-4084:ds-p20001845370&cterm=c&ppckw=%2Bpersonal%20%2Bloans_bb&matchtype=bb&ctype=s&adid=77446884928998&cmethod=43896&ccreative=personal%20finance%20credit%20%26%20debt%20%26%20loans&loan-purpose=DEBTCONSOLIDATION&msclkid=ad159d71002e1dda18f6c703390b69f1&loan-purpose=DEBTCONSOLIDATION&custom80=LT&gclid=CImp9MOWg9kCFU-4fgodvdUK3w&gclsrc=ds" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "w0BkgqIfCWw1", + "name": "credit & debt & loans" + } + ] + }, + { + "creativeSetId": "1b457084-925f-4448-9336-1bee3db7c1e5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "29818546-8753-4c9d-8675-a430b2db928f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Refinance Investment | LendingTree.com", + "title": "Lending Tree", + "targetUrl": "https://www.lendingtree.com/quotes/refinance.html?esourceid=6128016&cproduct=refi&clicktype=headline-&cchannel=sem&cname=refi.nb&csource=bing&800num=800-460-8109&loan-type=refinance&mid=iH5w2kzB_mtid_6990ayz24144_pcrid_16471643792_pkw_%2Brefinance%20%2Binvestment_pmt_p_pdv_c&campaign_id=e-73531321:ds-71700000022701809&adgroup_id=e-4817323471:ds-58700002377798454&ccontent=cname-SP+-+Investment+Property+-+Broad:ecid-73531321:dscid-71700000022701809:aname-Investment+Property+-+General%2Brefinance%2Binvestment:eagid-4817323471:dsagid-58700002377798454:kwd-27325472784:loc-4084:ds_p20215183857&cterm=c&ppckw=%2Brefinance%20%2Binvestment_bb&matchtype=bb&ctype=s&adid=16471643792&cmethod=43896&ccreative=personal%20finance%20investing&ccampaign=SP+-+Investment+Property+-+Broad&cgroup=Investment+Property+-+General%2Brefinance%2Binvestment&utm_source=bing&utm_medium=cpc&utm_campaign=SP%20-%20Investment%20Property%20-%20Broad&utm_term=%2Brefinance%20%2Binvestment&utm_content=16471643792&msclkid=81659675241d17af2b9fcc071cb54333&gclid=CLjelIiWg9kCFcfhfgodkdoMgg&gclsrc=ds" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "J9YDYm6oQIMb", + "name": "investing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "786bcc43-ca91-44ac-99ec-9e0ac0336ebc", + "name": "general", + "startAt": "2017-09-24T19:40:39.120Z", + "endAt": "2019-09-24T19:40:39.120Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8c94c708-73d8-4fb5-9491-5b556d412d9e", + "creativeSets": [ + { + "creativeSetId": "a37de63c-d45e-4f17-b1b5-8d74933959ad", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8fc9efe1-3985-4056-a49a-7876ad6b67ae", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "$100-$15,000 Instant Loans - Get Approved in 60 seconds", + "title": "Lendingroar", + "targetUrl": "www.lendingroar.com/personal-loan" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "BwhnRpkM8sF", + "name": "Personal Loans" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e9bd0087-6f0a-4f35-8481-851b792db7cb", + "name": "general", + "startAt": "2017-09-24T19:40:39.701Z", + "endAt": "2019-09-24T19:40:39.701Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7f0c078c-0db5-4013-88c6-301e4a4d6198", + "creativeSets": [ + { + "creativeSetId": "401def95-013e-4212-ae95-c17f14f61dbe", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4e3ee6f1-34dc-4ad1-b7f4-9331eb904509", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "LendingTree Personal Loans - Up To 5 Offers in Minutes", + "title": "Lendingtree", + "targetUrl": "www.lendingtree.com/Personal Loans" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "KclHbUft33H", + "name": "Personal Finance" + } + ] + }, + { + "creativeSetId": "e1180fcd-e3ca-4e86-8e85-e2f80f1b9173", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "01c95471-4aee-46cf-9a89-95db7f2d9007", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2018 Best Personal Loans - Your Best Offer In Minutes", + "title": "Lendingtree", + "targetUrl": "www.lendingtree.com/Personal-Loans/Compare" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "BwhnRpkM8sF", + "name": "Personal Loans" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fe2f6092-8dfd-481f-92c6-e9e380d81c8a", + "name": "general", + "startAt": "2017-09-24T19:40:40.496Z", + "endAt": "2019-09-24T19:40:40.497Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e15649b0-6d0c-4a28-b1b4-7fcd9545863a", + "creativeSets": [ + { + "creativeSetId": "db65ef90-76dd-442b-ae7f-b2d1049db137", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ea0cc354-0637-4fcb-83f7-73752b3aae52", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Mortgage Refinancing - Get Quotes From Competing Banks", + "title": "LendingTree", + "targetUrl": "LendingTree.com/Refinance" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "dtTKtVFdpje", + "name": "Refinance" + } + ] + }, + { + "creativeSetId": "672c227c-acec-40d6-b2da-e57b9abca90b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1c911da5-8f50-4f55-8d98-62f3a3b7d98c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "LendingTree® Loan Offers - LendingTree.com", + "title": "LendingTree", + "targetUrl": "https://www.lendingtree.com/lp/personal-loans-plaform.html?esourceid=6205436&cproduct=pl&cchannel=sem&cname=personal.nb&csource=bing&ccontent=cname-SYNDICATION+-+Fast:ecid-73141212:dscid-71700000022576160:aname-SYNDICATION+-+Loans+Quick+-+Broad:eagid-4803428287:dsagid-58700002350452552:kwd-77584355641792:loc-4084:ds-p28600997362&cterm=c&ppckw=quick%20cash%20loans%20no%20credit%20check_bb&matchtype=bb&ctype=s&adid=11074976951&cmethod=43940&ccreative=real%20estate%20mortgages&loan-purpose=DEBTCONSOLIDATION&msclkid=82b366944d591ca41ece3cecb22ba10a&gclid=CPGf1L6MkNkCFcK2fgod9E8Kow&gclsrc=ds" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "YUgBLMaTAw49", + "name": "mortgages" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "43bfdfd0-2c10-4138-b6eb-ee43090ccac7", + "name": "general", + "startAt": "2017-09-24T19:40:41.373Z", + "endAt": "2019-09-24T19:40:41.374Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "247c20c1-dc7b-4ad5-8a89-c75d54386d18", + "creativeSets": [ + { + "creativeSetId": "2814768d-b672-4ef0-9eb7-54a5f5eaee38", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "770e2d10-31ed-4d2f-ac4c-0b9c5f9fad0c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Middle School Geography | LessonPlanet.com", + "title": "LessonPlanet", + "targetUrl": "https://www.lessonplanet.com/search?keywords=Geography&grade_ids%5B%5D=251&grade_ids%5B%5D=252&grade_ids%5B%5D=253&grade_ids%5B%5D=254&type_ids%5B%5D=357918&msclkid=2cbb3becd39516a4b85d619428b75279&utm_source=bing&utm_medium=cpc&utm_campaign=Geography%20(Search)&utm_term=middle%20school%20geography&utm_content=Middle%20School%20Geography" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "SZ8OSEkPbeHv", + "name": "geography" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d489f971-aaf1-435e-809d-35a9bf6ce9fa", + "name": "general", + "startAt": "2017-09-24T19:40:41.950Z", + "endAt": "2019-09-24T19:40:41.950Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ce4d6f6a-f09f-4795-8438-1c800d003353", + "creativeSets": [ + { + "creativeSetId": "4f65fb7d-ed25-49e3-bc22-d4f0265a9306", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b330e135-d300-4d57-8135-d77cf1c3644d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "21 Day SharkTank Diet Plan - 30lbs Weight Loss in 21 Days!", + "title": "Letusslim", + "targetUrl": "letusslim.us" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9f869460-7b14-4ed1-b058-02cd8df58eec", + "name": "winter", + "startAt": "2017-09-24T19:40:42.939Z", + "endAt": "2019-09-24T19:40:42.939Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5a750705-4303-4be6-b491-be02179a913f", + "creativeSets": [ + { + "creativeSetId": "19b64f6e-abf5-4960-8ee9-693fa7f68e8f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9f71f5b2-dd33-40a5-a601-4c81323241e9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "New Skis Up To 80% Off - Best Deals on Skis and Gear", + "title": "Level Nine Sports", + "targetUrl": "https://www.levelninesports.com/?utm_source=bing&utm_medium=cpc&utm_campaign=Finch%20levelninesports.com%20US&utm_term=skis&utm_content=%5Bskis%5D" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "JyPVow_B-w86", + "name": "skiing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "32735bd3-3f12-4119-9cac-5257d870b5ee", + "name": "general", + "startAt": "2017-09-24T19:40:43.528Z", + "endAt": "2019-09-24T19:40:43.528Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e780ebab-cfb7-4602-a619-23f810463fa4", + "creativeSets": [ + { + "creativeSetId": "078edab9-0eae-4718-bfe6-4a08ebbabf5d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e2ddf272-1b9b-4080-b3a1-11ddc39e1db3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Psychology Degree Program - Liberty University Online", + "title": "Liberty", + "targetUrl": "www.liberty.edu/OnlineDegrees/Psychology" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mTbLUekRxb3", + "name": "Psychology Degree" + } + ] + }, + { + "creativeSetId": "845eaef1-4be1-4ee2-ac46-cf6722fc85e0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3939480f-fdfe-46aa-98f7-0d88e3ff7dce", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Liberty University Online - Fully Accredited - 100% Online", + "title": "Liberty", + "targetUrl": "www.liberty.edu/Online/Education" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "rNd-q2umuLA", + "name": "IT Online Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7650bea8-f442-4c4a-91e6-ee844bbe7832", + "name": "general", + "startAt": "2017-09-24T19:40:44.366Z", + "endAt": "2019-09-24T19:40:44.366Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1e06bd8b-3dd7-4b75-8fb6-9f11b0b0f135", + "creativeSets": [ + { + "creativeSetId": "8e90bb94-6e8a-4ad6-8d5b-8451b003b538", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "90b1e6a6-bb62-42f2-a3b3-6218a9540867", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Education University - Liberty University Online | liberty.edu", + "title": "Liberty University", + "targetUrl": "https://www.liberty.edu/online-at-liberty/education-degrees/?acode=D82994&subid=education%20university&_vsrefdom=bingppc&msclkid=6bbc4222097a1994dd7a185033f25f9f&gclid=COHDoO2Xg9kCFcfhfgodkdoMgg&gclsrc=ds&dclid=CIzRou2Xg9kCFUWdZAoddqcJVA" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "WWTWd1oZw_N-", + "name": "university" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "dbbb4507-0125-41e5-b98e-872a71f46456", + "name": "general", + "startAt": "2017-09-24T19:40:45.144Z", + "endAt": "2019-09-24T19:40:45.144Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c355dbb2-989d-4122-bc59-035e48746edd", + "creativeSets": [ + { + "creativeSetId": "52b8ed72-acbb-42af-9e53-2c78a39d7a4b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7fea0610-0d31-4bf3-bb4e-20e64d25da88", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fully Accredited - 100% Online - Liberty University Online", + "title": "LibertyEdu", + "targetUrl": "www.liberty.edu/Online/Education" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "ANs-xRChItO", + "name": "College Degrees Online" + } + ] + }, + { + "creativeSetId": "b1948a06-efe5-4dfd-beab-c5ded8432f46", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "10cc018e-a067-4258-ac50-3e97ea0774ae", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fully Accredited - 100% Online - Liberty University Online", + "title": "LibertyEdu", + "targetUrl": "www.liberty.edu/Online/Education" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "w5KTA-1-lyt", + "name": "Online Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2eca13f2-4918-48b9-8cf6-765d849d2dd5", + "name": "general", + "startAt": "2017-09-24T19:40:45.955Z", + "endAt": "2019-09-24T19:40:45.955Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d356720e-d217-4407-9b60-ef22e842fe3d", + "creativeSets": [ + { + "creativeSetId": "ae964d93-0b14-4766-be88-1d2d025e048b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5675ff5f-d03d-4f99-bb27-67114a69d3f7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Liberty Mutual® Car Insurance - Customized & Affordable", + "title": "Libertymutual", + "targetUrl": "www.libertymutual.com/Auto" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "oYzWfQaOXCj", + "name": "Car Insurance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "20d7cc90-a3d6-48c9-9cc0-ef46646f13b3", + "name": "general", + "startAt": "2017-09-24T19:40:46.662Z", + "endAt": "2019-09-24T19:40:46.663Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "03176655-2463-44c8-b6b6-25108a659a7c", + "creativeSets": [ + { + "creativeSetId": "b9bc379f-18ec-4ea8-8912-dcfcc864acf3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a8aa0566-8b52-4897-8d1f-8eb765d4cec6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "New Cars - Today | life123.com", + "title": "Life123", + "targetUrl": "www.life123.com/New Cars/Now" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "tGlEpkd2UFQ", + "name": "New Cars" + } + ] + }, + { + "creativeSetId": "0c824bc3-1ca5-468b-a1b5-3482926ad1db", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "79c857db-470b-4b9f-86be-2e0b83c7bcbf", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hearing Aid In Ear Canal - Today - Visit Life123.com", + "title": "Life123", + "targetUrl": "www.life123.com/Hearing Aid In Ear Canal/Now" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "LRNthVMNdVU", + "name": "Hearing Treatment" + } + ] + }, + { + "creativeSetId": "0af204a2-3708-49b1-bc0b-85fecdc5025b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b9f9a977-a9b4-4e4c-ad20-925701a4d2a7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "How To Apply Credit Card - Get Information | life123.com", + "title": "Life123", + "targetUrl": "www.life123.com/Here/How To Apply Credit Card" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "A7Bk9uyA2zgj", + "name": "Green Card Application" + } + ] + }, + { + "creativeSetId": "5dcc63de-7840-4c9d-af4c-839bd2fd466a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c6d9473b-7f35-4853-9b9c-adf8ec064c65", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Math Sheets - Fast Results", + "title": "Life123", + "targetUrl": "www.life123.com/Math Sheets/Here" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "o7RiTeSPDIyu", + "name": "Mathematics worksheets" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a55129c6-4c78-4b67-ac48-384c774de568", + "name": "general", + "startAt": "2017-09-24T19:40:47.989Z", + "endAt": "2019-09-24T19:40:47.990Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "abcb0cd4-26cf-4b34-b5ee-0f6bb4657e54", + "creativeSets": [ + { + "creativeSetId": "135b75da-1192-4688-81cc-2272ec796485", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2a52987e-f500-4733-bec2-9f039b377a06", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Glycine Amino Acid - Free Shipping on Orders $75+", + "title": "Lifeextension", + "targetUrl": "www.lifeextension.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "5Ry6TcY_ODM", + "name": "Buy Vitamins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f5fc7130-1046-44a0-987d-dbf9177e412e", + "name": "general", + "startAt": "2017-09-24T19:40:48.626Z", + "endAt": "2019-09-24T19:40:48.627Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "10ff7958-3e48-4e48-97df-571595b2ef59", + "creativeSets": [ + { + "creativeSetId": "afde8ca2-805c-4115-bd04-dbe60aebe12a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d3e75201-de96-4a2b-8ee4-803823b9bc61", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Exercises for Seniors - 9 Easy Exercises", + "title": "Lifeinthegoldenyears", + "targetUrl": "lifeinthegoldenyears.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "Gn19-1NmjlI", + "name": "Exercise Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2b585f6e-1c7c-4645-8f35-ef084b8f67ec", + "name": "general", + "startAt": "2017-09-24T19:40:49.231Z", + "endAt": "2019-09-24T19:40:49.231Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cf6222f4-3fad-41a5-9cf5-3981bfd34d58", + "creativeSets": [ + { + "creativeSetId": "dfa513c4-c2d4-454f-bd3b-c9a51f9510bd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "16e7820c-e1d8-4df8-ba67-b71c5e63e34b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "American Heart ACLS Class | LifeSaverCPR.net", + "title": "LifeSaverCPR", + "targetUrl": "https://lifesavercpr.net/classes/acls/" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "g_bxhojoVxdl", + "name": "cardiac" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "32fbd6ff-a39a-4c72-a263-6f774ea3ae7b", + "name": "general", + "startAt": "2017-09-24T19:40:49.872Z", + "endAt": "2019-09-24T19:40:49.872Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c9ca8414-104d-460d-a929-45d55b84bd2a", + "creativeSets": [ + { + "creativeSetId": "b0bae50d-cf49-4339-a894-733e56afd14c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3f73cc1c-2f5a-4aa5-9698-00e4961eed44", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Life Time Exercise Dance Class - Move to the best dance beats", + "title": "Lifetime", + "targetUrl": "www.lifetime.life/CardioClasses" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "tDcqDSsaTpB", + "name": "Dance Lessons" + } + ] + }, + { + "creativeSetId": "9ba4aa16-8230-4598-992c-5341072aed9a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3894855c-5446-4f16-a99d-8dfdf30dbaa0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Life Time - Basketball Gym - Request your guest pass today", + "title": "Lifetime", + "targetUrl": "www.lifetime.life/BasketballGym" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FiDfXRZJaDS", + "name": "Basketball Training" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9375dcff-895b-491b-b555-433e180277dd", + "name": "general", + "startAt": "2017-09-24T19:40:50.680Z", + "endAt": "2019-09-24T19:40:50.680Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d4e95309-4638-43fd-97d4-20e0f814cd18", + "creativeSets": [ + { + "creativeSetId": "e8518c4d-31a2-4bc9-b309-8efb25502896", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d580d0b4-432a-4ccc-a469-1426b52ac4d1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Christian Books - Find Top Sellers at LifeWay", + "title": "Lifeway", + "targetUrl": "www.lifeway.com/Books" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "WOkWXQNNvUq", + "name": "Christian Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "399e44d7-76a0-46d5-8ec6-5aafc1ab58f9", + "name": "general", + "startAt": "2017-09-24T19:40:51.433Z", + "endAt": "2019-09-24T19:40:51.434Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "75b0a984-f054-4c3c-9820-c03c70cbecae", + "creativeSets": [ + { + "creativeSetId": "571039b2-204b-4efd-81bb-92836a5360ee", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0d0b7c0c-2b39-40ce-827a-733c2a069933", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Lighthouse Marine Boat Sales - Affordable Boats & Pontoons", + "title": "Lighthousemarineva", + "targetUrl": "boatsales.lighthousemarineva.com/fishing boat/pontoons" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "tAc14oAedDq", + "name": "Fishing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f062dda3-459b-4dd9-b255-a76708088bc5", + "name": "general", + "startAt": "2017-09-24T19:40:52.248Z", + "endAt": "2019-09-24T19:40:52.249Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1a7d0ad6-f243-4f2c-a881-5f4c9cbdb878", + "creativeSets": [ + { + "creativeSetId": "01944cb5-119f-47c4-ad3e-cfd24c3a9f87", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "584713ea-755f-434b-b8e3-24e1dbea50d0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cycling Clothing Supplies | Lightinthebox.com", + "title": "Lightinthebox", + "targetUrl": "Lightinthebox.com/CyclingUnderwear" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "2SN69khRzXf", + "name": "Cycling Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6b8a1693-cce2-4244-a2e7-856ed336a655", + "name": "general", + "startAt": "2017-09-24T19:40:52.825Z", + "endAt": "2019-09-24T19:40:52.826Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "57831bf7-b677-45e9-b72b-97500f084e9f", + "creativeSets": [ + { + "creativeSetId": "29ba5738-13f5-476c-ae46-2f4390645037", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dfd05e72-4c3c-4ff8-bb7d-fe8dc7ab4f98", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Film Production Tutorials - Learn Anytime, Anywhere", + "title": "Linkedin", + "targetUrl": "www.linkedin.com/learning/film-making" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "BAhEnDxcxBo", + "name": "Film Production Degree" + } + ] + }, + { + "creativeSetId": "9d2539c3-1907-4e7c-b121-0889344c11c7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "64eda647-3d88-44f3-a0c2-d4108f645980", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Need To Hire Employees? - Find The Right Hire", + "title": "Linkedin", + "targetUrl": "business.linkedin.com/LinkedIn/Jobs" + } + } + ], + "segments": [ + { + "code": "6QLcn3Fnca-", + "name": "Careers" + }, + { + "code": "AkN_-chsgWP", + "name": "Find Work" + } + ] + }, + { + "creativeSetId": "457f7037-74b7-40c4-9714-878af40325b2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2ce0a36a-0e22-4c5d-9c00-4b53e8843bfc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Learn To Use Graphic Design - Learn, Master & Create.", + "title": "Linkedin", + "targetUrl": "www.linkedin.com/learning/Graphic-Design" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "EjsX_m6RTAg", + "name": "Graphic Designers" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4ea3468d-3092-48fe-9085-b255911456c0", + "name": "general", + "startAt": "2017-09-24T19:40:54.144Z", + "endAt": "2019-09-24T19:40:54.144Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "82777a94-6f8f-4ccd-80e6-fadccbeadb0c", + "creativeSets": [ + { + "creativeSetId": "d401370f-8291-4604-ae9f-6ecfae1e21f7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "308ae53e-d138-420b-832d-8e82130d49e4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Non Profit Donor Management - Donor Tracking Made Easy | littlegreenlight.com", + "title": "LittleGreenlight", + "targetUrl": "https://www.littlegreenlight.com/?msclkid=c3a84af18a0c1add54bf108969e3f7af" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "O7enBsgXOEPI", + "name": "non profit" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "50cfb17e-31fa-43de-a2fd-2e27573c0bb1", + "name": "general", + "startAt": "2017-09-24T19:40:54.899Z", + "endAt": "2019-09-24T19:40:54.899Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a41dc4a4-b3c6-4c26-9e72-adc50cfcb6b3", + "creativeSets": [ + { + "creativeSetId": "00a82a81-ec09-48c2-b3d4-235ec5bea1df", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0735e26e-9925-41ee-82e4-8d25042d7a9e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "#1 Fitness Camp - $1,259/week 4th Of July Promo!", + "title": "Liveinfitness", + "targetUrl": "www.liveinfitness.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "25b2ca1c-e3cf-4c7c-849f-db32e716c7b4", + "name": "general", + "startAt": "2017-09-24T19:40:56.597Z", + "endAt": "2019-09-24T19:40:56.598Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "87a4ffe7-b73f-4413-a9ca-393a78ecdafc", + "creativeSets": [ + { + "creativeSetId": "60e7f678-e3b1-4f67-a442-1bc8f72caffc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4e0f55b4-05cf-4d6f-9e62-11e3e3be447d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Allergic Asthma Treatment - See How Treatment May Help", + "title": "Livingwithallergicasthma", + "targetUrl": "www.livingwithallergicasthma.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "FFlMXuImzk5", + "name": "Asthma Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9efef616-5fd6-43fa-9a33-9e5571113ad7", + "name": "apparel", + "startAt": "2017-09-24T19:40:57.183Z", + "endAt": "2019-09-24T19:40:57.183Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ff03b5fd-6e5c-4b86-9c55-9b9acfdb6252", + "creativeSets": [ + { + "creativeSetId": "8597b45f-992a-4498-ac46-17a4b3850ec1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e325ed12-dc9c-4867-b72b-35f768e77985", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Women's Apparel - Be Ready For Any Adventure", + "title": "Llbean", + "targetUrl": "www.llbean.com/Apparel" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "cKE--V39Tbj", + "name": "clothing" + } + ] + }, + { + "creativeSetId": "e9d02a4d-9f6f-4e06-8051-ed6ae0b16436", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2123da3a-784c-4380-bdfd-4d25fea7388a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "L.L.Bean Canoeing Apparel - Versatile, Waterproof Apparel", + "title": "Llbean", + "targetUrl": "www.llbean.com/Kayaking" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "5nUrFtckCYM", + "name": "Kayaking Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "de88dc1e-728b-4af5-9745-086daa323694", + "name": "hobbies", + "startAt": "2017-09-24T19:40:57.923Z", + "endAt": "2019-09-24T19:40:57.923Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ff03b5fd-6e5c-4b86-9c55-9b9acfdb6252", + "creativeSets": [ + { + "creativeSetId": "98a546af-8534-4c22-9976-16cce96da7f8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "04ff47a1-ffba-4e0b-9551-3b87bdcdb460", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Birding Gear - Gear Up, Get Outside - Your Birding Experts", + "title": "Llbean", + "targetUrl": "www.llbean.com/Birding" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "tVTtOXMuslE", + "name": "Birdwatching Equipment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "46f3efb9-6b78-4f45-8ea7-9518cb314de0", + "name": "hobbies", + "startAt": "2017-09-24T19:40:58.261Z", + "endAt": "2019-09-24T19:40:58.262Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ff03b5fd-6e5c-4b86-9c55-9b9acfdb6252", + "creativeSets": [ + { + "creativeSetId": "13af3e91-5771-4dbf-a0d6-0ff8b5ab3c73", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "195309c6-e8e1-4554-b630-8cfa34ce98a2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fishing Gear - Essentials For Every Angler - llbean.com", + "title": "Llbean", + "targetUrl": "www.llbean.com/Fishing/Shop" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "tAc14oAedDq", + "name": "Fishing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "71de52da-3b1f-480b-9d45-a5bdc8d7f448", + "name": "hobbies", + "startAt": "2017-09-24T19:40:58.833Z", + "endAt": "2019-09-24T19:40:58.833Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "764a66e5-4e3a-4bc8-be4d-578eb00126c0", + "creativeSets": [ + { + "creativeSetId": "32bb9c73-870e-4874-b649-5052cdc70090", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8121ec85-729d-4bf4-bc05-9c488a1eca93", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Archery Courses | Online Booking Available", + "title": "LLBean", + "targetUrl": "www.LLBean.com/OutdoorDiscovery" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "MaS1t2gzIou", + "name": "Archery Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b36d9b7e-f5a5-4c93-9a00-a38427743dcf", + "name": "general", + "startAt": "2017-09-24T19:40:59.525Z", + "endAt": "2019-09-24T19:40:59.525Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7c9a3e61-7620-4bcd-ba8f-3553def30140", + "creativeSets": [ + { + "creativeSetId": "10919f3c-16bd-49b1-a63d-346e586d2d26", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a9028b25-933a-4871-8caf-4388abb540b3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Personal Loans Up To $50K | Free & Easy Online Application‎", + "title": "Loan.us", + "targetUrl": "loan.us.com/ ‎" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "BwhnRpkM8sF", + "name": "Personal Loans" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1bb42672-2c09-42ba-b5f9-fa407f5b21eb", + "name": "general", + "startAt": "2017-09-24T19:41:00.112Z", + "endAt": "2019-09-24T19:41:00.112Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a96b8ecf-6e57-4cce-9c07-ff823b2853e3", + "creativeSets": [ + { + "creativeSetId": "59e335da-69d1-4a0d-bf1a-ea06b359f675", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "67cb9ae4-f28f-43d7-b138-1cf31b6bc0ce", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2018 Mortgage Refinancing - loanDepot® Official Site", + "title": "Loans.loandepot", + "targetUrl": "loans.loandepot.com/Official_Site/Refinance_Today" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "dtTKtVFdpje", + "name": "Refinance" + } + ] + }, + { + "creativeSetId": "8f8ddb5e-489d-450f-ae61-b76762ddec84", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4f827216-f559-4048-b0ab-5daacc611ee2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "loanDepot® Official Site - Where America Shops for Loans", + "title": "Loans.loandepot", + "targetUrl": "loans.loandepot.com/Official_Site/Refinance_Today" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "ME0864i1Nfkc", + "name": "Refinance Home" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "24c826ec-3e0b-4b20-89a3-557417213c35", + "name": "general", + "startAt": "2017-09-24T19:41:00.918Z", + "endAt": "2019-09-24T19:41:00.919Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1ba4e6c3-ffd9-498c-aa04-e2e8e65ed0a2", + "creativeSets": [ + { + "creativeSetId": "80476ec9-290f-4b22-baa0-21e607a5a8c2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5256c51e-42ca-4ed0-b1b2-98d7411a8285", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The Key To $150-$5000 Cash Now - Is A Fast Personal Loan Online", + "title": "Loansonline.direct", + "targetUrl": "www.loansonline.direct/Personal_Loans" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "BwhnRpkM8sF", + "name": "Personal Loans" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d6be099d-4339-4e29-9942-6c0b833852a7", + "name": "general", + "startAt": "2017-09-24T19:41:01.547Z", + "endAt": "2019-09-24T19:41:01.547Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "470993ce-e9ab-4954-af93-97d4a65a6f2f", + "creativeSets": [ + { + "creativeSetId": "aab796b9-1cc6-4710-9a2f-3925fba90873", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b02a332f-1525-44a1-950e-6359005742c5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Veterinarians Near You", + "title": "LocalVets", + "targetUrl": "www.LocalVets.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "8BeGmq3KFPtE", + "name": "Local Listings" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bb2aff95-2973-46cb-95bb-742d39d2a733", + "name": "general", + "startAt": "2017-09-24T19:41:02.130Z", + "endAt": "2019-09-24T19:41:02.130Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0b803d5b-304a-42e5-9346-aedc6930bda9", + "creativeSets": [ + { + "creativeSetId": "265e4e7a-5694-4a99-bc3f-4bc4b8a5e132", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6e8ed50b-b647-4394-a169-4198c7c10629", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "$24.95 Parenting Online | LoganParentingClasses.com", + "title": "Logan Parenting Classes", + "targetUrl": "http://www.loganparentingclasses.com/" + } + } + ], + "segments": [ + { + "code": "fxvQmBzWeHv", + "name": "family & parenting" + }, + { + "code": "_IsYPZBkInmu", + "name": "parenting" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e2488f4e-07ab-42cc-b068-59f29229b39a", + "name": "general", + "startAt": "2017-09-24T19:41:02.775Z", + "endAt": "2019-09-24T19:41:02.775Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "18fc4c49-1a21-4dd2-bd26-939f4db2c0da", + "creativeSets": [ + { + "creativeSetId": "cd6331e3-1fbd-446d-b1cf-c7479f084727", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c1b8a806-1da5-471e-a2ec-61c17b07820c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "EP Pro Golf for Women - Lori's Golf Shoppe", + "title": "Lorisgolfshoppe", + "targetUrl": "lorisgolfshoppe.com/EPPRO" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "hDQ_wObOKVe", + "name": "Golf Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6eda622d-7f00-4655-a211-58c873961b4c", + "name": "general", + "startAt": "2017-09-24T19:41:03.344Z", + "endAt": "2019-09-24T19:41:03.345Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b85fb889-ac98-485e-8500-32befe60d53c", + "creativeSets": [ + { + "creativeSetId": "f8e7064c-6724-4129-97de-bb2c852702b2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a05a547b-5572-4901-b3f4-edcd088b211c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dental Care Sterling - Get Your Dream Smile", + "title": "Loudounsmilecenter", + "targetUrl": "www.loudounsmilecenter.com/family-dental" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "L-b6nomirMS", + "name": "Dental Care" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6446ff3a-b19e-4b89-98c8-ba9aa6883366", + "name": "general", + "startAt": "2017-09-24T19:41:04.072Z", + "endAt": "2019-09-24T19:41:04.072Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c3f84c79-8e2a-4d13-8f15-d9ede3e05161", + "creativeSets": [ + { + "creativeSetId": "59d44920-0eb4-4402-bc25-41ec0d38f263", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "889fec33-ec1d-48fe-a8b7-b7af177b1df9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Adult Sex Toy Store | Lovehoney.com", + "title": "Lovehoney", + "targetUrl": "Lovehoney.com/Adult-Toy-Store" + } + } + ], + "segments": [ + { + "code": "BLz4HWBCFN", + "name": "Adult" + }, + { + "code": "l3UPx578DUq", + "name": "Adult Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c04080a7-8c1e-417b-980e-c7c429398aec", + "name": "general", + "startAt": "2017-09-24T19:41:04.694Z", + "endAt": "2019-09-24T19:41:04.694Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c9bc1593-918e-41ce-9e40-dfd9805f7442", + "creativeSets": [ + { + "creativeSetId": "e5b073a6-80aa-4550-a3ae-6a17c61fcc4d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "10f22ca7-0eda-4e03-8371-be660238fac4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Should You Refinance? - Calculate Your New Payment", + "title": "LowerMyBills", + "targetUrl": "www.LowerMyBills.com/Mortgage/Refinance" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "dtTKtVFdpje", + "name": "Refinance" + } + ] + }, + { + "creativeSetId": "56996b6d-1d65-430b-8069-de4e0e3b5382", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8d54c8ff-1f14-4942-8d7a-54287d5d01dc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "HARP Is Expiring This Year - Don't Wait! Take Advantage Now", + "title": "LowerMyBills", + "targetUrl": "www.LowerMyBills.com/HARPRefinance/Program" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "ME0864i1Nfkc", + "name": "Refinance Home" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0576ff79-7815-4ae0-98c3-bda5d67c0abe", + "name": "general", + "startAt": "2017-09-24T19:41:05.530Z", + "endAt": "2019-09-24T19:41:05.530Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5ba3aeed-5657-44c8-b575-a41f21844f08", + "creativeSets": [ + { + "creativeSetId": "10984e60-9312-493d-bcdc-0a72d1711418", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f5bf4c83-7d0d-4c90-bae1-ccd39ab32fca", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Weber Grills", + "title": "Lowes", + "targetUrl": "lowes.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "w2RZcyzoMxq", + "name": "Barbecues" + } + ] + }, + { + "creativeSetId": "03348cec-a92b-45a5-94ac-ad85997ca4a4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "79cfc669-6b03-42c7-b072-6c7a88a298ca", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Lowes.com - Grass & Grass Seed - Artificial Grass", + "title": "Lowes", + "targetUrl": "lowes.com" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "u3b4RF02Ctr", + "name": "Artificial Lawns" + } + ] + }, + { + "creativeSetId": "7a359790-fac0-4304-b10a-5155c3f242c8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4ec9f559-ab9a-4dcc-8454-f0be7914e3f0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Lowe's® Home Appliances - Official Lowe's® Website", + "title": "Lowes", + "targetUrl": "www.lowes.com/Appliances" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "mkmN9m3WHmgP", + "name": "Home Appliances" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8ad59e5b-e6fd-48a1-a922-dc85df3a3bd2", + "name": "general", + "startAt": "2017-09-24T19:41:06.584Z", + "endAt": "2019-09-24T19:41:06.584Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "be8fd25e-b80d-4533-a94b-b5e0afe06d05", + "creativeSets": [ + { + "creativeSetId": "3327624f-c1a3-4f61-b436-63fc3aa96151", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "34cc9132-3772-4024-8983-a4b4deaa5c34", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Discount Natures Plus | LuckyVitamin.com | LuckyVitamin.com", + "title": "LuckyVitamin", + "targetUrl": "www.LuckyVitamin.com/Nature'sPlus" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "5Ry6TcY_ODM", + "name": "Buy Vitamins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2367bf3a-3120-419e-876d-ead842230f24", + "name": "general", + "startAt": "2017-09-24T19:41:07.161Z", + "endAt": "2019-09-24T19:41:07.161Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f459a21c-c7c6-4975-969a-a0f5afe16717", + "creativeSets": [ + { + "creativeSetId": "4317a6c2-cb30-4d72-8bd7-ab0adf921e74", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f40df401-f1b2-4f19-986b-410c611132ca", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Lyft $1,000 Driver Bonus - Official Lyft Driver Site | lyft.com", + "title": "Lyft", + "targetUrl": "www.lyft.com/Drive-With-Lyft/" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "9Alas5QGK_f", + "name": "Contractor Jobs" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7078ec2f-774c-4910-b1a5-73e3445f6be9", + "name": "general", + "startAt": "2017-09-24T19:41:07.737Z", + "endAt": "2019-09-24T19:41:07.738Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e42125d3-301e-43f2-a5e1-14ea04009ac9", + "creativeSets": [ + { + "creativeSetId": "1acda37c-b15c-49f4-b00b-a5c7f805f554", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c59626c5-740e-45b9-b24f-b2738f3079d7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "MacMall® Online Store", + "title": "MacMall", + "targetUrl": "www.MacMall.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "5Puf4sqhfzx", + "name": "Mac Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d2b6bff7-32af-48e4-be74-78ad5fb0ede1", + "name": "general", + "startAt": "2017-09-24T19:41:08.328Z", + "endAt": "2019-09-24T19:41:08.329Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "df60c88c-7358-44b0-b34c-1c23e9c5545f", + "creativeSets": [ + { + "creativeSetId": "eff1d32c-ab03-4051-bff6-88a3331f082e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a91b7e3b-4b6f-4e0f-85ce-144e71be3bf3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "CeCe Dresses at Macy's - Extra 20% Off 4th of July Sale", + "title": "Macys", + "targetUrl": "www.macys.com/Womens/CeCe" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "mDuvMtm0102", + "name": "fashion" + } + ] + }, + { + "creativeSetId": "c1420e25-2256-41d6-8fab-d76c63563245", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c813db59-70cc-4c08-b3b3-62881a17d5d5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Macy's® - Official Site", + "title": "Macys", + "targetUrl": "macys.com/Sale" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "VulAzM57Pkqw", + "name": "Online Deals" + } + ] + }, + { + "creativeSetId": "384a7b76-dd55-480c-a35c-87d13b77759b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "eedf7f89-176c-469a-a2f1-6f918aa6972f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Philosophy at Macy's - Free Shipping on Beauty Orders", + "title": "Macys", + "targetUrl": "www.macys.com/Beauty/Philosophy" + } + } + ], + "segments": [ + { + "code": "WeD6iqpYcRh", + "name": "Philosophy" + }, + { + "code": "rjZBSwH_A5h", + "name": "Philosophy" + } + ] + }, + { + "creativeSetId": "e31fc10f-2d8c-4a5c-a9f9-160cd76b51ce", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2a2635b7-6624-48d5-b1eb-d26e0bf7f0c8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Workout Clothes - Women's Activewear & Athletic Wear-Macy's", + "title": "Macys", + "targetUrl": "macys.com/WomensClothing/Activewear" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wRnrM16xXmY", + "name": "Athletic Clothing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cab3a1b8-6f6c-4215-af95-1ebd7d2e4004", + "name": "general", + "startAt": "2017-09-24T19:41:09.733Z", + "endAt": "2019-09-24T19:41:09.733Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "514ef46e-b06b-48ff-b9e5-997e32d26fbd", + "creativeSets": [ + { + "creativeSetId": "a068fd22-3760-46dc-af42-49c02f5858da", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4f4a052d-3638-43b4-9a75-495b32c7d1bf", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Farming Agriculture - Order Now", + "title": "Made-in-China.com", + "targetUrl": "http://www.made-in-china.com/Agriculture-Food-Catalog/Agriculture-Manure.html?utm_source=bing&utm_medium=cpc&utm_campaign=QP-Agriculture%20%26%20Food(Agriculture%20Manure)&utm_term=farming%20agriculture&utm_content=Agriculture%20Manure" + } + } + ], + "segments": [ + { + "code": "aXcOfw51CIU", + "name": "agriculture" + }, + { + "code": "OwsWxNfWfd0O", + "name": "agriculture" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2ea03831-cced-462a-bc3c-bd6025e5e254", + "name": "general", + "startAt": "2017-09-24T19:41:10.322Z", + "endAt": "2019-09-24T19:41:10.323Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8d40a87f-4352-428d-93a5-041b41887d59", + "creativeSets": [ + { + "creativeSetId": "b3a05ede-0aa8-461a-b466-509fa634485f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b3bc2f50-c0f0-412f-9677-08a424159db4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The best GAY - LGBT tours - Madrid Gay Experiences", + "title": "Madridgayexperiences", + "targetUrl": "www.madridgayexperiences.com" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "E4Jw5e24-6gs", + "name": "Gay Meet" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5d8867a5-bb9e-4c92-8f74-6091302fdd8a", + "name": "general", + "startAt": "2017-09-24T19:41:10.871Z", + "endAt": "2019-09-24T19:41:10.871Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d079fc13-b3b8-4252-9386-4d448d7933f1", + "creativeSets": [ + { + "creativeSetId": "022c8e94-04f2-44fb-b96d-5377f616205d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "78135bb7-3a0f-4fc6-83c3-4a1048cf686f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "JW Products and Supplies | Madzay.com", + "title": "Madzay", + "targetUrl": "Madzay.com" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "WOkWXQNNvUq", + "name": "Christian Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "28a74340-29c1-4a29-8af1-c973d3806c62", + "name": "general", + "startAt": "2017-09-24T19:41:11.444Z", + "endAt": "2019-09-24T19:41:11.445Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7d8c4e8c-578c-4fb6-8c7f-2929a5dd191f", + "creativeSets": [ + { + "creativeSetId": "fff9fbd9-92ee-4e54-acb2-312f9d3f236a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7f46cbae-829f-4763-b52a-a3f90bdba4f9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Science and Mechanics / Everyday Science and Mechanics", + "title": "Magazine Art", + "targetUrl": "http://www.magazineart.org/main.php/v/technical/sciencemechanics/" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "G3ByoAtFln_6", + "name": "mechanics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "189ac644-1017-4cf8-9b34-f169cef56cf1", + "name": "general", + "startAt": "2017-09-24T19:41:12.176Z", + "endAt": "2019-09-24T19:41:12.177Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cd58e8d3-7c41-44b6-b942-71ba8b7ee3e1", + "creativeSets": [ + { + "creativeSetId": "a08098df-0e96-47ec-ae53-0ea1c566ecab", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "759804cd-ad75-4146-9840-428a180b1069", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Astronomy Subscription - Subscribe, Renew or give a Gift", + "title": "Magazine-order", + "targetUrl": "Magazine-order.com/Astronomy" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "M_ZptOvQUEHi", + "name": "Astronomy Magazine" + } + ] + }, + { + "creativeSetId": "6a17e216-a774-43b0-81ac-d4b9a84daf5e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "50691025-2bc6-4b71-9970-53747150dd68", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Trains Magazine", + "title": "Magazine-order", + "targetUrl": "Magazine-order.com/Trains" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6dab1nE-Ik7", + "name": "Train Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "75bf7957-f7d0-4bde-8fc9-1b6c6081e02b", + "name": "general", + "startAt": "2017-09-24T19:41:13.017Z", + "endAt": "2019-09-24T19:41:13.017Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8af72da0-5997-498f-a9f9-f1bf894bf862", + "creativeSets": [ + { + "creativeSetId": "4885b00c-90a6-452b-b7c4-c5772fce9180", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "300033aa-c9c1-431a-b663-18454399e789", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Magento Commerce Platform - The Leader in Digital Commerce", + "title": "Magento", + "targetUrl": "about.magento.com/Magento/Free-Demo" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "zgMSYI-gfMo", + "name": "eCommerce Websites" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d99b1614-4693-4158-b325-6928200c11f0", + "name": "general", + "startAt": "2017-09-24T19:41:13.627Z", + "endAt": "2019-09-24T19:41:13.630Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b297b5cc-af25-4318-aa4b-4c69b98a72b6", + "creativeSets": [ + { + "creativeSetId": "cfc84587-49a0-4b1c-8e22-44454287efe9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9ebc6a0e-6ef9-4fd8-8a0f-4c60edb8c02c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Maisonette Childrens Boutique - Free Shipping until 6/30", + "title": "Maisonette", + "targetUrl": "www.maisonette.com/free-shipping" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "mDuvMtm0102", + "name": "fashion" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a85a8e39-0973-4ada-8a00-3a1fa7ef59e5", + "name": "general", + "startAt": "2017-09-24T19:41:14.257Z", + "endAt": "2019-09-24T19:41:14.257Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9ff776a5-f911-46b9-bd23-406788a128ca", + "creativeSets": [ + { + "creativeSetId": "a2bfc671-2ef2-45af-b36a-02c559875901", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ed6c16da-2e8b-4d48-8feb-2b6f98731e6d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Smart Deals, Big Savings – Greeting Cards", + "title": "Mammoth Shopper", + "targetUrl": "http://www.mammothshopper.com/jewish/search?rf=gem" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "_jNq3Da1aIl0", + "name": "judaism" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "18ffd724-3dbd-4022-bf71-a24f7ef9c808", + "name": "general", + "startAt": "2017-09-24T19:41:14.834Z", + "endAt": "2019-09-24T19:41:14.835Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "88e831c8-c6af-4f07-8db9-d3cd739bdf92", + "creativeSets": [ + { + "creativeSetId": "8bcb1d9b-7493-4252-9171-f37f0a05fba8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "378af8d5-e6ea-46c8-a20b-b3dc03623057", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "ManCrates® (Official Site) - Awesome Drinking Gifts for Men", + "title": "Mancrates", + "targetUrl": "www.mancrates.com/Mens_Gifts" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "unFLrtorUoq", + "name": "Alcohol Delivery" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5b8ceee7-1a5b-4529-a93e-e9c899f16757", + "name": "general", + "startAt": "2017-09-24T19:41:15.409Z", + "endAt": "2019-09-24T19:41:15.410Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4a1aca73-ecf6-4575-bbe4-ce69ed8b12ca", + "creativeSets": [ + { + "creativeSetId": "bb127ebb-abf8-4a18-9068-79f8b66b4bca", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "91c88be2-756b-49ed-8317-94fd3a67166b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Marathon Business Fuel Cards - 90% Acceptance Nationwide", + "title": "Marathonfleetcard", + "targetUrl": "www.marathonfleetcard.com/Fuel/Management" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "OAA-T668LRa", + "name": "Fuel Cards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "51c33ee6-a76b-40b1-b368-62b5a5e157d8", + "name": "general", + "startAt": "2017-09-24T19:41:16.009Z", + "endAt": "2019-09-24T19:41:16.009Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d427a001-fe52-4960-9387-0cfdc3424010", + "creativeSets": [ + { + "creativeSetId": "6dac9e0d-bbf6-4e2a-9632-19bce17b47f2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b3a55a5a-9232-4e87-a69d-e8cfc79844a5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Marcus by Goldman Sachs® - Good Credit Required | marcus.com", + "title": "Marcus", + "targetUrl": "www.marcus.com/Personal/Loans" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "BwhnRpkM8sF", + "name": "Personal Loans" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c47a034c-7a60-41c5-ac89-4f30b868963c", + "name": "general", + "startAt": "2017-09-24T19:41:16.588Z", + "endAt": "2019-09-24T19:41:16.588Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "62f4714d-d118-4008-b57d-8726bd073e8a", + "creativeSets": [ + { + "creativeSetId": "a42e0ec6-83be-4eb9-ad91-623e4bfce6d9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1d20efc1-99cc-495f-9a75-bfaf1589e17d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Aquarium Accessories - Free Shipping, No Minimum", + "title": "Marinedepot", + "targetUrl": "www.marinedepot.com/Aqua/Illumination" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "T2fnJ3M0GxS", + "name": "Aquarium Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0bf6349b-b8a3-4632-af57-7e878ffe5952", + "name": "general", + "startAt": "2017-09-24T19:41:17.201Z", + "endAt": "2019-09-24T19:41:17.202Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "02bc2c46-b97a-41bc-b2e5-dff92e96baec", + "creativeSets": [ + { + "creativeSetId": "b14a61eb-4001-4490-8a5e-3e4142ba0600", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ff4abe55-1923-4aa3-a23e-104f6eeb8d78", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "How to Save A Marriage. - There are 7 Secrets - Get 'em Free", + "title": "MarriageMax", + "targetUrl": "https://marriagemax.com/7-secrets/marriage-tips-g/" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "YQfHy8GYDEc9", + "name": "marriage" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6979bb5f-123a-495b-b983-a387d83508e0", + "name": "general", + "startAt": "2017-09-24T19:41:17.776Z", + "endAt": "2019-09-24T19:41:17.777Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "83fa3d42-4b21-4b3a-884d-5b82c5c6d8dc", + "creativeSets": [ + { + "creativeSetId": "ba04b6fc-9ea9-4b9d-ba46-e11c4113a96f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "39c68865-6f98-4915-8443-e2a8fe36fac3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Stephen Curry Teaches Shooting - Develop Your Basketball Skills", + "title": "Masterclass", + "targetUrl": "www.masterclass.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FiDfXRZJaDS", + "name": "Basketball Training" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e148539f-8890-4b77-ae27-914305dfd132", + "name": "general", + "startAt": "2017-09-24T19:41:18.375Z", + "endAt": "2019-09-24T19:41:18.376Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "71b0b01c-d2a1-4e35-a78e-e15aaf350eb9", + "creativeSets": [ + { + "creativeSetId": "543e853d-6f68-4927-8b28-272f7b2d5459", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "85210e8d-0417-44a0-a7d1-e62201599076", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Match.com® Online Dating - It's Free to Look, Sign Up Now", + "title": "Match", + "targetUrl": "www.match.com/Dating/Christian Meet" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "tEYym_TVzMg", + "name": "Christian Meet" + } + ] + }, + { + "creativeSetId": "51d50207-2492-420f-80bf-92e04055ced4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8d974a66-76bf-4f78-a6db-c3d79ec8467f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dating Site - Free Photos - Meet Someone New on Your Phone", + "title": "Match", + "targetUrl": "Match.com/Dating" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "MHIWE-lPdQmA", + "name": "Dating" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "942f6deb-5a26-4806-88b7-0e67ef450ddb", + "name": "general", + "startAt": "2017-09-24T19:41:19.195Z", + "endAt": "2019-09-24T19:41:19.196Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d4f08f66-1a41-44e5-94b6-997b41e4a42a", + "creativeSets": [ + { + "creativeSetId": "a2dc2c6f-e1a1-48c5-87f1-d46e94fe1c89", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9722368e-08e4-46bf-bb65-c0c05e8869cf", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Are You 55+ & Single? - Find Your Next Partner Here | matchseniors.com", + "title": "Match Seniors", + "targetUrl": "http://www.matchseniors.com/?aff_id=518&camp_id=5142&o=156&s1=bing_1&s2=&s3=&s4=&s5=&c=1171&source=bing_1&reqid=113131361&msclkid=a9feda83c53418b830d980f1fd20ace1" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "MHIWE-lPdQmA", + "name": "Dating" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a37e50ae-f8da-4077-8f7e-119057f3c60a", + "name": "general", + "startAt": "2017-09-24T19:41:19.773Z", + "endAt": "2019-09-24T19:41:19.774Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0c32f69f-0fe8-480c-a4ec-8cdeb2c5a8fd", + "creativeSets": [ + { + "creativeSetId": "86b5b6ec-738c-4d32-943c-fe8c8500c73a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f911641d-6add-4568-99d1-9894d75b2504", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Maytag® Appliances - Dependability You Can Count On", + "title": "Maytag", + "targetUrl": "www.maytag.com/appliances/kitchen-laundry" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "mkmN9m3WHmgP", + "name": "Home Appliances" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "081ae82c-2fdd-4fc1-9efe-8d6221a1d739", + "name": "general", + "startAt": "2017-09-24T19:41:20.358Z", + "endAt": "2019-09-24T19:41:20.358Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "eb335a24-9bee-4353-8c8c-ef3dfb20de9e", + "creativeSets": [ + { + "creativeSetId": "f1c9a629-7ce3-48ab-9d37-6447b9a71512", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b18c8c9f-f972-45e2-9f4b-58a76b53d2b8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Meal Delivery Plans 2018 - Compare 10 Best Meal Delivery", + "title": "Meal-delivery-plans.thetop10sites", + "targetUrl": "meal-delivery-plans.thetop10sites.com/MealDelivery/2018Chart" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "RjX-wPWa8Z_f", + "name": "Meal Deliveries" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "59ee5d27-3c63-4bc7-8fd1-3d67ff085339", + "name": "general", + "startAt": "2017-09-24T19:41:20.952Z", + "endAt": "2019-09-24T19:41:20.952Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5cc0ae0b-c636-4087-884e-af531306b785", + "creativeSets": [ + { + "creativeSetId": "cedb0cbd-23b1-4354-b248-3a9e0fc1943d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "40cb1946-b0fe-41ae-a261-0dad51cfe49e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Chronic Pain: Get the Facts on Management - MedicineNet", + "title": "MedicineNet", + "targetUrl": "https://www.medicinenet.com/chronic_pain/article.htm" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "dzof5t59l1IA", + "name": "chronic pain" + } + ] + }, + { + "creativeSetId": "d8ddff56-99ab-4d98-9ef1-88cb03593ea4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "af812704-4772-4745-a974-f86c9d7e104a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Stress: Facts on Symptoms and Stress Management", + "title": "MedicineNet", + "targetUrl": "https://www.medicinenet.com/stress/article.htm" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "hFjA9YDDidcl", + "name": "stress" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bc5ca6bf-7e98-46af-ade4-3af36bd16da6", + "name": "general", + "startAt": "2017-09-24T19:41:21.764Z", + "endAt": "2019-09-24T19:41:21.765Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ba2796f0-f856-4643-a736-b44419779b72", + "creativeSets": [ + { + "creativeSetId": "3f11b140-fdfe-4848-9ff3-0f22c42c0296", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b2cba43a-a41b-43f2-8811-a00873e36a5d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Gay Meetups - MenInLove.com", + "title": "Meninlove", + "targetUrl": "www.meninlove.com" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "E4Jw5e24-6gs", + "name": "Gay Meet" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7ae3f456-9bff-4843-af69-3b52147726cb", + "name": "general", + "startAt": "2017-09-24T19:41:22.328Z", + "endAt": "2019-09-24T19:41:22.328Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5c261a20-fa83-4912-965a-90ea4f13fcb9", + "creativeSets": [ + { + "creativeSetId": "4247298d-20e8-4d2b-b9f7-e68761cf96b8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e9b3062c-1b17-4214-a95f-384665a65fca", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Premium Cocktail Menu Covers - Call To Learn More And Order", + "title": "Menucovers", + "targetUrl": "www.menucovers.com/Cocktail" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "EpjpWnjpgxV", + "name": "Drink Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2908ac7e-bf33-4cad-a63a-726c4d4df4a6", + "name": "general", + "startAt": "2017-09-24T19:41:22.903Z", + "endAt": "2019-09-24T19:41:22.904Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "95f19eee-36a2-425f-a754-1e3bb278ad7f", + "creativeSets": [ + { + "creativeSetId": "e41f20ae-311f-417e-844c-aedff80f5240", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1ada9094-eb3b-4be0-98d6-4750fa36204b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Rare Coins on Mercari - Now Up to 70% off", + "title": "Mercari", + "targetUrl": "www.mercari.com/Rare-Coins" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "K24r-df9CcZ", + "name": "Rare Coins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5213469b-0440-42e5-8616-8a6d391d1099", + "name": "general", + "startAt": "2017-09-24T19:41:23.546Z", + "endAt": "2019-09-24T19:41:23.547Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2ef05915-beec-47b8-90fb-2f97a3ba3090", + "creativeSets": [ + { + "creativeSetId": "05c6d900-b908-4c05-b815-eaf19dc1b760", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e3148d87-1db7-4ef5-9aec-e267f71f59d8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Del Computers - Search Del Computers | metacrawler.com", + "title": "Metacrawler", + "targetUrl": "www.metacrawler.com/Dell%20Computers" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "r-ofzMLNsK8", + "name": "Dell Computers" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "77dccca1-51d5-4681-8436-4fc4bf1e26af", + "name": "general", + "startAt": "2017-09-24T19:41:24.118Z", + "endAt": "2019-09-24T19:41:24.118Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1a18c3b2-61d4-4554-abf2-dfec27adbece", + "creativeSets": [ + { + "creativeSetId": "55c2b09b-447a-4785-b322-d27b3f0a686e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2e24656d-0063-4b01-b05a-98a6ff14365a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Metalworking Supplies", + "title": "Metalworking.Rockler", + "targetUrl": "Metalworking.Rockler.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "kORnSRyr0FJ", + "name": "Metalwork Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "de1027d6-1086-4572-be4f-892351e270f0", + "name": "general", + "startAt": "2017-09-24T19:41:24.729Z", + "endAt": "2019-09-24T19:41:24.730Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "05df1f3d-e20a-4f70-b428-d9cb1b931fbb", + "creativeSets": [ + { + "creativeSetId": "8ddcb6e4-491e-44f3-aeff-300cc868e6c5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "97946c84-a026-4ed7-ac56-37a277cbeec9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "MGM Natl Harbor Theater - Tickets On Sale for Oxon Hill", + "title": "Mgmnatlharbortheater", + "targetUrl": "mgmnatlharbortheater.secureboxoffice.com/OxonHill" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "mqSw-gRLA7p", + "name": "Boxing Tickets" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "aa933327-3bd1-46c3-8fe4-7aa16a400788", + "name": "general", + "startAt": "2017-09-24T19:41:25.350Z", + "endAt": "2019-09-24T19:41:25.350Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bda96be9-41c2-4c8f-a302-70d75abc0049", + "creativeSets": [ + { + "creativeSetId": "31cfcb09-7ec4-42c9-8d46-d735ae049088", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8577d146-7471-4579-b29d-34041121e769", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Aaron Brothers® Custom Framing | At Michaels® - Grand Opening‎", + "title": "Michaels", + "targetUrl": "www.michaels.com/ ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "18fq9aiLp0z", + "name": "body art" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1d919447-0479-4415-9b9a-1c1b9df5b1fa", + "name": "general", + "startAt": "2017-09-24T19:41:25.964Z", + "endAt": "2019-09-24T19:41:25.965Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "89012c97-02fb-4c1f-9385-2bce046568ef", + "creativeSets": [ + { + "creativeSetId": "9b87c65d-2671-4622-9bb4-3ec00d18bdc4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e46259eb-4269-49aa-875d-e16294cdefa7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Microsoft Education - Personalize Learning for All", + "title": "Microsoft", + "targetUrl": "www.microsoft.com" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "wz0LfYE3w8k", + "name": "Geography Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9d23d93f-1fdb-4eda-88fa-682e85b29321", + "name": "general", + "startAt": "2017-09-24T19:41:26.573Z", + "endAt": "2019-09-24T19:41:26.573Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4baa9544-91a4-4453-9069-96281506028f", + "creativeSets": [ + { + "creativeSetId": "7cda4ea9-e75a-4d38-9bb0-c470737be535", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8ef3b954-8aa0-4fac-b5d8-4d37265101ce", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Brewing Kit - Available at Midwest Supplies", + "title": "Midwestsupplies", + "targetUrl": "www.midwestsupplies.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "sSHTp7EuwPZ", + "name": "Brewery Kits" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e70b8565-025a-4020-912e-d1277d9ec419", + "name": "general", + "startAt": "2017-09-24T19:41:27.175Z", + "endAt": "2019-09-24T19:41:27.175Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "eae5a969-2f1b-46ec-a53c-cce14e6fcfe8", + "creativeSets": [ + { + "creativeSetId": "4c428caa-dcb0-4715-b507-e5c3763f9a8b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "317ab2bd-b37b-4310-8753-1627fffd5ad8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Merrill Lynch Advisor | ml.com", + "title": "Ml", + "targetUrl": "www.ml.com/MerrillLynch" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "z7floCfZA_P", + "name": "Financial Advisors" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2f4d8bc8-3b42-4fab-bebd-9b377f81542f", + "name": "general", + "startAt": "2017-09-24T19:41:27.741Z", + "endAt": "2019-09-24T19:41:27.741Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d8a77ab8-f6e0-49eb-a8a4-c0e0a0b347bb", + "creativeSets": [ + { + "creativeSetId": "6bd27b1f-94e6-4e4f-bd5c-c0b4d408990d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d9b12398-0ab3-438a-9e83-d7ccd99e7ffc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2018's Best Free Online RPGs - Top 30 MMOs. Updated Weekly.", + "title": "Mmobro", + "targetUrl": "www.mmobro.com/online-rpgs" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "o7Q1hjps7Vm", + "name": "Online PC Games" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8cda8add-cbda-41a4-b42a-3febe4260ebc", + "name": "general", + "startAt": "2017-09-24T19:41:28.343Z", + "endAt": "2019-09-24T19:41:28.343Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ab829ac3-ae1b-4713-af09-7aa82a36facf", + "creativeSets": [ + { + "creativeSetId": "28ab111c-0e06-4b03-a35a-cd0567afb59f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "030f4f49-bfc3-43a8-bb27-f5194c337eb0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "PC Cleanup & Optimization - $60/half hour", + "title": "Mobilepcsolutions", + "targetUrl": "mobilepcsolutions.com/services" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "1Uk9lOnHZczB", + "name": "Computer Repairs" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fdc224f2-f166-4994-bbfe-62b207c1269d", + "name": "general", + "startAt": "2017-09-24T19:41:28.933Z", + "endAt": "2019-09-24T19:41:28.933Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "84bf84cb-4b2b-4bdc-b895-892e1a6da418", + "creativeSets": [ + { + "creativeSetId": "d5f1cd1d-5dfa-4d91-ac60-2696d6e20a33", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "15a73c4e-7f96-4a0d-8303-71feaa1727e0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find Personal Loans to $2,500 - Recommended by Montel Williams", + "title": "Moneymutual", + "targetUrl": "moneymutual.com/Find-a-Lender/Personal-Loans" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "BwhnRpkM8sF", + "name": "Personal Loans" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a477b2b1-7fa0-4489-91b8-46d8b63a7369", + "name": "general", + "startAt": "2017-09-24T19:41:29.508Z", + "endAt": "2019-09-24T19:41:29.508Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "11ec5d46-bee6-40b6-9000-ab8dd08683e6", + "creativeSets": [ + { + "creativeSetId": "83e5e5f9-4fcd-4e5f-ad9a-15e0c666beed", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "896d138d-eb2f-4857-9ee2-75ed449fc50c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Looking for Driving Jobs? - New Jobs posted in your area", + "title": "Monster", + "targetUrl": "www.monster.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "8BeGmq3KFPtE", + "name": "Local Listings" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e73e023b-6153-46f9-9cd2-daf76e74d953", + "name": "general", + "startAt": "2017-09-24T19:41:30.076Z", + "endAt": "2019-09-24T19:41:30.076Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "865b23f1-8910-4812-a941-a64d5be371dc", + "creativeSets": [ + { + "creativeSetId": "abf120b7-1aa2-4240-b50e-512d35f6d206", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a0e9accb-5711-48e9-aa91-1633a4c9d3ac", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Climbing Gear - Moosejaw.com | moosejaw.com", + "title": "Moosejaw", + "targetUrl": "www.moosejaw.com/Shop/Climbing" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "zJrrQvnmCnp", + "name": "Climbing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "38c12017-4995-4067-a32b-948ac2b3b057", + "name": "general", + "startAt": "2017-09-24T19:41:30.666Z", + "endAt": "2019-09-24T19:41:30.666Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0cb60bc5-006a-4734-a779-e2680a4c6d97", + "creativeSets": [ + { + "creativeSetId": "3ff9a303-8342-49a5-96e8-574128142547", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "12edf473-67ad-4093-bb8c-7cb629ac4bcc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Research, Find & Buy a 2-Door Coupe Car - Motor Trend", + "title": "Motor Trend", + "targetUrl": "http://www.motortrend.com/style/coupe/" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "46fA70QMGoy6", + "name": "coupe" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4c009841-23ef-4093-96e2-e9db5bdb5cf8", + "name": "general", + "startAt": "2017-09-24T19:41:31.253Z", + "endAt": "2019-09-24T19:41:31.253Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1d0d2f74-6c2d-427b-9477-ca0904818632", + "creativeSets": [ + { + "creativeSetId": "9cc6f9ec-14db-4e83-845f-9d294e036a73", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "10967f8a-2e6d-405c-980d-3337999f3c1f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Most Relevant Results On – Small Business | Mrlocal.com", + "title": "Mr Local", + "targetUrl": "http://mrlocal.com/?pid=9PORBGE8P&utm_campaign=gJc04K3&utm_term=business&utm_medium=b&g_ti=kwd-304088533416&g_de=c&g_ci=363950602&g_ai=9676962419&utm_content=1" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "0XdXzpQTyRFq", + "name": "business" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d35f15fd-bf81-4ef8-85bb-c01357271bc3", + "name": "general", + "startAt": "2017-09-24T19:41:31.807Z", + "endAt": "2019-09-24T19:41:31.808Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "125531c5-d192-43cf-9fe5-2e1ece2b745c", + "creativeSets": [ + { + "creativeSetId": "358cd77c-a1b1-49f3-ab2c-e946092719ef", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "81a36569-85e3-438b-9637-a978eb93d259", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "MSC Metalworking - MSC Industrial Supply Co®", + "title": "Mscdirect", + "targetUrl": "www.mscdirect.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "kORnSRyr0FJ", + "name": "Metalwork Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8c240bd2-1055-4e3f-8022-d9c24c8a1e4b", + "name": "general", + "startAt": "2017-09-24T19:41:32.414Z", + "endAt": "2019-09-24T19:41:32.414Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a645b1af-f604-4075-8cac-75947762f2f5", + "creativeSets": [ + { + "creativeSetId": "1d5cc77c-ecf3-4f1a-930c-2e159503d946", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "393933ae-3baf-40df-85c0-5d6d10fa27db", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Old Bowling Equipments Sale - Call Us Today", + "title": "Murreybowling", + "targetUrl": "murreybowling.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "e5hD9xkeyjO", + "name": "Bowling Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "eddd5db3-e18d-4f6e-8e60-35b4102bf187", + "name": "general", + "startAt": "2017-09-24T19:41:33.008Z", + "endAt": "2019-09-24T19:41:33.009Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d0916af9-0d3f-432f-8e7a-bf6332c9aa89", + "creativeSets": [ + { + "creativeSetId": "92cb68be-5435-481e-aa19-02531d098f5a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b69d3e87-2ba9-4871-9742-cb814202de7c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Book Distribution - IngramSpark Self Publishing", + "title": "Mya", + "targetUrl": "myaccount.ingramspark.com/account/signup" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "KjrAF8XxEDc", + "name": "Book Publishing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "434e1d2f-bc4b-4d84-aac1-b066b1daf6d9", + "name": "general", + "startAt": "2017-09-24T19:41:33.660Z", + "endAt": "2019-09-24T19:41:33.661Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3ee3b3d6-e0e8-4b00-beeb-d31d6d76caaf", + "creativeSets": [ + { + "creativeSetId": "79e2bac3-925b-4a47-a47f-204f7d9cfee6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "42935d28-48f4-4a59-9cc6-358bfb196ade", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Need to Find a Lawyer? | MyAttorneyHome.com", + "title": "MyAttorneyHome", + "targetUrl": "MyAttorneyHome.com" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "E_MEtpVexy1", + "name": "Find a Lawyer" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8fcf655b-bc09-485f-af7e-ac7dbe42af8e", + "name": "general", + "startAt": "2017-09-24T19:41:34.269Z", + "endAt": "2019-09-24T19:41:34.269Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4a2c9e11-2556-411f-b58e-cab1c7a44e49", + "creativeSets": [ + { + "creativeSetId": "0c9c2209-824c-4d93-aa13-6729902d0003", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7bbfbf62-cc80-458c-aafa-28d1dbd4855c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The Best Banks of 2018 - Find the Perfect Bank for You", + "title": "Mybanktracker", + "targetUrl": "www.mybanktracker.com/best/banks" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "7MiD5IH1W6t", + "name": "Bank Accounts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a93ed15e-fc2a-4b95-bbeb-a7277e0c4c23", + "name": "general", + "startAt": "2017-09-24T19:41:34.859Z", + "endAt": "2019-09-24T19:41:34.860Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3913b877-0931-4e0e-8ff8-3c1bc2604461", + "creativeSets": [ + { + "creativeSetId": "029c0cb0-7a3f-4e87-b393-c76b27c285c3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "00193f54-2678-4d0b-977a-4f9e9119e0da", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online Genealogy - Free & Easy - Just Enter Names", + "title": "Myheritage", + "targetUrl": "www.myheritage.com/Genealogy" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "pPUDW42mDiO", + "name": "Genealogy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "375a6ad0-210d-4a7b-b2d4-5b273f4ffb45", + "name": "general", + "startAt": "2017-09-24T19:41:35.425Z", + "endAt": "2019-09-24T19:41:35.425Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8d86a08f-5e15-4d4c-9f23-37a6837c9e20", + "creativeSets": [ + { + "creativeSetId": "4c9f0094-c78b-466f-bbc3-75d8a6ae43fa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "525882f2-518e-491f-bec5-b8cd8e7254c1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Warranty Plan - Get Full Protected", + "title": "Myhomeprotectionplan", + "targetUrl": "www.myhomeprotectionplan.com" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "mkmN9m3WHmgP", + "name": "Home Appliances" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1bf54df4-590f-411e-aebf-99a55827fee1", + "name": "general", + "startAt": "2017-09-24T19:41:36.035Z", + "endAt": "2019-09-24T19:41:36.035Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "25fe40ca-967c-46b6-bd2b-087a6cb8c99a", + "creativeSets": [ + { + "creativeSetId": "6c9344d1-b7d8-495b-b421-260e18a0eec2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "59255885-2867-4f22-8e8a-00e0e6e8e0eb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rare Stamps - Mystic Stamp Company", + "title": "Mysticstamp", + "targetUrl": "www.mysticstamp.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "12wGC9Ye4QL", + "name": "Rare Stamps" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a6e1a394-5593-4ceb-97cd-dccf97fa53c7", + "name": "general", + "startAt": "2017-09-24T19:41:36.679Z", + "endAt": "2019-09-24T19:41:36.679Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8fc78934-b195-4651-a1c9-6b34210618ff", + "creativeSets": [ + { + "creativeSetId": "edf08f67-6836-4a90-babd-bb6336c76609", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "60a3af2b-a8dd-432d-b7de-168f78e3c07f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Specials All Month Long - NAPA AUTO PARTS - Save All Month Long", + "title": "Napaonline", + "targetUrl": "www.napaonline.com" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "px5LkO5yZzb", + "name": "Auto Parts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "71be6ed9-89f4-46f8-b928-7490ed902ac0", + "name": "general", + "startAt": "2017-09-24T19:41:37.241Z", + "endAt": "2019-09-24T19:41:37.241Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8ccf4eb0-1487-4068-9fc8-df4d1249dbad", + "creativeSets": [ + { + "creativeSetId": "f2fec125-8d0f-4f35-9cef-9e4a7308263f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "858220d0-624e-475a-a572-c2aa73abbcb7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Wearable Nutrition - DERMA FUSION TECNOLOGY", + "title": "NathanMinter.thrive2point0", + "targetUrl": "NathanMinter.thrive2point0.com/wearable/nutrition" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mltw3XEd08nw", + "name": "Health & Fitness Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "12c3a613-5a52-4eda-ae00-d223e293976e", + "name": "general", + "startAt": "2017-09-24T19:41:37.807Z", + "endAt": "2019-09-24T19:41:37.807Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c484fb4c-dc1f-4b2d-8de5-bd0ff75f0e9f", + "creativeSets": [ + { + "creativeSetId": "bcc1be12-542a-45d5-9c96-b376449b9a06", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "affe205f-88c8-4216-b4d1-7c47316b4c61", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Nat Geo Expeditions - Travel With National Geographic", + "title": "National Geographic", + "targetUrl": "http://www.nationalgeographicexpeditions.com/?utm_source=msn&utm_medium=cpc&utm_campaign=NGExpeditions&utm_content=Unspecified&creative=13790428232&device=c&matchtype=b" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "5dvIT5LIHxqY", + "name": "adventure travel" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c7e4f9c0-d27e-4a93-8c06-11e766aa1f38", + "name": "general", + "startAt": "2017-09-24T19:41:38.394Z", + "endAt": "2019-09-24T19:41:38.395Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "946fef8c-6f0d-4467-ab4f-bdc32594e38d", + "creativeSets": [ + { + "creativeSetId": "c385a7cb-ec5b-4e9d-9f53-d32c97b7f088", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "661a7750-f2cd-459d-8be0-009b537f9222", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Official Cell Phone Directory - Lookup Any Cell Phone Number.", + "title": "Nationalcellulardirectory", + "targetUrl": "www.nationalcellulardirectory.com/cell/directory" + } + } + ], + "segments": [ + { + "code": "05KGovyhnUj", + "name": "cell phones" + }, + { + "code": "PDcNk9LToal", + "name": "cell phones" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b18f8a6d-daee-4869-ac11-250fd8818156", + "name": "general", + "startAt": "2017-09-24T19:41:38.989Z", + "endAt": "2019-09-24T19:41:38.989Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8d04f535-7ee7-4115-8173-411481a1c399", + "creativeSets": [ + { + "creativeSetId": "38fa6499-3c2a-4166-9e7c-5e91c48b2d7c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e6931244-a7c6-4f33-8642-4be4571d80fe", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Reduce Alcohol Cravings - Naturally Quit Drinking", + "title": "Naturaclear", + "targetUrl": "www.naturaclear.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "unFLrtorUoq", + "name": "Alcohol Delivery" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cdc48680-77a7-430f-bb84-763bd1f21f48", + "name": "general", + "startAt": "2017-09-24T19:41:39.557Z", + "endAt": "2019-09-24T19:41:39.557Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "45fc4bea-690a-4151-bd70-3511a045510a", + "creativeSets": [ + { + "creativeSetId": "8b8a5e6d-b904-4e23-b1c8-89e5af163a39", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c593d466-bee9-467b-9ad3-bb5b5e6a03b0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dreaming of Sailing? | NautilusSailing.com", + "title": "Nautilus Sailing", + "targetUrl": "http://www.nautilussailing.com/?&utm_source=msn&utm_medium=cpc" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "OfetQo4wKhT1", + "name": "sailing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "af937ad7-c041-4678-9869-a50d632c07ee", + "name": "general", + "startAt": "2017-09-24T19:41:40.205Z", + "endAt": "2019-09-24T19:41:40.205Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "50501a84-bd76-4176-8255-1fd272c305f0", + "creativeSets": [ + { + "creativeSetId": "34964827-79aa-435a-be3e-e073bcc56890", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "30896b7b-f8b6-4ab2-b74c-4f8a5193d3da", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Learn to Sail in a Week", + "title": "NautilusSailing", + "targetUrl": "NautilusSailing.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "afwRRdA2xK0t", + "name": "Sailing Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d3d0589e-9faa-40d6-bbf8-9944c8099013", + "name": "general", + "startAt": "2017-09-24T19:41:40.800Z", + "endAt": "2019-09-24T19:41:40.800Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e42f90f9-b0f2-40c1-b1cf-b95568d4bbc0", + "creativeSets": [ + { + "creativeSetId": "3bd072b8-4b2c-4ed9-92e1-ea9a038f1276", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5eb161e7-3a6b-4dd0-bfa5-ad813529c72b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "U.S. Navy Official Site® - Start Your Navy Journey | navy.com", + "title": "Navy", + "targetUrl": "www.navy.com" + } + } + ], + "segments": [ + { + "code": "xdewbpM2V5-", + "name": "Military" + }, + { + "code": "YwcGJSE5gioe", + "name": "Join The Military" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8ee2ddd8-4995-42a8-bc6c-0772437c9b6d", + "name": "general", + "startAt": "2017-09-24T19:41:41.407Z", + "endAt": "2019-09-24T19:41:41.407Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d569a18b-4683-402b-b53c-2a31c0076df7", + "creativeSets": [ + { + "creativeSetId": "e4c5d08d-15b9-4882-a8e8-bd1c5235f6f6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b7e3211e-6da1-4b54-a632-36f0971f3c95", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Apply For A Personal Loan - Compare Loan Rates Now", + "title": "Navyfederal", + "targetUrl": "www.navyfederal.org/PersonalLoan" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "BwhnRpkM8sF", + "name": "Personal Loans" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d3dcce49-b001-45b1-96da-70d66ea2486d", + "name": "general", + "startAt": "2017-09-24T19:41:42.019Z", + "endAt": "2019-09-24T19:41:42.020Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4ac1f754-5432-4d96-908f-5f62855538e6", + "creativeSets": [ + { + "creativeSetId": "aeb85ffc-d4c1-4d2b-acad-ea8fe1dfee25", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "df914df0-8cd9-4062-8a4a-701a1c0a565b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "NetSuite Accounting Software - #1 SMB Cloud Accounting", + "title": "NetSuite", + "targetUrl": "www.NetSuite.com/Small-Business/Accounting" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "P9Lfpxf-FV6", + "name": "Management Software" + } + ] + }, + { + "creativeSetId": "2c980413-050b-44e9-882a-809e59f44581", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4f5dd210-7c12-4fde-910d-c99090499552", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Manage Inventory With NetSuite - Keep Inventory Costs Low", + "title": "NetSuite", + "targetUrl": "www.NetSuite.com/Inventory/Management" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "2QJW6dTCw6z", + "name": "Inventory Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "67808faa-de23-4462-88a0-68267093f771", + "name": "general", + "startAt": "2017-09-24T19:41:42.878Z", + "endAt": "2019-09-24T19:41:42.878Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e80c26b7-dd4a-4a9c-a2e1-35dead999776", + "creativeSets": [ + { + "creativeSetId": "974ef363-4207-4353-90ac-cd445d2dd7e4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3e646305-cca3-4896-bafa-a2e9463a737d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "New Car Prices — 2017 & 2018 - Don't Overpay", + "title": "Newcars", + "targetUrl": "www.newcars.com" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "tGlEpkd2UFQ", + "name": "New Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8ddb3f54-c147-4b23-bf80-42d8d766c104", + "name": "general", + "startAt": "2017-09-24T19:41:43.434Z", + "endAt": "2019-09-24T19:41:43.434Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6f502623-38f2-4b69-93bd-acefcaecaf05", + "creativeSets": [ + { + "creativeSetId": "1c7e354a-5155-4088-a4c9-da0dee0f5ab3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ff2c820a-e4b3-4b71-94fb-64848cc774b0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "NewDay USA VA Refinance - Save Thousands Per Year", + "title": "Newdayusa", + "targetUrl": "www.newdayusa.com/VA-Loan" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "ME0864i1Nfkc", + "name": "Refinance Home" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4c9e86af-4155-4445-972e-b5d96a0aeaf5", + "name": "general", + "startAt": "2017-09-24T19:41:44.061Z", + "endAt": "2019-09-24T19:41:44.062Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c8f72085-4114-4e39-92c7-f2e54a8976ec", + "creativeSets": [ + { + "creativeSetId": "fb6cdf85-a6b8-4521-964c-866de57679be", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "309feb40-be0f-46a9-83fb-7b5ba80a400e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Interested in Architecture? - Study in Sunny San Diego", + "title": "Newschoolarch", + "targetUrl": "degrees.newschoolarch.edu/Bachelor/Architecture" + } + } + ], + "segments": [ + { + "code": "avw0QD-PbLk", + "name": "Architecture" + }, + { + "code": "dOQmj5NS4GvY", + "name": "Architecture Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "860a8a0c-0811-4e1d-8a6f-75c8536193b5", + "name": "general", + "startAt": "2017-09-24T19:41:44.631Z", + "endAt": "2019-09-24T19:41:44.631Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "56ab141a-8522-403f-a607-699dd02984a5", + "creativeSets": [ + { + "creativeSetId": "6cd8f443-8a17-4633-a1d1-9f190851c14b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "60755655-87d0-4541-b1aa-0eeaa187bd04", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top Trucking Company - NFI Transportation Services", + "title": "Nfiindustries", + "targetUrl": "www.nfiindustries.com/services/trucking" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "TrWA-UI4zhY", + "name": "Pickup Trucks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a9b81478-12b2-4ade-b7cf-0b7051c23b7e", + "name": "general", + "startAt": "2017-09-24T19:41:45.248Z", + "endAt": "2019-09-24T19:41:45.248Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ab4e32e4-306f-4c5b-b83c-9bb2d07590a6", + "creativeSets": [ + { + "creativeSetId": "5a2fa816-9359-47a5-aadc-22189e4d97d5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7e39c02e-9749-4dcb-9539-23bebe3b2fb6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hockey Supplies – Ship Directly from Canada | nhlshop.ca", + "title": "Nhlshop", + "targetUrl": "www.nhlshop.ca" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "hAIdxFZ19kvh", + "name": "Hockey Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "699609df-b12a-4b7c-b9cb-2a199b26925f", + "name": "general", + "startAt": "2017-09-24T19:41:45.876Z", + "endAt": "2019-09-24T19:41:45.876Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c07754ee-6db9-4afa-954e-1d41c259deec", + "creativeSets": [ + { + "creativeSetId": "3666eecb-17f7-47b7-9001-e9b9171e28f2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "46c70ae0-507e-4dce-9a40-4d2962668a29", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Kids Gymnastics Equipment - Ships Same / Next Business Day", + "title": "Nimblesports", + "targetUrl": "www.nimblesports.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "nW9RcA3E3JA", + "name": "Gymnastics Awards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1dfab6ed-90d4-4175-bece-182ecabaf76d", + "name": "general", + "startAt": "2017-09-24T19:41:46.459Z", + "endAt": "2019-09-24T19:41:46.460Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d1edb6ef-d86c-4880-9a49-434a5627d38d", + "creativeSets": [ + { + "creativeSetId": "b8343054-6c90-4028-996c-8505d698ace2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6d41c79b-a92f-49b0-8797-beb985874c70", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "An Awesome Puzzle Adventure - On Nintendo 3DS System Now", + "title": "Nintendo", + "targetUrl": "captaintoad.nintendo.com" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "1Jz9ZYkAanF", + "name": "Buy Video Games" + } + ] + }, + { + "creativeSetId": "e8280f26-5ff1-449c-863c-f97eeb2a6663", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a89f4654-2354-4766-a785-2a6d95ecbac4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "On Nintendo Switch Now - Xenoblade Chronicles 2", + "title": "Nintendo", + "targetUrl": "https://xenobladechronicles2.nintendo.com/?gclid=CLHvx6X-j9kCFcK2fgod9E8Kow&gclsrc=ds" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "hNiVZRARRh4b", + "name": "video games" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d440c5a8-7df1-4a97-8660-214ccaae7d71", + "name": "general", + "startAt": "2017-09-24T19:41:47.335Z", + "endAt": "2019-09-24T19:41:47.335Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "872efda7-67d9-47cc-8022-61df525e4a62", + "creativeSets": [ + { + "creativeSetId": "b07425ff-d0b9-44c2-a8ab-8e2fe97ee90d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "973771fe-29f2-44f2-9e9d-7096aa7c8333", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The All-New 2018 Nissan® LEAF - Technology That Amazes", + "title": "Nissanusa", + "targetUrl": "www.nissanusa.com/Leaf" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "TrWA-UI4zhY", + "name": "Pickup Trucks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "13df4e94-44bf-40b8-8f22-f3584df04110", + "name": "general", + "startAt": "2017-09-24T19:41:48.001Z", + "endAt": "2019-09-24T19:41:48.001Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1f07ac73-d6d8-4721-a99f-376778b604d7", + "creativeSets": [ + { + "creativeSetId": "fb878ec8-682f-4bb6-b9ef-b7b37fb16bed", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "45dc8a00-7152-40cc-b05a-a272acd8aee7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Nitro RC Car Ready to Run | NitroRcx.com", + "title": "NitroRcx", + "targetUrl": "www.NitroRcx.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "eJu7bz6XQx4", + "name": "RC Vehicles" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "291ef0be-49d3-411d-8297-425603e4c743", + "name": "general", + "startAt": "2017-09-24T19:41:48.592Z", + "endAt": "2019-09-24T19:41:48.593Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "030d62e6-aa01-4000-aba5-e1d36ae41348", + "creativeSets": [ + { + "creativeSetId": "dda7aa64-bc06-486c-9228-672ef4508513", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "231459ad-b4f8-45e4-bc53-43379b451ba1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Islamic Books", + "title": "Noorart", + "targetUrl": "www.Noorart.com" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "EUUwhzvuKC4", + "name": "Islamic Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a2358a20-b162-4bef-aa17-61e2cfe59129", + "name": "general", + "startAt": "2017-09-24T19:41:49.202Z", + "endAt": "2019-09-24T19:41:49.202Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e3ad3218-3f25-46d4-a123-14489b9c88c6", + "creativeSets": [ + { + "creativeSetId": "63727fd6-b21b-4d38-97a1-b27b85b5886a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "744f9ff5-cac8-4b6a-ad29-9f34d5d4bbbc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Nordictrack RW200 Rowing Machine - nordictrack.com", + "title": "NordicTrack", + "targetUrl": "https://www.nordictrack.com/rowing-machines/nordictrack-rw200-rower" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "0-2zpA_UbAYR", + "name": "exercise" + } + ] + }, + { + "creativeSetId": "482b37fa-c99a-453c-8767-a56978703949", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6427595a-b82a-4e03-a5ca-4027163939b6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "NordicTrack® Rowing Machine", + "title": "NordicTrack", + "targetUrl": "https://www.nordictrack.com/rowing-machines/nordictrack-rw200-rower" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "cZMhem8k6Sv8", + "name": "rowing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ae818283-ce66-43d9-9292-f13b9e9b3c9a", + "name": "general", + "startAt": "2017-09-24T19:41:50.075Z", + "endAt": "2019-09-24T19:41:50.075Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3b449243-df5d-4d49-8792-58eb9358c57c", + "creativeSets": [ + { + "creativeSetId": "a05c35d0-2717-4fad-8f8f-2e2f69e43e34", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "52659043-6ec3-463a-9753-b2e0189dccbe", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "NordicTrack?? Rowing Machine - Total-Body Workout.", + "title": "Nordictrack", + "targetUrl": "www.nordictrack.com/Rowing-Machine" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "YGCofQVxBiL", + "name": "Rowing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "992d9770-f33b-4aff-8ab8-069bf597fd3a", + "name": "general", + "startAt": "2017-09-24T19:41:50.704Z", + "endAt": "2019-09-24T19:41:50.704Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9dcc4333-44b9-4ff2-a3f7-42791af40556", + "creativeSets": [ + { + "creativeSetId": "99509c6d-ba86-4243-834f-9eea0c6af42b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f53f00f4-6018-4338-ae93-6a8c27ab08b1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "NORDSTROM - Official Site", + "title": "Nordstrom", + "targetUrl": "www.nordstrom.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "obV7ryiIRW4", + "name": "beauty" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4a87d10f-81e0-4d8d-87df-aa7beb05497b", + "name": "general", + "startAt": "2017-09-24T19:41:51.298Z", + "endAt": "2019-09-24T19:41:51.298Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "873acf60-6736-49b5-bb98-3343f16c3239", + "creativeSets": [ + { + "creativeSetId": "612c6199-0632-4608-acb2-ff823f3f3dec", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "52a64e56-1e30-487c-afea-3779aeb226fd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Brewery Kit - Complete Brewery Kits In Stock", + "title": "NorthernBrewer", + "targetUrl": "www.NorthernBrewer.com/Brew-Kits" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "sSHTp7EuwPZ", + "name": "Brewery Kits" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "36b7ccc1-9fd7-48c0-8d16-9e571f86f58e", + "name": "general", + "startAt": "2017-09-24T19:41:51.890Z", + "endAt": "2019-09-24T19:41:51.890Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "11e2a5b6-b971-4dd1-a9d0-3505cf79df2e", + "creativeSets": [ + { + "creativeSetId": "edc92fe6-48ee-499c-a7ab-d6efde5856db", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "65ddc0e6-b237-4243-b531-1396cb0409f8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "NorthStyle Clothing | NorthStyle.com", + "title": "NorthStyle", + "targetUrl": "NorthStyle.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "obV7ryiIRW4", + "name": "beauty" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2f00eefb-6db7-469e-8bfc-fdb5d3b20e25", + "name": "general", + "startAt": "2017-09-24T19:41:52.456Z", + "endAt": "2019-09-24T19:41:52.457Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "20ecb7c2-7dac-495d-8d9f-e9c914058056", + "creativeSets": [ + { + "creativeSetId": "83d55142-87c0-48ea-ac81-84b53df96dbb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "88bed78d-e80e-4e6f-b355-08925050fa3c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Medical Weight Loss Plan - Physician Wellness Center", + "title": "Novaphysicianwellness", + "targetUrl": "www.novaphysicianwellness.com/Weight-Loss/Medically-Safe" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0cc89416-8623-4b09-95c1-29e7d8157a90", + "name": "general", + "startAt": "2017-09-24T19:41:53.131Z", + "endAt": "2019-09-24T19:41:53.132Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ff4adf64-8f3f-4d28-8c17-0e99a1db22a2", + "creativeSets": [ + { + "creativeSetId": "0ee5b27f-a14e-4934-931f-9de6e691764c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cbcbbbae-4b97-48cd-99c3-865b7b956c8b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Alcohol Delivery Nyc? - Free Call & Free Consultation", + "title": "Nowaddictiontreatment", + "targetUrl": "www.nowaddictiontreatment.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "unFLrtorUoq", + "name": "Alcohol Delivery" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a96cf7bf-f268-417d-8e64-f0395d7ec06e", + "name": "kids", + "startAt": "2017-09-24T19:41:53.762Z", + "endAt": "2019-09-24T19:41:53.763Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "eac2e7a3-715d-40ec-b27b-aeacf4de2d16", + "creativeSets": [ + { + "creativeSetId": "ab4958b0-61a2-48e3-b620-7191c7a53ecb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f301b523-6aae-4350-a126-3fdcbf3d16dd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Kids Meal Delivery Service - Mealtime Made Easy", + "title": "Nurturelife", + "targetUrl": "nurturelife.com/Ready-To-Eat/Kids-Meals" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "YnihSiXSdRZ", + "name": "Food Delivery" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "dee98d5d-f8da-42ce-9b6a-08e16e38fc50", + "name": "weightloss", + "startAt": "2017-09-24T19:41:55.408Z", + "endAt": "2019-09-24T19:41:55.408Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0b879379-71a1-4e10-9cbb-639645ba552f", + "creativeSets": [ + { + "creativeSetId": "66fc8bb6-4951-4829-93d3-37d0322ecd51", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2daad395-7003-41dd-af23-11284c75c8ca", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Nutrisystem Official Site - Lose up to 13 lbs In 1st Month", + "title": "Nutrisystem", + "targetUrl": "www.nutrisystem.com/WeightLoss" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + }, + { + "creativeSetId": "f337e77c-36bf-48a7-85a3-9a163be46cf3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7c024ec1-5cdc-480a-97b0-2bfe1da8967b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Nutrisystem® Official Site - Lose up to 13 lbs In 1st Month", + "title": "Nutrisystem", + "targetUrl": "www.nutrisystem.com/Delivery" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "RjX-wPWa8Z_f", + "name": "Meal Deliveries" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bda8f0df-99c4-4fb6-a2bf-17d98bb29e0d", + "name": "general", + "startAt": "2017-09-24T19:41:56.095Z", + "endAt": "2019-09-24T19:41:56.095Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0b879379-71a1-4e10-9cbb-639645ba552f", + "creativeSets": [ + { + "creativeSetId": "35be1731-8d29-406e-ad90-03b8fbe237f4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bd0d6f25-5728-49aa-85cd-e3d594027ac8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Nutrisystem® Official Site - America's #1 Home Delivery", + "title": "Nutrisystem", + "targetUrl": "https://www.nutrisystem.com/jsps_hmr/home/index.jsp?msclkid=2d268869c62f14698ccbd2113a6b63a4&utm_source=bing&utm_medium=cpc&utm_campaign=NonBrand%2520-%2520Generic%2520-%2520Diet&utm_term=diets&utm_content=Diet" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "rWbx7pBWdQcd", + "name": "dieting" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fd52b48f-bdba-44f5-a574-2350ff34784e", + "name": "general", + "startAt": "2017-09-24T19:41:56.790Z", + "endAt": "2019-09-24T19:41:56.791Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e9715ac1-2989-4f5c-813f-f623726c7be3", + "creativeSets": [ + { + "creativeSetId": "bdae625c-0acf-4b22-95a3-f048e82809ec", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0a27b155-4b90-4c77-af62-58da347eef90", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "$1,500 Off Obalon Balloon | Weight Loss Without Surgery‎", + "title": "Obalon", + "targetUrl": "www.obalon.com/ ‎" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1409a8f6-9dbf-48d9-9715-4a8c7700e67a", + "name": "general", + "startAt": "2017-09-24T19:41:57.402Z", + "endAt": "2019-09-24T19:41:57.402Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "41cb3282-334d-45b9-a0e3-179555544c75", + "creativeSets": [ + { + "creativeSetId": "c5adbb2c-77b0-4512-954b-a9f4b695ee2c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e8a13ef7-9a2d-4665-af16-239f84eb89b2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Avail. Now - Octopath Traveler - An RPG Action Adventure Game", + "title": "Octopathtraveler.nintendo", + "targetUrl": "octopathtraveler.nintendo.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "o7Q1hjps7Vm", + "name": "Online PC Games" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ef6bacb0-d206-4921-9b4d-3a0f71c51dc5", + "name": "general", + "startAt": "2017-09-24T19:41:58.034Z", + "endAt": "2019-09-24T19:41:58.034Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9907b660-8b10-44d2-9b8a-5a7196dfed19", + "creativeSets": [ + { + "creativeSetId": "2f1e7cbb-f218-46f6-9e70-5843edc03225", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7a811305-8609-4150-b209-9b4327fc16bd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Used Cars - Massive Winter Offers | offerfinder.net", + "title": "Offerfinder", + "targetUrl": "offerfinder.net/Used Cars/-2018" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "b4xuJT0IZ_f", + "name": "Used Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "00ca2e3d-b148-4193-8e9c-d409765832ae", + "name": "general", + "startAt": "2017-09-24T19:41:58.648Z", + "endAt": "2019-09-24T19:41:58.649Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "95a6b71e-41a4-4456-9cb8-7aa5a7ea3f34", + "creativeSets": [ + { + "creativeSetId": "e325e5cb-cbc3-4782-a35a-8945b3cfde69", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "93426b5d-f985-4c71-82f3-8bef5c32ab51", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "30% Off Soccer.com Coupon Code | Offers.com", + "title": "Offers.com", + "targetUrl": "https://www.offers.com/soccer/?path=zof-127872-mpn-100a1a&creative=78683825889430&device=c&keyword=30819011802&source=s" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "qYScLmxJ4R0-", + "name": "soccer" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b5927b0b-e851-4ca0-9c9a-09cfe3809941", + "name": "general", + "startAt": "2017-09-24T19:41:59.229Z", + "endAt": "2019-09-24T19:41:59.230Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "625a5b0b-fbbe-4f9f-974e-5fb185f6dfff", + "creativeSets": [ + { + "creativeSetId": "692700f2-00b1-47a3-a8e6-b5f73934348c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "602e52c3-3913-46aa-82b8-83d68dd03a2a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Crafting Supplies - Order Online At Office Depot®", + "title": "Officedepot", + "targetUrl": "www.officedepot.com/OfficeSupplies/ArtsCrafts" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "ueFaBreO21-9", + "name": "Arts and Crafts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f282f10f-cda5-40eb-b973-a99104a996ac", + "name": "general", + "startAt": "2017-09-24T19:41:59.837Z", + "endAt": "2019-09-24T19:41:59.838Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c6abe8b1-b398-4849-bcb6-dbf28c56f5ea", + "creativeSets": [ + { + "creativeSetId": "babeee5b-2f0f-4095-9654-48d18da6cbe5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "24c77eff-5f0f-499b-92c3-554e7bb38e1c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Take Your Dog Anywhere", + "title": "OfficialServiceDogRegistry", + "targetUrl": "OfficialServiceDogRegistry.com" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "cJeWKlUNo4Y", + "name": "Dog Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "84ee9c49-8cca-4951-864f-b57a0163c54d", + "name": "general", + "startAt": "2017-09-24T19:42:00.469Z", + "endAt": "2019-09-24T19:42:00.470Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "415a141f-e37f-4f9f-bb08-5ec46945063e", + "creativeSets": [ + { + "creativeSetId": "00886e36-a1db-4cda-9b91-6fa8a6a1d191", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b131db41-3a62-42a3-aac3-0e2493343d5b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "HCPs: Diabetes Treatment Info - May Help Control Blood Sugar", + "title": "Onceweekly-noninsulinhcp", + "targetUrl": "www.onceweekly-noninsulinhcp.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "VSR0lepFE8Hw", + "name": "Diabetes Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4702d73e-8bc7-41dc-8c62-3b5cb0164992", + "name": "general", + "startAt": "2017-09-24T19:42:01.101Z", + "endAt": "2019-09-24T19:42:01.102Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8ed4d3c1-a5bf-42aa-a923-c048ef3e0bc0", + "creativeSets": [ + { + "creativeSetId": "a9c3b059-95b1-47d5-a121-5de02dd69482", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3a6fafdc-865c-4f08-856d-1d9bf25739cb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "One-Source Construction - Contractor", + "title": "One-sourc", + "targetUrl": "www.one-sourceconstruction.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "9Alas5QGK_f", + "name": "Contractor Jobs" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "152a1bfb-1029-4de1-9585-f1dc1656aab6", + "name": "general", + "startAt": "2017-09-24T19:42:01.698Z", + "endAt": "2019-09-24T19:42:01.698Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b4340eb0-bb1d-433e-a9c9-6c538b8018f7", + "creativeSets": [ + { + "creativeSetId": "905e20b0-e5ed-4262-b17b-50727f469591", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a6a52737-cb98-43f2-8eb1-2b85cf427456", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hippo - The eCommerce CMS | OneHippo.com", + "title": "OneHippo", + "targetUrl": "www.OneHippo.com/eCommerce-CMS" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "zgMSYI-gfMo", + "name": "eCommerce Websites" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2fb923cb-b285-41a8-8ad0-9663bc710e3d", + "name": "general", + "startAt": "2017-09-24T19:42:02.304Z", + "endAt": "2019-09-24T19:42:02.305Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3c7665b4-5d5e-45dd-bdfb-3c4e605c7070", + "creativeSets": [ + { + "creativeSetId": "48b673e7-9379-47cc-bc1a-ac84cf5fcbde", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c7560f75-4242-4ece-98dd-75ef4a8571c2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "OneMain® Financial - Lending Made Personal", + "title": "Onemainfinancial", + "targetUrl": "www.onemainfinancial.com/personal/loans" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "BwhnRpkM8sF", + "name": "Personal Loans" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "26492e0d-354e-43b6-8ac0-4614a022d8d4", + "name": "general", + "startAt": "2017-09-24T19:42:02.948Z", + "endAt": "2019-09-24T19:42:02.948Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f0dd1659-3411-44d8-8cbc-b0e4787ac4bd", + "creativeSets": [ + { + "creativeSetId": "32331284-e565-4db2-8d5f-85f8101ee07d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4c45a7f5-5dce-4520-9316-3fc668690203", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Psychology Degree Online - Colorado State University", + "title": "Online", + "targetUrl": "www.online.colostate.edu/psychology/degree" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mTbLUekRxb3", + "name": "Psychology Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "dd321b02-d983-4b2b-b565-21b4743c7316", + "name": "general", + "startAt": "2017-09-24T19:42:03.596Z", + "endAt": "2019-09-24T19:42:03.596Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3d986f9c-09a2-439b-ac45-508ea0f6efa8", + "creativeSets": [ + { + "creativeSetId": "68b91b22-a442-47b0-b68a-89fea1e5846b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6e579763-c222-4163-b4c3-d22e0674062b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Stainless Sheet Metal Stock - Custom Cut to Size Options", + "title": "Online Metals", + "targetUrl": "http://www.onlinemetals.com/merchant.cfm?id=1&step=2&top_cat=1&msclkid=59bbf0a596451583ebd1aadd7375ba4d&utm_source=bing&utm_medium=cpc&utm_campaign=Stainless&utm_term=%2Bsteel%20plate%2018g&utm_content=Stainless%20Sheet" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "IplIaIzy4Cd-", + "name": "metals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8d55dc96-f56f-401f-ad9d-5789b1c358b4", + "name": "general", + "startAt": "2017-09-24T19:42:04.175Z", + "endAt": "2019-09-24T19:42:04.176Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c7a38016-3e50-4bcd-b840-beba3e4258a2", + "creativeSets": [ + { + "creativeSetId": "1beafaa1-fb7e-4e1b-9fba-b5fcb380ae76", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8e473e43-c166-4cb3-aaa9-d6ac0f4773d7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The Best Dating Sites for You - Don’t Spend 2018 By Yourself.", + "title": "Online-dating.thetop10sites", + "targetUrl": "online-dating.thetop10sites.com/DatingSites/ClickToDate" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "MHIWE-lPdQmA", + "name": "Dating" + } + ] + }, + { + "creativeSetId": "c5d02fbd-2ce4-41d1-bf08-d41f3173b59f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "819ef970-8194-49b2-bba9-5cfa8ae9b835", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 10 Gay Dating Sites 2018 - gay meet", + "title": "Online-dating.thetop10sites", + "targetUrl": "online-dating.thetop10sites.com/Gay_Dating/Top10" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "E4Jw5e24-6gs", + "name": "Gay Meet" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ce014b03-f17f-4588-9d3a-36ae1e087b62", + "name": "general", + "startAt": "2017-09-24T19:42:05.035Z", + "endAt": "2019-09-24T19:42:05.035Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d3fb0c64-f650-412d-bf3a-f2797a865084", + "creativeSets": [ + { + "creativeSetId": "1ff740c6-6981-47a5-87a8-e68f934eb4e5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "509124a6-2227-4b2d-b0ec-aaafe0fb077d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Jimmy John's Delivery - Freaky Fresh. Freaky Fast.®", + "title": "Online.jimmyjohns", + "targetUrl": "online.jimmyjohns.com/OrderNow/Delivery" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "YnihSiXSdRZ", + "name": "Food Delivery" + } + ] + }, + { + "creativeSetId": "0a2ebd5d-1b34-482e-8caf-cb0a5a878c1b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c6c64fb5-07a0-4857-a6da-f74ec1c83eff", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Jimmy John's Delivery - Freaky Fresh® Sandwiches", + "title": "Online.jimmyjohns", + "targetUrl": "online.jimmyjohns.com/OrderNow/Delivery" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "RjX-wPWa8Z_f", + "name": "Meal Deliveries" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "39d27d70-937e-424c-83fa-631b657ad233", + "name": "general", + "startAt": "2017-09-24T19:42:05.892Z", + "endAt": "2019-09-24T19:42:05.892Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ea3d259c-c544-4de3-8e6c-ecf786853f42", + "creativeSets": [ + { + "creativeSetId": "5a62202d-94dd-4dac-b1b2-3a82c26f9155", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b7ae32f6-c19d-4d97-b558-c0ae9feb27d4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "OnlineMetals.com - Online Metal Stock Supplier - Fast Shipping", + "title": "OnlineMetals", + "targetUrl": "www.OnlineMetals.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "70IAZkzKPe0E", + "name": "Online metals" + } + ] + }, + { + "creativeSetId": "ff49009f-14c5-426e-bf2b-2b3a90810bd6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fc288ad4-b7fe-4b11-817b-7ae683baf4b9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "OnlineMetals.com Metal Supply - Custom Cut to Size Options", + "title": "OnlineMetals", + "targetUrl": "www.OnlineMetals.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "kORnSRyr0FJ", + "name": "Metalwork Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fdb57e74-56ad-4c44-be2f-3e19770ce72b", + "name": "general", + "startAt": "2017-09-24T19:42:06.746Z", + "endAt": "2019-09-24T19:42:06.746Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "effeee26-fcd8-4831-9c9d-2f107a0b01ed", + "creativeSets": [ + { + "creativeSetId": "620367ea-82a5-406b-90a7-08aaea25d881", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ca463193-3db2-4077-81af-43475ee889ea", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2018 Online College Degrees - Compare Up to 4 Schools", + "title": "Onlineparetopschools", + "targetUrl": "online.comparetopschools.com/OnlineColleges/DegreePrograms" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "ANs-xRChItO", + "name": "College Degrees Online" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "11d7c4d2-ccb7-49cb-af4b-3195ec223c03", + "name": "general", + "startAt": "2017-09-24T19:42:07.356Z", + "endAt": "2019-09-24T19:42:07.356Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "18ef8f1d-8ed3-46b7-af6b-4ac092553b49", + "creativeSets": [ + { + "creativeSetId": "84f9e9fd-4752-4275-a18a-c9a49b3f06f6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "62e95489-1b6f-43ec-8ec5-754efa28f193", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "JUGS Hockey Equipment SALE Hockey Equipment | opticsplanet.com", + "title": "Opticspl", + "targetUrl": "opticsplanet.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "hAIdxFZ19kvh", + "name": "Hockey Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b91cc57a-d085-47af-b789-c3d3482375a4", + "name": "general", + "startAt": "2017-09-24T19:42:07.979Z", + "endAt": "2019-09-24T19:42:07.979Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "14babbbc-6275-42b6-84df-8cf33b1f7fec", + "creativeSets": [ + { + "creativeSetId": "22d61f07-c5b9-47a9-b046-12ab68d21703", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "12becd90-bc82-47d8-97b4-32b30ad3ef90", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Options Industry Council (OIC) - Options Education Program", + "title": "Optionseducation", + "targetUrl": "www.optionseducation.org" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "_PEMAp6RE_k9", + "name": "Learn Stocks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "dd9bbbb5-c0c7-4d18-b983-8221b7bcc7cd", + "name": "general", + "startAt": "2017-09-24T19:42:08.587Z", + "endAt": "2019-09-24T19:42:08.587Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e2a97fd1-1578-4206-814c-c34a5617a8c8", + "creativeSets": [ + { + "creativeSetId": "a511c8e1-a631-43a1-921b-e6355478d63c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "741cdfe9-68b8-4c8d-a16f-39263387d2f3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Flight Deals - ORBITZ Only Deals. | orbitz.com", + "title": "Orbitz", + "targetUrl": "www.orbitz.com/Flights/Deal" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "0LyFuY7_Cse", + "name": "Flight Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3b4e3a1a-4fa9-4903-b94d-254edd50fb0c", + "name": "general", + "startAt": "2017-09-24T19:42:09.233Z", + "endAt": "2019-09-24T19:42:09.233Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3a3dce8c-720b-4bcf-83ad-250cce45ffbc", + "creativeSets": [ + { + "creativeSetId": "73c75744-2c8e-4854-86f3-e519b6112256", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "475a2042-c194-47cd-bbeb-e167f0321787", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Astronomy Magazine - Subscribe, Renew, or Gift.", + "title": "Order", + "targetUrl": "order.com-sub.info/Astronomy/Magazine" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "M_ZptOvQUEHi", + "name": "Astronomy Magazine" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5b8a5f57-2dec-4506-8142-d527e827570d", + "name": "general", + "startAt": "2017-09-24T19:42:10.278Z", + "endAt": "2019-09-24T19:42:10.278Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "81e537d1-a60f-4909-a843-dcf7e62ea0aa", + "creativeSets": [ + { + "creativeSetId": "6bd459fc-ec2d-432d-a0cd-3370bbb9360f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a4710300-9b0b-4033-b386-d2d85860d8d8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shaklee® Products Online", + "title": "Order-now.MyShaklee", + "targetUrl": "order-now.MyShaklee.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "2SU6dGfT9-t", + "name": "Protein Shakes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ee5b3af8-2f63-4e01-ac88-a8acd5987ebc", + "name": "general", + "startAt": "2017-09-24T19:42:11.907Z", + "endAt": "2019-09-24T19:42:11.907Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bf7f364f-da7c-46cf-821d-551213e1ccbd", + "creativeSets": [ + { + "creativeSetId": "6d39f53f-38df-43bc-a4dc-df381f7475bd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "849f977e-0432-4db9-b915-e9b751c064f7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Orgain Organic Vegan Protein - Gluten Free, Soy Free, Non-GMO | orgain.com", + "title": "Orgain", + "targetUrl": "http://orgain.com/products/organic-protein-powder/" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "4zk32Mz3EoIs", + "name": "vegetarian" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "203da3d7-6933-4efd-bb44-7d20651eb173", + "name": "general", + "startAt": "2017-09-24T19:42:12.979Z", + "endAt": "2019-09-24T19:42:12.979Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4c84dd82-6d68-4a9e-920e-3524e44bb460", + "creativeSets": [ + { + "creativeSetId": "d54ba2b4-1621-4eaa-8f1f-9cc7bf83448f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e3928277-3375-46f3-88bd-3539d516f153", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Orgain Samples for Healthcare - Orgain Kids™ Protein Shakes", + "title": "Orgain Kids", + "targetUrl": "http://orgain.com/healthcare-professionals/?" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "kn7ZFneT8gGb", + "name": "healthy eating" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4523f758-8650-477c-9377-8e8ba4b5eeac", + "name": "general", + "startAt": "2017-09-24T19:42:13.725Z", + "endAt": "2019-09-24T19:42:13.725Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ca3a86ee-c916-4a88-b899-c738dc7334d0", + "creativeSets": [ + { + "creativeSetId": "256b78b0-8a93-4916-9c33-ded2ecbdf978", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2136578d-2892-4dbd-8bd4-821db0b2c6bd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Cheer Pom Poms - Free Shipping", + "title": "Oriental Trading", + "targetUrl": "http://www.orientaltrading.com/toys-games-and-novelties/novelty-toys/pom-poms-a1-550219-1.fltr?BP=PS543&source=bing&ms=search&cm_mmc=Bing-_-Bing%20%7C%20Pom%20Poms-_-Pom%20Poms%20-%20Cheer%20%28Exact%29-_-cheer%20poms&cm_mmca1=Product%20Search&cm_mmca2=NonBrand&cm_mmca3=PS543&cm_mmca4=FSANY&cm_mmca5=Product&cm_mmca6=Pom%20Poms&cm_mmca8=Exact&cm_mmca11=cheer%20poms&utm_source=bing&utm_medium=cpc&utm_campaign=Bing%20%7C%20Pom%20Poms&utm_term=cheer%20poms&utm_content=Pom%20Poms%20-%20Cheer%20(Exact)" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "Zpqjq8gHaF07", + "name": "cheerleading" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d0f884d5-065e-4049-84d0-056ecded1d7e", + "name": "general", + "startAt": "2017-09-24T19:42:14.365Z", + "endAt": "2019-09-24T19:42:14.365Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8d2827cb-9504-4aa3-8e4b-fd0eec4ab55a", + "creativeSets": [ + { + "creativeSetId": "d29d7d4a-09f2-4c93-ba2d-6311631e42bf", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8d98b00b-7914-464e-bed5-b5850165688c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Weight Loss | Weight Loss Nutrition Coach | origin.fit‎", + "title": "Origin.fit", + "targetUrl": "www.origin.fit/nutrition/coaching ‎" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3ef4d3ac-6fef-45d3-bf05-b6d3a72cd7f5", + "name": "general", + "startAt": "2017-09-24T19:42:14.974Z", + "endAt": "2019-09-24T19:42:14.974Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bab293ee-bffe-4603-8b80-6069381aacfd", + "creativeSets": [ + { + "creativeSetId": "7207a761-36ed-415b-9c12-f256858b5869", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "210ffd10-050c-4009-83cd-662ee5569200", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Orvis® Fly Fishing Gear - Sporting Traditions Since 1856", + "title": "Orvis", + "targetUrl": "www.orvis.com/Fishing-Gear" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "tAc14oAedDq", + "name": "Fishing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d69d1294-0b46-4a77-bc03-a5778053f26c", + "name": "general", + "startAt": "2017-09-24T19:42:15.586Z", + "endAt": "2019-09-24T19:42:15.586Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7e8d41a8-127c-4168-ab0e-3a8800813fc0", + "creativeSets": [ + { + "creativeSetId": "78fbc4f3-8b43-48aa-a0a5-8184bf7652c8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "481e3191-8a30-4c3b-bb57-eb4e9d7b08a3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Kayak Supplies On Sale - 10% Off with coupon code AD10", + "title": "Outdoorplay", + "targetUrl": "www.outdoorplay.com/Kayak-Supplies" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "5nUrFtckCYM", + "name": "Kayaking Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5946ac55-3b95-4a95-b33e-401d63d2dd28", + "name": "general", + "startAt": "2017-09-24T19:42:16.284Z", + "endAt": "2019-09-24T19:42:16.284Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ab95244a-19aa-4636-82d3-2dfd4e2566c0", + "creativeSets": [ + { + "creativeSetId": "3d2dfeb1-d0a9-41b6-be6e-2f91deef7ae4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4f65b3b8-f192-48ee-93e1-cbd244064673", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sail the Barrier Islands - Outer Banks Tourism Site", + "title": "Outerbanks", + "targetUrl": "www.outerbanks.org/Sailing" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "afwRRdA2xK0t", + "name": "Sailing Courses" + } + ] + }, + { + "creativeSetId": "410ecb0a-34a4-474a-ad67-dbb5e97e10c4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a3b27953-3200-45ec-84a4-73ba30698f71", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Outer Banks, NC Surfing - Outer Banks Tourism Site", + "title": "Outerbanks", + "targetUrl": "www.outerbanks.org/Surfing" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "nYUpPvk5Fx7s", + "name": "Surfing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "91d7ead5-496e-4813-9218-91a618524d7b", + "name": "general", + "startAt": "2017-09-24T19:42:17.179Z", + "endAt": "2019-09-24T19:42:17.180Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "60a9e6d9-45c6-400c-a220-053aee6e10c1", + "creativeSets": [ + { + "creativeSetId": "2e6f533b-31cf-42ab-9710-70c814eefe78", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a8fb31f4-f85d-4e9c-b560-4e902ebb6a20", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rated #1 in Self-Publishing - by Top Consumer Reviews", + "title": "Outskirtspress", + "targetUrl": "outskirtspress.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "KjrAF8XxEDc", + "name": "Book Publishing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "75bfacaf-0f54-4970-af40-ffc27a73ae4e", + "name": "general", + "startAt": "2017-09-24T19:42:17.771Z", + "endAt": "2019-09-24T19:42:17.771Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "310d7dbc-a237-4cc4-8f29-7e7bd0f0089d", + "creativeSets": [ + { + "creativeSetId": "8f7e765a-d8bf-42b2-9da6-fd85e8bf1a02", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c22206dc-8d67-4719-8bcd-71562af6d1fc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Decor at Overstock™ - Over 900,000 Products on Sale", + "title": "Overstock", + "targetUrl": "www.overstock.com/Home-Decor" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "T4rhcMPPBhp", + "name": "Home Décor" + } + ] + }, + { + "creativeSetId": "c5b47fc5-5d5f-4e32-82a1-67245db54900", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "19b3c485-0355-4a93-aced-a49ac4ed8100", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Décor at Overstock™ – Up to 70% Off Select Products", + "title": "Overstock", + "targetUrl": "www.overstock.com/Home-Décor" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "iOSOYZ7Fm9M", + "name": "Home Decorating" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "173b1e27-a92f-47eb-80ef-7362ef872b27", + "name": "general", + "startAt": "2017-09-24T19:42:18.783Z", + "endAt": "2019-09-24T19:42:18.784Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d7078b53-0ada-4551-9f84-f568f37dde2d", + "creativeSets": [ + { + "creativeSetId": "64ef892b-8ef7-4997-81b1-13bb6df2a60f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2202e49e-5ffa-4ebf-9594-b4dca1a93d10", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Side Gusseted Coffee Bags - Block Bottom Bags and More", + "title": "PacificBag", + "targetUrl": "www.PacificBag.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "6mVbUr4iL4O", + "name": "Coffee Cups" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ea5ef1fd-9cf7-4cae-a83e-51b152f57a81", + "name": "general", + "startAt": "2017-09-24T19:42:19.376Z", + "endAt": "2019-09-24T19:42:19.376Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "26c120f4-7f9e-41d8-a6ee-4ce534b6ca83", + "creativeSets": [ + { + "creativeSetId": "bf362c48-238b-4b8f-aad7-3a5de7f3cfd8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c0ac5198-77d8-43ff-81ac-24185d3f7049", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Summer Fun Family Package - Waterpark Resort", + "title": "Packages.gran", + "targetUrl": "packages.grandcountry.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6gRfXQJbCmu", + "name": "Vacation Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4a1a7dab-47ab-47dc-ba67-774aeea22be1", + "name": "general", + "startAt": "2017-09-24T19:42:19.948Z", + "endAt": "2019-09-24T19:42:19.948Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "47a340cd-f6b5-4c87-bca1-2d73a2e86371", + "creativeSets": [ + { + "creativeSetId": "bab6c936-2ff8-4faa-87cc-9e0fa9f08a32", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "42ad2c3b-ff7c-44b9-98fa-ed932257ef6d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Easy Database Web Interface - All-in-One Solution, No Coding", + "title": "Pages.caspio", + "targetUrl": "pages.caspio.com/Web-Database" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "P2WrQgJRNfq", + "name": "Compare Databases" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d12ae3ee-9240-4e48-9510-a2e07003d7f8", + "name": "general", + "startAt": "2017-09-24T19:42:20.515Z", + "endAt": "2019-09-24T19:42:20.515Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e1c37fc0-10d0-4d8b-8dc1-19782d34f259", + "creativeSets": [ + { + "creativeSetId": "3ec7841a-10ea-43dc-88bc-c5b8b9444063", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "28c3fb00-927a-4d0c-a0a5-58f4b7300a02", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Treatment Option for PAH - Prescription Treatment Website", + "title": "Pahtreatmen", + "targetUrl": "pahtreatmentinfo.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "FFlMXuImzk5", + "name": "Asthma Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b18a132e-2ff4-487f-8b64-8483c7616fa0", + "name": "general", + "startAt": "2017-09-24T19:42:21.092Z", + "endAt": "2019-09-24T19:42:21.093Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5151b9b4-a1a7-4774-a823-0d45734f8fbb", + "creativeSets": [ + { + "creativeSetId": "672ab4d4-3367-4726-93f5-c4a6b2c2bd8a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "218d29dc-cbb9-4783-b26f-c9a780956a39", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pandora Internet Radio - Listen to Free Music You'll Love", + "title": "Pandora", + "targetUrl": "https://www.pandora.com/" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "JtXILyVjNuSn", + "name": "music" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2ab5a7c5-9f39-43d6-a847-10b65f7795d7", + "name": "general", + "startAt": "2017-09-24T19:42:21.691Z", + "endAt": "2019-09-24T19:42:21.691Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5107eaeb-8141-48b4-89ab-807136938e0b", + "creativeSets": [ + { + "creativeSetId": "907b7b9e-aea6-46a2-801e-5855616b5bc9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "845b6642-9e7f-4790-861d-0426ae7255c2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Panini America Official Store - Licensed Sports Collectibles", + "title": "Paniniamerica", + "targetUrl": "store.paniniamerica.net" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wnYgEl7cckf", + "name": "Soccer Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5dbd3ba4-ed94-45eb-ba45-14083955de9f", + "name": "general", + "startAt": "2017-09-24T19:42:22.300Z", + "endAt": "2019-09-24T19:42:22.300Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9ca7b343-3dbd-4f7f-9594-d2f5073d5314", + "creativeSets": [ + { + "creativeSetId": "07fa3231-0e3b-4f39-bd2d-2d6b97eda4e6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "931d8430-95c6-4e6d-b24a-fa6f2d10882f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top Learning Management System - Try Paradiso LMS now", + "title": "Paradisosolutions", + "targetUrl": "www.paradisosolutions.com/lms-solutions" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "P9Lfpxf-FV6", + "name": "Management Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "48cc42c3-bd95-47cc-a2a0-c3d768376ce9", + "name": "general", + "startAt": "2017-09-24T19:42:22.928Z", + "endAt": "2019-09-24T19:42:22.929Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3fe14b15-2888-4e62-80e0-2c967d7dc2e4", + "creativeSets": [ + { + "creativeSetId": "af87524b-5fdb-47d5-bffe-49779bf9bc69", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "461e2551-856b-4783-b17b-fa10595a49c0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bad Credit Installment Loans - 96% Accepted.", + "title": "Paramountloansuite", + "targetUrl": "www.paramountloansuite.com" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "KclHbUft33H", + "name": "Personal Finance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "45b01d2d-d923-46ec-a4bf-bc8cfe83230e", + "name": "general", + "startAt": "2017-09-24T19:42:23.553Z", + "endAt": "2019-09-24T19:42:23.553Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "15d1a335-2a57-4aae-afd8-10d98d215740", + "creativeSets": [ + { + "creativeSetId": "f29f583c-556c-4f2c-86fb-b3487b1422a5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1f70d626-7d04-494c-a5bb-3a35343f2f7c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Parenting Pregnancy - Know More Here | related.parenting.com", + "title": "Parenting.com", + "targetUrl": "http://related.parenting.com" + } + } + ], + "segments": [ + { + "code": "fxvQmBzWeHv", + "name": "family & parenting" + }, + { + "code": "sGpf1Px3NKFz", + "name": "pregnancy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "49d94fbd-84a3-4326-98be-737077806870", + "name": "general", + "startAt": "2017-09-24T19:42:24.156Z", + "endAt": "2019-09-24T19:42:24.156Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2e9f0358-60e6-4b91-a400-88b9b62b54b0", + "creativeSets": [ + { + "creativeSetId": "1f809419-2e8a-4d54-95ff-139c2e3b180d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3a561da2-2912-4d80-b4bb-bf31d79f86e4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Cat® Hardware & Fasteners - Shop the Cat Online Store", + "title": "Parts.cat", + "targetUrl": "parts.cat.com/Hardware/Fasteners" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "6BRJuRThFS_", + "name": "Cat Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bebf3b20-0283-43b9-9aeb-24260142605a", + "name": "general", + "startAt": "2017-09-24T19:42:24.779Z", + "endAt": "2019-09-24T19:42:24.779Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2bac06a2-927f-4c65-8a3b-939e20c69caa", + "creativeSets": [ + { + "creativeSetId": "4a24f2d6-35ad-4234-a7ad-8d6435bc6081", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fd0a3f4d-7d22-4486-bdfb-9e35051afbac", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Discount Auto Parts", + "title": "PartsGeek", + "targetUrl": "www.PartsGeek.com" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "px5LkO5yZzb", + "name": "Auto Parts" + } + ] + }, + { + "creativeSetId": "0e0e8490-5ad6-4c68-a1aa-a4d65f44b24c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a6b13257-71ba-402f-a9b7-2a68e4f7db4f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Discount Auto Parts - Up to 80% Off Retail Prices", + "title": "PartsGeek", + "targetUrl": "https://www.partsgeek.com/?ad=31658376940" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "JlH8J1CrVA-P", + "name": "automotive" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2c3cd9af-b063-4e05-89d9-e680d2d114f7", + "name": "general", + "startAt": "2017-09-24T19:42:25.605Z", + "endAt": "2019-09-24T19:42:25.605Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d48a1b5b-6e73-474e-8ef4-ab559091acb2", + "creativeSets": [ + { + "creativeSetId": "b2c83aef-b39a-40b9-9178-d78a67918d74", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6ffb5923-b195-483a-bc30-2c7cc48bbdcf", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find Your Lost Pet - PawBoost", + "title": "Pawboost", + "targetUrl": "https://www.pawboost.com/add-pet-lost-and-found?utm_source=bing&utm_medium=search&utm_content=link&utm_campaign=bing_desktop_lost_and_found_dogs" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "ReCOizJgcCXw", + "name": "pets" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f664c9b9-eff1-44ba-a279-843421caed8f", + "name": "general", + "startAt": "2017-09-24T19:42:26.204Z", + "endAt": "2019-09-24T19:42:26.205Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d688ff1f-96b2-4743-918d-41c7d19931ef", + "creativeSets": [ + { + "creativeSetId": "7defbd00-1bba-44a1-b34f-0ebf4a0b3e99", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fa88266d-df8a-4a98-aca7-4bb592fb07ff", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Earn a Forestry Degree - Penn College | pct.edu", + "title": "Pct", + "targetUrl": "www.pct.edu/Forestry" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "A7P6uoAIgzo", + "name": "Forestry Supplies" + } + ] + }, + { + "creativeSetId": "14000156-c51a-4cbf-9ba3-29db611cfdd3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5e1a3ecf-7b4f-4948-bb14-58c4fb60d4bd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Join a growing field - Concrete Science | pct.edu", + "title": "Pct", + "targetUrl": "www.pct.edu" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "Q1LjD-it3o5", + "name": "Chemistry Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c6b3abcc-9f78-4660-a90c-5c341308a7be", + "name": "general", + "startAt": "2017-09-24T19:42:27.007Z", + "endAt": "2019-09-24T19:42:27.007Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "527a6338-63d8-446d-9abe-54f3f3ab1b22", + "creativeSets": [ + { + "creativeSetId": "7054ddd7-6134-42cf-8cd9-5bbd8f874917", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "df24628e-28b0-4596-99b6-d59893730173", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Download PDF Pro Software - Easy Install - Official Site", + "title": "Pdf-format", + "targetUrl": "www.pdf-format.com/Complete/Professional" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "HJWyQTrQEe3", + "name": "Adobe Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ad2fea46-ec3f-4d29-8971-c8fcf262d362", + "name": "general", + "startAt": "2017-09-24T19:42:27.581Z", + "endAt": "2019-09-24T19:42:27.582Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "193dd8cc-380b-4b63-bbf8-9ec7bfc5d149", + "creativeSets": [ + { + "creativeSetId": "186eb515-6380-4c28-898a-0e7a5a0d67e2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a8075d4b-8a89-456f-bf60-fbdb2b339455", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Get $20 Off Your Order - Plus 60 Days of Free Delivery", + "title": "Peapod", + "targetUrl": "www.peapod.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "YnihSiXSdRZ", + "name": "Food Delivery" + } + ] + }, + { + "creativeSetId": "db47d4a7-4613-4d03-a475-99a2c7ec5809", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8d4f84c5-9b0b-4906-97eb-e73292279a89", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Discover Our Local Offers - Peapod by Giant | peapod.com", + "title": "Peapod", + "targetUrl": "www.peapod.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "RjX-wPWa8Z_f", + "name": "Meal Deliveries" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "360e5609-98f4-4bee-af82-2d9dcd747777", + "name": "general", + "startAt": "2017-09-24T19:42:28.376Z", + "endAt": "2019-09-24T19:42:28.376Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "567c5d3a-3f32-4705-ad6d-9fb3f8bb15a1", + "creativeSets": [ + { + "creativeSetId": "7ad56063-ddea-44fb-bd0f-88248f0f0070", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3e229b76-13c9-4d6c-a426-1da337d5edb6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "AAA Grade Pearl Jewelry | Direct to Consumer Price | pearlsofjoy.com‎", + "title": "Pearlsofjoy", + "targetUrl": "www.pearlsofjoy.com/ ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "db96c623-e559-4fe2-917c-646d1713a4f6", + "name": "general", + "startAt": "2017-09-24T19:42:29.032Z", + "endAt": "2019-09-24T19:42:29.032Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "13e3ffd0-9455-4ada-aae1-849e205518b5", + "creativeSets": [ + { + "creativeSetId": "575f5afb-dde9-4189-8af5-393ce6663d38", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b33513ea-8b13-44ac-b0a5-002190efd090", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Beautiful Pearl Jewellery - Free Gift Box & Free Shipping", + "title": "Pearlsonly", + "targetUrl": "www.pearlsonly.com/Pearls" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "07a39532-6432-4e30-b064-664b024754eb", + "name": "general", + "startAt": "2017-09-24T19:42:29.576Z", + "endAt": "2019-09-24T19:42:29.576Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8dd76729-1002-4e31-832a-daab02c20a05", + "creativeSets": [ + { + "creativeSetId": "d2ceec65-07e7-4fd0-ba1e-714b424f8a26", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "48ebe193-fabf-4680-84db-d8519bc56fed", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Affordable Pearl Jewelry | Necklaces Bracelets & Earrings‎", + "title": "Pearlswithpurposeorg", + "targetUrl": "www.pearlswithpurpose.org/Affordable ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3f08c6c4-f5e4-4553-a0b8-8aa3cf887b75", + "name": "general", + "startAt": "2017-09-24T19:42:30.178Z", + "endAt": "2019-09-24T19:42:30.178Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "13390ae0-2c73-41a6-8d8a-74945b5676d5", + "creativeSets": [ + { + "creativeSetId": "447a7f43-4490-455b-908a-c7c65fdd12d1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6fe2bc8f-2560-45f4-aa18-da36b79228fc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "College Degrees Online - Penn State World Campus. | worldcampus.psu.edu", + "title": "Penn State World Campus", + "targetUrl": "https://www.worldcampus.psu.edu/?cid=CPCO20453&utm_source=bing&utm_medium=cpc&utm_campaign=BrandGenericBing-Syn&utm_term=online%20degree&utm_content=Online%20Degree" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "CRQETxhHVPXe", + "name": "academia" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1f1de3a2-2bf0-4e8e-94a8-098bdd7b5cf9", + "name": "general", + "startAt": "2017-09-24T19:42:30.755Z", + "endAt": "2019-09-24T19:42:30.755Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "805735ad-34d9-4fb9-8060-6b5ab237ec66", + "creativeSets": [ + { + "creativeSetId": "54655136-5796-4dfd-b3ee-90e81096ee71", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "42a61869-92c9-4d39-9b76-b4489c260570", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Penny Stock Pro Picks - Proven Top Investment Group", + "title": "Pennystockpropicks", + "targetUrl": "pennystockpropicks.com/Penny Stock/Picks" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "_PEMAp6RE_k9", + "name": "Learn Stocks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cfbc9fff-a4c5-4dcf-91fc-e1e96c81fbe2", + "name": "general", + "startAt": "2017-09-24T19:42:31.359Z", + "endAt": "2019-09-24T19:42:31.360Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "87f1e617-c780-42bf-b25c-b1c1e5d14475", + "creativeSets": [ + { + "creativeSetId": "e0785da0-8f4b-46e7-9240-dacda193b375", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dd383cf6-4711-4b57-8910-9b1163ca5408", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dental Emergency Office | perfectsmilesdentistreston.com", + "title": "Perfectsmilesdentistreston", + "targetUrl": "www.perfectsmilesdentistreston.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "L-b6nomirMS", + "name": "Dental Care" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6965dbb4-3678-4f57-aaf4-fccc8addb7ee", + "name": "general", + "startAt": "2017-09-24T19:42:32.045Z", + "endAt": "2019-09-24T19:42:32.046Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a1f472b0-f8af-4760-b245-9155daec8a2c", + "creativeSets": [ + { + "creativeSetId": "5b7e0be4-cebb-4069-b480-db8eeec2806e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6a6bb7a8-5caa-46f6-a69f-dac5f504cbe6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Essential Cycling Gear-Performance Bike", + "title": "Performancebike", + "targetUrl": "performancebike.com/Bikes/Accessories" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "2SN69khRzXf", + "name": "Cycling Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7bd03d87-6d31-4f28-86a8-b4222b3a77d3", + "name": "general", + "startAt": "2017-09-24T19:42:32.698Z", + "endAt": "2019-09-24T19:42:32.699Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e5faed03-e407-4ffb-8233-d68c8b546594", + "creativeSets": [ + { + "creativeSetId": "cba9ca4e-be66-411d-a5b7-8ae732c0f7cf", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d2fc7a39-af47-4a9f-a628-f040d1011e57", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Personal Finance - Data-Driven Money Tools | personalcapital.com", + "title": "Personal Capital", + "targetUrl": "https://www.personalcapital.com/?utm_campaign=xPersonal_Finance&utm_source=bing&utm_medium=cpc&utm_content={ad}&utm_keyword=personal%20finance&cl=56c066ae-6ff7-47a2-b165-7479b03cbea8&c3apiks=29298" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "KclHbUft33H", + "name": "Personal Finance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "19542614-bdce-409b-b8bf-73f3259233a2", + "name": "general", + "startAt": "2017-09-24T19:42:33.286Z", + "endAt": "2019-09-24T19:42:33.287Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "665807a7-03cd-429f-a2ba-0ad5d60cf77f", + "creativeSets": [ + { + "creativeSetId": "454ed7a6-0c3a-4bd9-89cb-7b535620cc58", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f2d86fdb-6a40-4326-a378-5d5f93e7ad0f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 10 Personal Loans Services - Get Up to $100,000 in 48 Hours", + "title": "Personal-loans.thetop10sites", + "targetUrl": "personal-loans.thetop10sites.com/Top/Personal Loans" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "BwhnRpkM8sF", + "name": "Personal Loans" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a9400ece-ea12-402e-8bdb-9135c8d80243", + "name": "general", + "startAt": "2017-09-24T19:42:33.853Z", + "endAt": "2019-09-24T19:42:33.854Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6ae70e0d-aa4f-432c-ac69-f81b87b8c9e6", + "creativeSets": [ + { + "creativeSetId": "fea8079d-6d75-454c-9a54-3ee1f3c7b029", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a36840f1-a265-42ac-b0e9-04232d6ff205", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Personal Finance", + "title": "PersonalCapital", + "targetUrl": "www.PersonalCapital.com" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "KclHbUft33H", + "name": "Personal Finance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0e4f223b-d98c-4182-a99b-6736a93955bb", + "name": "general", + "startAt": "2017-09-24T19:42:34.533Z", + "endAt": "2019-09-24T19:42:34.534Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e564fdff-e0b2-4fa9-8122-ce1c1c0d693b", + "creativeSets": [ + { + "creativeSetId": "596f9774-a0cc-46a5-9694-5e7e6dc0e272", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "199d1d59-c7a0-4c62-9f8b-8d87218b7af1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Personal Loan Pro | Helping You Find A Better Loan‎", + "title": "Personalloanpro", + "targetUrl": "www.personalloanpro.com/ ‎" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "BwhnRpkM8sF", + "name": "Personal Loans" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4daf5a36-f8a4-42da-a782-f224dd40682c", + "name": "general", + "startAt": "2017-09-24T19:42:35.107Z", + "endAt": "2019-09-24T19:42:35.108Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3b78169a-5f4b-4f60-bf26-a328c5280e61", + "creativeSets": [ + { + "creativeSetId": "9ef369c8-05f9-4008-90c0-ea35eb96cde5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "92142c0e-93cf-4a64-b2bd-99c234a09455", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Aquarium Supplies® | PetMountain.com", + "title": "PetMountain", + "targetUrl": "www.PetMountain.com" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "T2fnJ3M0GxS", + "name": "Aquarium Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b4e38ec3-e42c-49c3-bcbe-e5afa47ad8d8", + "name": "general", + "startAt": "2017-09-24T19:42:35.719Z", + "endAt": "2019-09-24T19:42:35.719Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "091256f2-d2bf-4b2e-b382-83db4e0f6a6e", + "creativeSets": [ + { + "creativeSetId": "1ebeb8f6-db5b-4b9a-94c5-03dde4aa14dd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3201d0c1-1c89-4fe6-af57-66a80ad9480e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "C-Store Office Software - Back-Office Solutions", + "title": "Petrosoftinc", + "targetUrl": "www.petrosoftinc.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "2QJW6dTCw6z", + "name": "Inventory Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cce41410-7bdb-471e-83f4-3eefc94a8d57", + "name": "general", + "startAt": "2017-09-24T19:42:36.303Z", + "endAt": "2019-09-24T19:42:36.304Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "82479216-e437-4bb7-b695-e48a4b193090", + "creativeSets": [ + { + "creativeSetId": "4181a47a-22a6-43e9-81f4-35dff8a42aa6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4d37cdbe-a600-44d4-9e48-b203101a1b75", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Aquariums - Wide Selection of Aquariums", + "title": "PetSmart", + "targetUrl": "https://www.petsmart.com/fish/tanks-aquariums-and-nets/aquariums/?utm_source=bing&utm_medium=cpc&utm_term=aquariums|471|2833033|77240719721262&utm_content=Fish%253EAquarium-General%253EExact&utm_campaign=US_Merch_Search_DTM_Near%3ESpecialty_Aquatics_v&msclkid=0e587c21ed8f199c96ba265955372cb9&utm_source=bing&utm_medium=cpc&utm_campaign=US_Merch_Search_DTM_Near%3ESpecialty_Aquatics_v&utm_term=aquariums&utm_content=Fish%3EAquarium-General%3EExact" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "2ohy_pDRqK5a", + "name": "aquariums" + } + ] + }, + { + "creativeSetId": "953bf2c2-c25e-4b25-977b-56b724cc0a6f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7ab19c85-68f2-48d6-95c1-b913257275eb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Reptiles Tank - Wide Variety of Reptile Tanks", + "title": "PetSmart", + "targetUrl": "https://www.petsmart.com/reptile/habitats-and-decor/terrariums/?utm_source=bing&utm_medium=cpc&utm_term=reptiles%20tank|471|2886841|83700325154077&utm_content=Reptile%253ETanks-General%253EBroad&utm_campaign=US_Merch_Search_DTM_Near%3ESpecialty_Reptile_nv&msclkid=20e7e8c488bb12cf9a40b2bc319ed065&utm_source=bing&utm_medium=cpc&utm_campaign=US_Merch_Search_DTM_Near%3ESpecialty_Reptile_nv&utm_term=reptiles%20tank&utm_content=Reptile%3ETanks-General%3EBroad" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "TX1L_NJDadfF", + "name": "reptiles" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b8e48635-7970-4ae5-86c1-68b40fa5c962", + "name": "general", + "startAt": "2017-09-24T19:42:37.125Z", + "endAt": "2019-09-24T19:42:37.125Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "068a7d50-5863-421c-8c59-c9c0fa99dead", + "creativeSets": [ + { + "creativeSetId": "0f999eb3-3277-4127-b72a-37517a82d77b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "06c50d57-8ab7-421d-a315-7071a8db2b57", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "PetSmart® Official Site - Save Big on Pet Supplies", + "title": "Petsmart", + "targetUrl": "www.petsmart.com" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "S2jGIYx0-6x", + "name": "Bird Store" + } + ] + }, + { + "creativeSetId": "748c1997-3cbf-423d-80f5-5b7cad193b17", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b69d7973-e74f-47c0-af7e-d272db9e6168", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "PetSmart® Grooming Salon - Explore Our Salon Services", + "title": "Petsmart", + "targetUrl": "www.petsmart.com/Grooming" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "6BRJuRThFS_", + "name": "Cat Supplies" + } + ] + }, + { + "creativeSetId": "77e7e358-8bd9-402a-9892-691004b0afee", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "132753e2-7d2b-4fff-9735-424dd53b54ce", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "PetSmart® Pet Grooming Salon - Explore Our Salon Services", + "title": "Petsmart", + "targetUrl": "www.petsmart.com/Grooming" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "cJeWKlUNo4Y", + "name": "Dog Store" + } + ] + }, + { + "creativeSetId": "e632d1c0-5538-4a67-8dee-63dee97440ea", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e2e08b92-0812-478f-8738-4c70f499e5d9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "PetSmart® Grooming Salon - Explore Our Salon Services", + "title": "Petsmart", + "targetUrl": "www.petsmart.com/Grooming" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "x3JqE5H5N3r", + "name": "Pet Store" + } + ] + }, + { + "creativeSetId": "9a4582bc-3795-4c45-a0fb-9091b652767f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "37b298cd-0d68-4513-99a2-137ae4c3001c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Reptile Store - Find Big Savings Today", + "title": "Petsmart", + "targetUrl": "www.petsmart.com/Reptile/Supplies" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "rH6iVpeEME2", + "name": "Reptile Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "056d6194-5c08-4250-8930-d7ee93e3a508", + "name": "general", + "startAt": "2017-09-24T19:42:38.775Z", + "endAt": "2019-09-24T19:42:38.775Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6cf7f8ae-d83b-4c87-ade4-7582e57408ab", + "creativeSets": [ + { + "creativeSetId": "7c7c55e0-1fd3-4ab7-8077-6fe1ea7b7530", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1e30e28e-119a-4680-a18a-8c917fb3879d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Discount Pet Supplies - $69+ Orders Ship Free and Fast", + "title": "Petsupplies4less", + "targetUrl": "www.petsupplies4less.com/Pet-Supplies/Pet-Pharmacy" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "6BRJuRThFS_", + "name": "Cat Supplies" + } + ] + }, + { + "creativeSetId": "b9be3e03-b263-465f-a8e2-fa496aa069bc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "32af2de5-7879-47bf-8904-8352fd3e5d46", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pet Store On - $69+ & All Rx Orders Ship Free", + "title": "Petsupplies4less", + "targetUrl": "www.petsupplies4less.com/Shop" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "x3JqE5H5N3r", + "name": "Pet Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c333e54d-9840-4b3c-81f6-8e953a4ecfcf", + "name": "general", + "startAt": "2017-09-24T19:42:39.629Z", + "endAt": "2019-09-24T19:42:39.629Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1eb02a73-e8a1-4b6c-bbf0-56ea446aef3f", + "creativeSets": [ + { + "creativeSetId": "f4969c11-ee0f-4d00-bb09-264790cb3733", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c090e321-e09e-4031-8369-73cf08ae8f5e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Quit Smoking Cigarettes - Get More Information", + "title": "Pfizer", + "targetUrl": "Pfizer.com/Help-To-Quit" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "TAoUE1tinMK", + "name": "Quit Smoking" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e706c371-920b-4487-8531-dd18bd7d586b", + "name": "general", + "startAt": "2017-09-24T19:42:40.220Z", + "endAt": "2019-09-24T19:42:40.220Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a0be24d0-ac45-4c31-93bf-df4aaf5599f6", + "creativeSets": [ + { + "creativeSetId": "2e1926bf-6f18-4b02-98a6-410362638ced", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "814ad826-b782-4dc6-9388-b2219c535c7a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bio Tech Company Data - Request A Free Demo Today", + "title": "Pharmaintelligence", + "targetUrl": "pharmaintelligence.informa.com/BioTech" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "vPlAftFRlgO", + "name": "Biotech Business" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2e06e1a6-ca02-4ffb-a2a7-87e575030e68", + "name": "general", + "startAt": "2017-09-24T19:42:40.816Z", + "endAt": "2019-09-24T19:42:40.817Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "794b3d87-6706-4ba8-8c66-4923b9306c89", + "creativeSets": [ + { + "creativeSetId": "57f0b2b2-420a-4b73-976d-1ab4391bf854", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b28abd1e-4d6d-4a87-8e05-2f8b3aecaff2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Philips Healthcare Innovation - Integrated Health IT", + "title": "Philips", + "targetUrl": "www.usa.philips.com/Healthcare" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mltw3XEd08nw", + "name": "Health & Fitness Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5cf1d012-48fd-45e0-9fd7-7df15b7f2b0e", + "name": "general", + "startAt": "2017-09-24T19:42:41.450Z", + "endAt": "2019-09-24T19:42:41.451Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7a6e4368-4381-434a-a16b-d692fa55faf7", + "creativeSets": [ + { + "creativeSetId": "5c56f9e4-6828-4b8f-9b8a-9bac5c3f2dc9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0b4219fc-bec0-4909-b15c-24eb65ad0cb1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "philosophy® Official Site", + "title": "Philosophy", + "targetUrl": "www.philosophy.com" + } + }, + { + "creativeInstanceId": "d6d24e78-851f-4bd5-9c38-405b32422f9f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "philosophy Official Site® - Join Our Family | philosophy.com", + "title": "Philosophy", + "targetUrl": "philosophy.com/welcome/offer" + } + } + ], + "segments": [ + { + "code": "WeD6iqpYcRh", + "name": "Philosophy" + }, + { + "code": "rjZBSwH_A5h", + "name": "Philosophy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "eec3c7ec-e9e5-40f1-a636-c9f25eda9d92", + "name": "general", + "startAt": "2017-09-24T19:42:42.279Z", + "endAt": "2019-09-24T19:42:42.279Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2c143fe0-2ebc-4b3d-8b50-143913fcaad7", + "creativeSets": [ + { + "creativeSetId": "1270b8b9-8a3e-4edf-9b33-8935f0cd596d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c5e3eb2a-5117-4c88-9de7-84db077d9f4d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Psychology Degree Programs - University of Phoenix®", + "title": "Phoenix", + "targetUrl": "www.phoenix.edu/Psychology/Degrees" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mTbLUekRxb3", + "name": "Psychology Degree" + } + ] + }, + { + "creativeSetId": "ef9b7a5d-7ab9-4b71-82ff-b88d7fadfffb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f20e575a-19e9-4183-ba11-504cdeaa02d0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "IT Online Courses Available - University of Phoenix Online", + "title": "Phoenix", + "targetUrl": "www.phoenix.edu/IT/Courses" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "rNd-q2umuLA", + "name": "IT Online Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "05c8c85b-79c7-4031-9d48-500629a65ad4", + "name": "general", + "startAt": "2017-09-24T19:42:43.073Z", + "endAt": "2019-09-24T19:42:43.073Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c834d2e7-840c-4322-b78c-15e16c6cd227", + "creativeSets": [ + { + "creativeSetId": "884c30dc-d82c-42a2-8010-d4c94e56367f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "41424a02-325f-4a3a-9ccb-c08e9549e137", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "University of Phoenix® - College Degrees Online - phoenix.edu", + "title": "PhoenixEdu", + "targetUrl": "www.phoenix.edu/Online/Degree" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "ANs-xRChItO", + "name": "College Degrees Online" + } + ] + }, + { + "creativeSetId": "182fc0ab-0417-4e5c-9f29-de304e7bd2ba", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9b932f9a-220a-4f3d-8419-68b2c6b09a2c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online Education Programs - University of Phoenix® Degrees", + "title": "PhoenixEdu", + "targetUrl": "www.phoenix.edu/Online/Education" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "w5KTA-1-lyt", + "name": "Online Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "76cccb9b-9ba5-4ef5-83b5-03cb79cf81ac", + "name": "general", + "startAt": "2017-09-24T19:42:43.893Z", + "endAt": "2019-09-24T19:42:43.894Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9a833f6d-8d8d-4120-9467-5ac90c9422b8", + "creativeSets": [ + { + "creativeSetId": "e703b9de-2ba5-4f09-8f16-06584ed06ab4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "86c3c5a4-3fe7-4fb9-9f83-22f77c21ab9b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "UV Sanitizer & Charger - Complete Patented Clean", + "title": "PhoneSoap", + "targetUrl": "PhoneSoap.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "w3QYv0DISr3a", + "name": "Flu Prevention" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7f1507a5-cffd-45f7-9cae-011ec6a26292", + "name": "general", + "startAt": "2017-09-24T19:42:44.442Z", + "endAt": "2019-09-24T19:42:44.443Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1884dbd9-0181-4fd1-a559-beaacf6a922d", + "creativeSets": [ + { + "creativeSetId": "68f1ca99-2618-4156-b263-18100fc8144b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d1786179-8582-4292-b5af-3520618c75bf", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Science The News - Phys.org", + "title": "Phys", + "targetUrl": "phys.org" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "UFzEkc76aqX", + "name": "Science News" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1d54e2bc-7123-4235-8d09-8ff0f6b3ac0b", + "name": "general", + "startAt": "2017-09-24T19:42:45.073Z", + "endAt": "2019-09-24T19:42:45.073Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "395def8b-f8e9-426f-9374-d10f6e35cbed", + "creativeSets": [ + { + "creativeSetId": "c947b562-70f4-4926-a82e-448d9648abf7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "70d063f4-ece0-43ae-bba2-bf85b6eb6b3f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Adult MDD - Add-On Treatment Option", + "title": "Physician-mdd", + "targetUrl": "physician-mdd-info.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "ZYCLaYR2JuLH", + "name": "Depression Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6155fd86-deef-4e18-98ea-f173dad7cb2c", + "name": "general", + "startAt": "2017-09-24T19:42:45.642Z", + "endAt": "2019-09-24T19:42:45.642Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "789489c9-84ee-488b-af36-7e40c1e263b9", + "creativeSets": [ + { + "creativeSetId": "40b9db99-010a-4bd5-89d0-2df3a447b2b7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0e70c182-3511-4727-9ee4-a35f61cc9007", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "PillPack Pharmacy - Your Full-Service Pharmacy | pillpack.com", + "title": "Pillpack", + "targetUrl": "pillpack.com" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "sOqbf6PQ3c-", + "name": "Online Pharmacy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "59b5d374-60e7-487f-9b6d-16be43eb97d8", + "name": "general", + "startAt": "2017-09-24T19:42:46.225Z", + "endAt": "2019-09-24T19:42:46.225Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9e3ef5cd-d6ee-483d-8f3e-6ea8363e3a67", + "creativeSets": [ + { + "creativeSetId": "c88c579b-3f09-401b-8a1b-15601c99676d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7aedb691-36b4-4924-b9a7-b89f568d3aa3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Taste The Plated Difference - Get 50% Off Your First Order | plated.com", + "title": "Plated", + "targetUrl": "https://www.plated.com/" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "1RvD3K2NVelr", + "name": "baking" + } + ] + }, + { + "creativeSetId": "75303d3c-2403-40d9-aa70-514dead5ac64", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ac09da9e-380e-473b-abb4-12d56ef302a1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Taste The Plated Difference - Get 50% Off Your First Order | plated.com\r\n", + "title": "Plated", + "targetUrl": "https://www.plated.com/" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "f1KIxkHVuIEf", + "name": "cooking" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "adfdde74-bb32-428b-8dd6-83a3a0bdc2fd", + "name": "general", + "startAt": "2017-09-24T19:42:47.128Z", + "endAt": "2019-09-24T19:42:47.128Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d0f8dbee-a5f2-4e4f-80d6-6dcfa440deee", + "creativeSets": [ + { + "creativeSetId": "b4d3f31f-4c53-4789-be5a-55b7c378bccd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8eeee0c2-0c9d-47d8-8e33-89e03a4b6b8b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "A Great Mario Adventure - Super Mario 3D Land", + "title": "Play.nintendo", + "targetUrl": "play.nintendo.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "o7Q1hjps7Vm", + "name": "Online PC Games" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "09e151fe-c10f-4407-8959-8176aa45cf44", + "name": "general", + "startAt": "2017-09-24T19:42:47.776Z", + "endAt": "2019-09-24T19:42:47.776Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e675111f-ada2-4b19-9c3e-ff9725b1c54f", + "creativeSets": [ + { + "creativeSetId": "63dcec9f-dd07-49b8-8b34-712a9975c1ee", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f4be1af4-4e24-4af1-8582-58c5f3539e73", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Audiobook Subscription - First Month Free", + "title": "Playster", + "targetUrl": "www.playster.com/Free-Trial" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "EUUwhzvuKC4", + "name": "Islamic Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "20bd3b88-d95f-4d74-a02c-089b1c0ece6f", + "name": "general", + "startAt": "2017-09-24T19:42:48.392Z", + "endAt": "2019-09-24T19:42:48.392Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2017f7b0-6ec1-4788-864b-702691ceec6f", + "creativeSets": [ + { + "creativeSetId": "c299684f-6661-49fd-b7ee-41f63bc4f50f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b7b27d56-bf64-48d4-902e-a2770a3f279c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "IT Online Courses - Top-Rated Courses | pluralsight.com", + "title": "Pluralsight", + "targetUrl": "www.pluralsight.com/it-courses" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "rNd-q2umuLA", + "name": "IT Online Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "29c5551e-5ccc-4997-9884-68f8eaa0901d", + "name": "general", + "startAt": "2017-09-24T19:42:49.027Z", + "endAt": "2019-09-24T19:42:49.027Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4712c02d-853f-4b25-9f43-14b23f40eddd", + "creativeSets": [ + { + "creativeSetId": "d37a5dc8-de31-41fc-8e2f-455e8990d83e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ecb69047-80f1-4978-9ef1-e64467be38b4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "PNC Virtual Wallet® $300 Offer - Get Rewarded For Joining Today", + "title": "Pnc", + "targetUrl": "www.pnc.com/Virtual_Wallet/$300_Offer" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "7MiD5IH1W6t", + "name": "Bank Accounts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6312e2bc-af82-4e86-b802-18f7659ab634", + "name": "general", + "startAt": "2017-09-24T19:42:49.591Z", + "endAt": "2019-09-24T19:42:49.591Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bc6d3a40-739d-424e-94c0-1fcb0953c72e", + "creativeSets": [ + { + "creativeSetId": "677346d9-5d75-4b43-a765-9f4327380d2f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b483afd0-f614-4d46-905a-0c1d87edec93", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "PNC Home Equity Loans", + "title": "PNC", + "targetUrl": "www.PNC.com" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "ME0864i1Nfkc", + "name": "Refinance Home" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "559fe0f7-7289-452f-8754-9e9b84f1446b", + "name": "general", + "startAt": "2017-09-24T19:42:50.217Z", + "endAt": "2019-09-24T19:42:50.218Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4eb13edb-9bf1-498f-ad2c-645254f7f1b0", + "creativeSets": [ + { + "creativeSetId": "eb404fa3-fccb-4505-b70f-d45413944f4a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c660e9af-38be-48a2-9eb7-a1c25c167286", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Business Reputation Management - Customer Interaction Platform", + "title": "Podium", + "targetUrl": "www.podium.com/Podium/Reputation" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "P9Lfpxf-FV6", + "name": "Management Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "802be34f-b310-4f94-9742-92d0f9942dcc", + "name": "general", + "startAt": "2017-09-24T19:42:50.817Z", + "endAt": "2019-09-24T19:42:50.818Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e58fad78-d683-4b91-be87-3b2b0bfb7c5f", + "creativeSets": [ + { + "creativeSetId": "53ac1b4c-d6c6-4c7f-b0cf-340308db8db4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9ccd7dce-4ca4-4cef-ae96-514a7d833389", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Poetry.org - Resource site for poetry and poets", + "title": "Poetry.org", + "targetUrl": "http://www.poetry.org/" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "H9JKSBlTpLne", + "name": "poetry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8603e0d0-f089-4dad-bf35-d2ab57c00640", + "name": "general", + "startAt": "2017-09-24T19:42:51.702Z", + "endAt": "2019-09-24T19:42:51.702Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a90eb57f-adc9-4602-82d8-42849670bc21", + "creativeSets": [ + { + "creativeSetId": "8965ea16-5a4d-4057-840c-962d40d6114f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b571d284-c13a-434a-abcd-d1dbc0d5efba", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Polaris Parts Today - Secure Checkout, Fast Shipping", + "title": "Polarispartshouse", + "targetUrl": "www.polarispartshouse.com/polaris-parts" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "px5LkO5yZzb", + "name": "Auto Parts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e17fc97f-9e81-4652-a6c6-d2b924958db4", + "name": "general", + "startAt": "2017-09-24T19:42:52.254Z", + "endAt": "2019-09-24T19:42:52.254Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "593ccbba-79e5-4253-9d2a-7f77e0b64b20", + "creativeSets": [ + { + "creativeSetId": "eaa6fb09-f8b2-4669-a600-c3e8574e67e2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dd6071f7-c4bc-4cd7-9b7b-838714ade9f0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Become a Leader in Pediatrics - Boston & London Workshops", + "title": "Postgraduat", + "targetUrl": "postgraduateeducation.hms.harvard.edu" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "ZMWPpFl5yOJ", + "name": "Paediatrics Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f38ada32-16f8-43a5-88a3-0ec5f6b1a3d5", + "name": "general", + "startAt": "2017-09-24T19:42:52.872Z", + "endAt": "2019-09-24T19:42:52.872Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0f3e7c9f-f06e-4167-b01e-935dd73282e2", + "creativeSets": [ + { + "creativeSetId": "a2a30e7a-07b1-49cc-8457-a6fcb95e8c46", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2ef6052d-2df8-4029-b279-68697e6733a5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Decorators", + "title": "Potterybarn", + "targetUrl": "www.potterybarn.com/decor" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "iOSOYZ7Fm9M", + "name": "Home Decorating" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "de466181-0dac-4971-9d51-014c77add9d3", + "name": "general", + "startAt": "2017-09-24T19:42:53.532Z", + "endAt": "2019-09-24T19:42:53.532Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2b0c372f-4baf-418a-94fd-163624fced1f", + "creativeSets": [ + { + "creativeSetId": "e9f3ba11-5234-4a8b-a260-f406d4b832f7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2aad02d4-24af-4e93-b6e1-37d2eeb84a33", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Indoor Electric Grill - Power Smokeless Grill", + "title": "Powersmokelessgrill", + "targetUrl": "powersmokelessgrill.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "w2RZcyzoMxq", + "name": "Barbecues" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "520e6f79-0d73-4fe6-861f-33f017c73c78", + "name": "general", + "startAt": "2017-09-24T19:42:54.131Z", + "endAt": "2019-09-24T19:42:54.131Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0258e0ff-c435-426f-8a3b-ba0cb9ef5739", + "creativeSets": [ + { + "creativeSetId": "8c80fd95-3baa-4c51-8887-e336ec5be8c8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "415c95db-98d5-4710-b181-d6564e5afdc9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Media Monitoring Analytics - Engage Your Target Audience", + "title": "Pr.cision", + "targetUrl": "pr.cision.com/MediaMonitoring" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "UBXGkQ3Bdgz4", + "name": "Social Media Analytics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f87e30c5-99af-4a8f-9e60-cac9bf1eeb82", + "name": "general", + "startAt": "2017-09-24T19:42:54.765Z", + "endAt": "2019-09-24T19:42:54.765Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "01617594-9436-481e-8b35-1547ed64d7ee", + "creativeSets": [ + { + "creativeSetId": "b8771540-dbba-4c85-a499-459a65b65830", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1e9dc052-291f-4acb-99fd-4a16415110fb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Portable Livestock Fencing - Free Shipping on Orders $100+", + "title": "Premier1supplies", + "targetUrl": "www.premier1supplies.com/Fencing" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "lUKHxt2iV2P9", + "name": "Fencing Trophies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cad059fe-752d-4381-8ff6-6dfc8e8a83b0", + "name": "general", + "startAt": "2017-09-24T19:42:55.368Z", + "endAt": "2019-09-24T19:42:55.368Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "17bf22a9-de07-4dbb-b445-97148d99b6e6", + "creativeSets": [ + { + "creativeSetId": "996bc6f9-dded-42ad-a36a-6f061f13ddf0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "343c6df8-ad5d-4650-90a3-6957f31ddbe6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "architects | PreScreenedArchitects.com", + "title": "PreScreenedArchitects.com", + "targetUrl": "http://www.prescreenedarchitects.com/interview40024/?l=3&kw_id=34258772261&c_id=3358992052&gatc=be&entry_point_id=26329847&iv_=__iv_m_e_c_3358992052_k_34258772261_g_1588550943_p_2_b_be_d_c_vi__&entry_point_id=26329847&iv_=__iv_m_e_c_3358992052_k_34258772261_g_1588550943_p_2_b_be_d_c_vi__#" + } + } + ], + "segments": [ + { + "code": "avw0QD-PbLk", + "name": "Architecture" + }, + { + "code": "lWY_LMstUaKq", + "name": "architecture" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a80f1e49-1318-44e4-96c1-cb41f853b832", + "name": "general", + "startAt": "2017-09-24T19:42:55.944Z", + "endAt": "2019-09-24T19:42:55.945Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a248234d-7382-4f9e-810b-091f45194697", + "creativeSets": [ + { + "creativeSetId": "f4b6fae9-5730-49e4-aeb1-061357ee7ca2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "15fb7e8b-14c1-4981-8333-3a9fbd6fee96", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Thinking About Quitting? - Visit For More Info‎", + "title": "Prescription treatment website ‎", + "targetUrl": "Prescription treatment website ‎" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "TAoUE1tinMK", + "name": "Quit Smoking" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2a2eca0f-b1ba-43f7-b9f9-2235aac8fdf4", + "name": "general", + "startAt": "2017-09-24T19:42:56.510Z", + "endAt": "2019-09-24T19:42:56.510Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2a08d964-e3b9-41b0-bf2d-05fb7edce4ba", + "creativeSets": [ + { + "creativeSetId": "b959d46c-75c5-4e6d-bacc-ca2c8501174d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "89535ca4-7288-450b-8463-314d1c2a1fbc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "15 Cancer Causing Foods - You Probably Eat Every Day", + "title": "Preventionpulse", + "targetUrl": "preventionpulse.com/15CancerFoods" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "An9yYZl6Px3", + "name": "Cancer Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "40365033-3c9d-4f00-b803-d9bcc0632c5b", + "name": "general", + "startAt": "2017-09-24T19:42:57.100Z", + "endAt": "2019-09-24T19:42:57.100Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bea9d381-183d-461c-a321-229986e099f5", + "creativeSets": [ + { + "creativeSetId": "ba91b501-d6bc-4c26-a5dc-e669c22de249", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "67c0603b-0eac-4fd5-8aa3-a02d4796d969", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Alcohol Delivery - 100s Of Beers, Wines & Spirits", + "title": "Priceawesome", + "targetUrl": "priceawesome.com/Alcohol/Delivery" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "unFLrtorUoq", + "name": "Alcohol Delivery" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f67c4e89-2326-47d7-a58d-a85690212c1a", + "name": "general", + "startAt": "2017-09-24T19:42:57.685Z", + "endAt": "2019-09-24T19:42:57.685Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "40df0093-2752-463d-80bd-12dc162e3d29", + "creativeSets": [ + { + "creativeSetId": "582cfee6-22d0-47af-aa5a-87935ac4a6ab", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "10718628-7204-43ef-8bea-afb0c952cf02", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "$115+ Cheap Flights - Get Up to 40% Off Flights | priceline.com", + "title": "Priceline", + "targetUrl": "www.priceline.com/Flights" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "0LyFuY7_Cse", + "name": "Flight Deals" + } + ] + }, + { + "creativeSetId": "e0054b1f-e7c3-4e4e-b8b1-84d1493322cb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f4965b72-4c6a-4593-9687-cc7eef2b93e9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Priceline.com® Travel - Save More with Priceline", + "title": "Priceline", + "targetUrl": "www.priceline.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6mVE5rciM5p", + "name": "Hotel Deals" + } + ] + }, + { + "creativeSetId": "4089867b-52ed-435d-9176-997613afc4c0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ea59516a-a3b6-46e5-8e52-f6b10f9b7613", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cheapest Trip Packages - Save Up to $500 on Packages Today", + "title": "Priceline", + "targetUrl": "Priceline.com/Trip_Packages" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6dab1nE-Ik7", + "name": "Train Deals" + } + ] + }, + { + "creativeSetId": "b0999549-2ac0-4067-bfc6-743d94062ab8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1994a5bb-01e2-4a34-a2bd-58904ccb4782", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cheap Flights @ Priceline - Get Up to 40% Off Flights", + "title": "Priceline", + "targetUrl": "www.priceline.com/Flights" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "lvYt-vwY0ml", + "name": "Travel Tours" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ff86972b-d0b8-444a-87d7-1d77153ac8ee", + "name": "general", + "startAt": "2017-09-24T19:42:59.088Z", + "endAt": "2019-09-24T19:42:59.088Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b2ef515c-b628-4899-9dd9-e8c1ab8cf4a2", + "creativeSets": [ + { + "creativeSetId": "0127cf3d-884e-4a37-b39e-55ac20dd11ae", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9acfb68a-c113-4fd1-adee-507e84aa3e6f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy vitamins - Special Deal - This Month - All Must Go Deals.", + "title": "Pricesteals", + "targetUrl": "pricesteals.today/Buy vitamins/Buy vitamins" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "5Ry6TcY_ODM", + "name": "Buy Vitamins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "feee23aa-223b-447d-a982-1800a621c4ac", + "name": "general", + "startAt": "2017-09-24T19:42:59.646Z", + "endAt": "2019-09-24T19:42:59.646Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f68b6853-8afd-44b1-b569-8169aa63bc2f", + "creativeSets": [ + { + "creativeSetId": "2ff6b17a-71d8-42a4-a77e-712e5a97e031", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a109aea5-95f1-49f7-8b17-1b976d494988", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Appliances - Sale", + "title": "PriceSteals.Today", + "targetUrl": "PriceSteals.Today/Home Appliances" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "mkmN9m3WHmgP", + "name": "Home Appliances" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b33f4463-363b-4941-8473-c1acaefa5d09", + "name": "general", + "startAt": "2017-09-24T19:43:00.249Z", + "endAt": "2019-09-24T19:43:00.250Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "481fa5d9-48f3-458f-ac9c-cb87b95ba2e5", + "creativeSets": [ + { + "creativeSetId": "7bc9accf-b48c-4e93-ba62-8c6f919c7ea1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "337048e9-83eb-4bc5-b395-85e20d60aaa9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pringles® Flavors - Savory BBQ Crisps", + "title": "Pringles", + "targetUrl": "www.pringles.com/Flavors/BBQ" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "w2RZcyzoMxq", + "name": "Barbecues" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7a611075-b37b-4fdb-a154-ac7ce2646a7a", + "name": "general", + "startAt": "2017-09-24T19:43:00.872Z", + "endAt": "2019-09-24T19:43:00.872Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9b596e3b-6964-423e-9a87-e0acecc0d09e", + "creativeSets": [ + { + "creativeSetId": "6380b595-66c1-439a-a8ff-6d7a9281de89", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "75c5d365-9335-4afa-b26d-4536f8dc817c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Learn How To Run 7 - Figure E-Commerce Business", + "title": "Printprofits.launchpad.inboxblueprint", + "targetUrl": "printprofits.launchpad.inboxblueprint.net/Free/Report" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "zgMSYI-gfMo", + "name": "eCommerce Websites" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6d022546-5f95-42b3-b740-e0dd3cd40afe", + "name": "general", + "startAt": "2017-09-24T19:43:01.461Z", + "endAt": "2019-09-24T19:43:01.462Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bab31b5e-f247-4acb-9a0f-39a721b445d3", + "creativeSets": [ + { + "creativeSetId": "f0d1c80d-f0c4-4a22-bb22-85f4889eaee4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "592d1d2f-16b0-46f3-b09d-5c5d08cdae0a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 5 Orthopedic Books of 2018 - Our Top Pick Will Surprise You", + "title": "Products.bestreviews", + "targetUrl": "products.bestreviews.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "OAHRLfYZDW5", + "name": "Orthopaedic Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0199345e-ec3b-4a09-a32d-66ec42492d7d", + "name": "general", + "startAt": "2017-09-24T19:43:02.040Z", + "endAt": "2019-09-24T19:43:02.040Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e80c129d-e8cf-4cd9-9149-8695a4533df7", + "creativeSets": [ + { + "creativeSetId": "4d6b255c-60e3-440c-a79c-3a467fbe6bee", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f741da47-942a-4a9e-acdd-7d361ac05dd6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Ancestry Research Experts - Free Estimates", + "title": "ProGenealogists", + "targetUrl": "ProGenealogists.com/Ancestry" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "pPUDW42mDiO", + "name": "Genealogy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1cf688b5-0f69-42d5-b2c0-91a8b22a3c8e", + "name": "general", + "startAt": "2017-09-24T19:43:02.595Z", + "endAt": "2019-09-24T19:43:02.595Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2825d71b-f953-42f4-9f4e-7abb196b8728", + "creativeSets": [ + { + "creativeSetId": "1627f5ab-fb9f-45bf-be30-b81b75c4f0fa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e53a0bc8-c43a-4d82-bd56-306bf40c2c3d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Progressive Car Insurance - Named the #1 Car Insurance Website", + "title": "Progressive", + "targetUrl": "www.Progressive.com" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "oYzWfQaOXCj", + "name": "Car Insurance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "346aa5c3-9e5f-46ef-9db4-a43f51aea486", + "name": "general", + "startAt": "2017-09-24T19:43:03.187Z", + "endAt": "2019-09-24T19:43:03.187Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3508146c-3241-436f-83fb-128b30b73815", + "creativeSets": [ + { + "creativeSetId": "40ee4e39-07ae-40f1-ae62-5a813b66920e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fcb8f0b6-ee70-417a-b4d1-c7e4935ce6d8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Progressive® Auto Insurance - #1 Rated Website for 11 Years", + "title": "Progressive Insurance", + "targetUrl": "https://www.progressive.com/lp/auto-compare/?code=9003849005&se=Bing&kwd=insurance&mt=p&psd=c&adnet=s&adid=79508454839117&phone=90039&srcfrc=true&msclkid=94dded32f2da16ae3b7ab740cbb2c518" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "qAkGlLrS0McJ", + "name": "insurance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7276731e-ffd8-4e8e-81b6-8429bac72ff0", + "name": "general", + "startAt": "2017-09-24T19:43:03.766Z", + "endAt": "2019-09-24T19:43:03.766Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1fa05238-6b73-4e45-a3d8-13f8cf3087e4", + "creativeSets": [ + { + "creativeSetId": "1d8c81af-f440-4f5f-abbc-24ada57a1cf8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f318e871-a523-47e5-80ac-1a523b0da040", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Monster.com® - Official Site - Use Monster find jobs near you", + "title": "Promotions.monster", + "targetUrl": "promotions.monster.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "2YtFT0-MFv1", + "name": "Job Search" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "891f7c49-c82c-4fd9-84f1-32e1e0741e6a", + "name": "general", + "startAt": "2017-09-24T19:43:04.401Z", + "endAt": "2019-09-24T19:43:04.401Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f5bb4581-3a70-4621-8afa-04aee2e809b2", + "creativeSets": [ + { + "creativeSetId": "1163ee22-e5bb-48af-aec4-d16213d7e3e4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2d5b5470-ef89-4dd7-a879-93193fb76231", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Learn How To Trade Cryptos - Don’t Buy Bitcoin!", + "title": "Prtradingresearch", + "targetUrl": "www.prtradingresearch.com/CryptoCurrency/Beginner" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "FIwLp4gtICpI", + "name": "Crypto Mining" + } + ] + }, + { + "creativeSetId": "552a16fc-9132-415a-8dec-cada3f57ae16", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1b41b11f-8a27-4997-b191-4d406ece34cb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Learn How To Trade Options - Free Options Trading Course", + "title": "Prtradingresearch", + "targetUrl": "www.prtradingresearch.com/Beginner/OptionsGuide" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "_PEMAp6RE_k9", + "name": "Learn Stocks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f5e593ec-8593-447b-b49f-beaacd833d04", + "name": "general", + "startAt": "2017-09-24T19:43:05.329Z", + "endAt": "2019-09-24T19:43:05.330Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "292c5c04-6511-4f35-84fb-b7a23ef75c8a", + "creativeSets": [ + { + "creativeSetId": "ac7ea8cf-1803-48b0-bfb8-1270dd82561b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9b31c568-c1a8-4988-b4bb-3e404f7d4088", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Depression Center | Symptoms & Treatment - Psych Central", + "title": "Psych Central", + "targetUrl": "https://psychcentral.com/disorders/depression/" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "_OOf4hTf8ZOc", + "name": "depression" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "04e92088-98a3-48c2-81cf-ae9161849590", + "name": "general", + "startAt": "2017-09-24T19:43:05.958Z", + "endAt": "2019-09-24T19:43:05.958Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c4085ad5-400e-461d-b3c9-c70f629f1883", + "creativeSets": [ + { + "creativeSetId": "74865f89-ad36-43d0-a05e-1702f8309d1b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7112d213-f4b9-4b90-b069-718d24e66df9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Lynn Online MS in Psychology - Start Aug 27", + "title": "Psychologyonline.lynn", + "targetUrl": "psychologyonline.lynn.edu" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mTbLUekRxb3", + "name": "Psychology Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d8779a36-34c9-4e1d-8f40-939972a9c2c7", + "name": "general", + "startAt": "2017-09-24T19:43:06.802Z", + "endAt": "2019-09-24T19:43:06.803Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ee0de941-cdc5-48a2-8c10-fe16077ff507", + "creativeSets": [ + { + "creativeSetId": "0c3db7a7-1680-47cb-9672-4afedde2f6dd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "61794b55-32c7-4643-8364-b8272072a7cc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Puppies | PuppiesSale.org", + "title": "PuppiesSale.org", + "targetUrl": "http://www.puppiessale.org/Gallery/" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "g4XIwu_NZ65r", + "name": "dogs" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "112844b5-0a18-4020-abdf-a2a506d4f527", + "name": "general", + "startAt": "2017-09-24T19:43:07.389Z", + "endAt": "2019-09-24T19:43:07.390Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2b8d31e0-f724-4ca0-a9e9-24782a94be7f", + "creativeSets": [ + { + "creativeSetId": "b6a11d5e-de8c-476a-a71c-76a60b699f26", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ad7b4e85-b2a8-4399-bf6e-a1b6ea1fce5d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Purdue University Global - IT Degrees - Apply", + "title": "Purdueglobal", + "targetUrl": "go.purdueglobal.edu/InfoTech" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "rNd-q2umuLA", + "name": "IT Online Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a6bcdbcb-a2bc-4da9-9ac9-9ff30e4b84d5", + "name": "general", + "startAt": "2017-09-24T19:43:07.971Z", + "endAt": "2019-09-24T19:43:07.972Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4f9a66c9-c081-4674-ade0-ce929418b4e6", + "creativeSets": [ + { + "creativeSetId": "9fe59a24-1322-49c1-a777-d458b5f78c27", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fcc7e58a-b22d-453f-a462-c530aece4bfe", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Purdue University Global - Online Degree Programs - Learn More", + "title": "PurdueGlobalEdu", + "targetUrl": "go.purdueglobal.edu/OnlineDegrees" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "ANs-xRChItO", + "name": "College Degrees Online" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b2e27253-d798-4851-a268-4e350692f7e3", + "name": "general", + "startAt": "2017-09-24T19:43:08.577Z", + "endAt": "2019-09-24T19:43:08.578Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "05994278-0358-4504-98f7-54e804a2a8c7", + "creativeSets": [ + { + "creativeSetId": "6a3e50ec-4778-4ba1-bf91-433ed3bd0a03", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5b4bcf93-4499-4854-9d69-7db27a36e9bc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pure Encapsulations - 100% Authentic | pureformulas.com", + "title": "Pureformulas", + "targetUrl": "www.pureformulas.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "5Ry6TcY_ODM", + "name": "Buy Vitamins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a8ae2bd0-cfae-4b64-8b0d-3f8c401b122b", + "name": "general", + "startAt": "2017-09-24T19:43:09.129Z", + "endAt": "2019-09-24T19:43:09.129Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "88c2f92f-3dd5-4801-bed9-918fd8c963e0", + "creativeSets": [ + { + "creativeSetId": "ca8c146f-c533-4197-9cb9-b4bf08d5733b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "496f396b-bc39-4b52-afaa-292fbd0a2464", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Bauer Hockey Gear - Order Yours Online Today", + "title": "Purehockey", + "targetUrl": "www.purehockey.com/Hockey-Gear" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "hAIdxFZ19kvh", + "name": "Hockey Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "56565b7c-7081-4008-a03a-e504ed8e6101", + "name": "general", + "startAt": "2017-09-24T19:43:09.700Z", + "endAt": "2019-09-24T19:43:09.700Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "81c478f2-7c98-4ced-b2b8-b096a7b376a0", + "creativeSets": [ + { + "creativeSetId": "3758a63f-e509-4f5c-811c-aeffde5a4a2a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "68e55358-131c-48e4-beec-5e3a6aafda7e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Vitamins Online Today - Puritan's Pride?? Buy 2 Get 3", + "title": "Puritan", + "targetUrl": "www.puritan.com/Vitamins/Online" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "5Ry6TcY_ODM", + "name": "Buy Vitamins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f5831670-8fe5-4df5-8d43-2529ef88a17a", + "name": "general", + "startAt": "2017-09-24T19:43:10.271Z", + "endAt": "2019-09-24T19:43:10.271Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "aaacb9db-448e-4e9a-9cce-54589665128f", + "creativeSets": [ + { + "creativeSetId": "a3e03a73-9656-431c-b9af-24ff5500d57f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8fd97337-b698-4585-9fc7-dec3da006947", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Vitamins Online Today - Puritan's Pride® Official Site", + "title": "Puritan.com", + "targetUrl": "https://www.puritan.com/?scid=42614&cmp=goo-_-Bing_NB_Generic_Desktop_Alpha-_-vitamins" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "xez1d0ENfvIk", + "name": "vitamins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5c32266d-1c57-4bb0-b0f9-4ae227d07ee1", + "name": "general", + "startAt": "2017-09-24T19:43:11.068Z", + "endAt": "2019-09-24T19:43:11.068Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4c6ade31-7a1a-4841-8713-ca83b7de3902", + "creativeSets": [ + { + "creativeSetId": "a36b00cd-5f92-4e26-907c-65faf148b0be", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cbab5233-9530-4b20-b153-c7af788b19c3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Qantas® Official Site - Let Qantas® Fly You There", + "title": "Qantas", + "targetUrl": "www.qantas.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "0LyFuY7_Cse", + "name": "Flight Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "23e93159-0575-43b8-98e0-056f1846659e", + "name": "general", + "startAt": "2017-09-24T19:43:11.640Z", + "endAt": "2019-09-24T19:43:11.640Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f3099bb5-df49-4adb-bc40-910e765e6329", + "creativeSets": [ + { + "creativeSetId": "c65439cc-ff0c-456d-9f7c-dfc8ad526dfa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "07a8466b-dcd4-4602-9940-7abf0d01a7ab", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2018 Gartner Magic Quadrant - For Analytics and BI Platforms", + "title": "Qlik", + "targetUrl": "www.qlik.com/Gartner/MagicQuadrant" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "UCCrJnLnO8s", + "name": "SAP Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6303727c-0bb6-4afb-84b3-5526f02a0cd8", + "name": "general", + "startAt": "2017-09-24T19:43:12.222Z", + "endAt": "2019-09-24T19:43:12.223Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "784ee61c-f034-443b-b89a-c0de199ff36c", + "creativeSets": [ + { + "creativeSetId": "afeed5fe-b6de-489c-9fc4-3ed093169a14", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "509b8fc2-9e59-4228-940a-23ec87d2782c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Quartermaster Uniforms & Gear - Public Service Equipment", + "title": "Qmuniforms", + "targetUrl": "www.qmuniforms.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "5rrqOyiLvSS", + "name": "Hunting Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "84f7a7fe-fbb1-4e53-b286-3f4ebbc1f6cd", + "name": "general", + "startAt": "2017-09-24T19:43:12.898Z", + "endAt": "2019-09-24T19:43:12.899Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "700a4318-98b6-4ee8-a7eb-96a9c01db7e8", + "creativeSets": [ + { + "creativeSetId": "8c98aec8-bc09-4fc5-aca0-1a23380bb5da", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8c26e282-7e31-4cf6-b831-159d53e227aa", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "SkidSteer Forestry Cutter", + "title": "Quickattach", + "targetUrl": "www.quickattach.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "A7P6uoAIgzo", + "name": "Forestry Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "abfa4574-340a-4c47-8f05-435e3a5a2f50", + "name": "general", + "startAt": "2017-09-24T19:43:13.473Z", + "endAt": "2019-09-24T19:43:13.473Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "262bf6c0-ac3a-469f-b00f-e458dcfe655c", + "creativeSets": [ + { + "creativeSetId": "02e80d5b-d7bb-4c66-ba35-f57f42694d23", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b88aa60f-8288-4056-a526-1634f64594bf", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Quick Base™ Online Database - Trusted By Top Brands", + "title": "Quickbase", + "targetUrl": "www.quickbase.com/Database/FreeTrial" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "P2WrQgJRNfq", + "name": "Compare Databases" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "04f17222-b013-4623-8523-d21b520b0641", + "name": "general", + "startAt": "2017-09-24T19:43:14.036Z", + "endAt": "2019-09-24T19:43:14.036Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f162aa43-f918-479e-8278-5e5f629118f9", + "creativeSets": [ + { + "creativeSetId": "82b1c5c9-92e0-4e85-83d1-432ac1ddd660", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b1d50b4b-9c09-4113-afa7-0674c8785759", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Refinance Your Home Fast", + "title": "Quickenloans", + "targetUrl": "www.quickenloans.com/Refinance" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "dtTKtVFdpje", + "name": "Refinance" + } + ] + }, + { + "creativeSetId": "83aa150e-42ae-41be-aee1-88bbf7aa2ac4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a5c43b9a-eeed-4ebc-a74d-11334bd7d6ab", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Quicken Loans® Refinance - America's #1 Online Lender", + "title": "Quickenloans", + "targetUrl": "www.quickenloans.com/Refinance" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "ME0864i1Nfkc", + "name": "Refinance Home" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "199b5eff-0cb4-4961-be60-efb963126736", + "name": "general", + "startAt": "2017-09-24T19:43:14.868Z", + "endAt": "2019-09-24T19:43:14.868Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "571c5b07-f011-497f-845d-e47954fec5e6", + "creativeSets": [ + { + "creativeSetId": "3bc27324-9f40-4cce-9454-1cc22455ced2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7d8ec91e-4350-4645-a436-9e63617c9699", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "$100-1000 Personal Loans 2-Min - Deposited Direct in Your Bank.", + "title": "Quickercash", + "targetUrl": "quickercash.com/personal-loan" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "BwhnRpkM8sF", + "name": "Personal Loans" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3b76715b-d5a5-45bb-881c-e49d4140439a", + "name": "general", + "startAt": "2017-09-24T19:43:15.429Z", + "endAt": "2019-09-24T19:43:15.429Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3033f864-7e75-4bc7-84a7-8cd0ef38d005", + "creativeSets": [ + { + "creativeSetId": "3d39da70-835e-4177-96e3-bae120121a19", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "855a928e-b714-4a3f-b892-e8426764c265", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Are You Ready to Quit Smoking? - Quit Smoking Support with NRT", + "title": "Quit", + "targetUrl": "www.Quit.com/How-To-Quit/Quit-Advice" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "TAoUE1tinMK", + "name": "Quit Smoking" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ae2982bf-8212-49a3-a72c-74cdb8915be0", + "name": "general", + "startAt": "2017-09-24T19:43:16.014Z", + "endAt": "2019-09-24T19:43:16.014Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7ea02cb4-9385-4973-be72-c98b378485f4", + "creativeSets": [ + { + "creativeSetId": "cd71d656-7cbb-4f5a-87b5-3b6c5510a55a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "241205fe-5085-400b-9c60-b0e57cf45688", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Car Insurance Quotes - Cheap - Rates from $19 / Month (2018)", + "title": "Quote.insurancequotes", + "targetUrl": "quote.insurancequotes.com" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "oYzWfQaOXCj", + "name": "Car Insurance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "526e65b6-3758-4048-bd43-ef6c13466848", + "name": "general", + "startAt": "2017-09-24T19:43:16.571Z", + "endAt": "2019-09-24T19:43:16.571Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "31a71916-ab37-45e2-92da-1effb211ba5b", + "creativeSets": [ + { + "creativeSetId": "0f0b2b8f-4454-4179-bebb-10918fc27b16", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c093ea18-7184-4427-ba79-a131ef6bd3e3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "$19 Cheap Auto Insurance - Virginia Drivers Save 60%", + "title": "Quotelab", + "targetUrl": "www.quotelab.com/Auto-Insurance/Virginia" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "oYzWfQaOXCj", + "name": "Car Insurance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "73001440-965d-4b65-a4ef-764086a837a7", + "name": "general", + "startAt": "2017-09-24T19:43:17.335Z", + "endAt": "2019-09-24T19:43:17.335Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a54764c9-7d73-4797-a61d-7f8f9e3a1a9b", + "creativeSets": [ + { + "creativeSetId": "2d0516ab-fde9-4a97-bd03-a31cc33e218e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dabf2f86-52a8-4d7d-b012-746a310d873c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Virginia Auto Insurance - Top Insurers Standing By", + "title": "Quotes.carinsurance", + "targetUrl": "quotes.carinsurance.com/Virginia" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "oYzWfQaOXCj", + "name": "Car Insurance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ee73d5f3-05a0-4d57-b9b0-a015d35b3bc1", + "name": "general", + "startAt": "2017-09-24T19:43:18.157Z", + "endAt": "2019-09-24T19:43:18.158Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8db26ee4-3c5c-47a1-9292-900342e3db19", + "creativeSets": [ + { + "creativeSetId": "68bc15ab-1644-4a50-9590-07ba1f0c533b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7543c565-0fab-4998-bf79-4a589c781104", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Auto & Home Insurance in VA - Save When You Bundle", + "title": "Quotes.insurance", + "targetUrl": "quotes.insurance.com/Virginia" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "oYzWfQaOXCj", + "name": "Car Insurance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "473cf067-982e-4b43-89e1-0b174ebcc17b", + "name": "general", + "startAt": "2017-09-24T19:43:18.726Z", + "endAt": "2019-09-24T19:43:18.726Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "76032170-243a-412a-ba1d-c20c9dee995d", + "creativeSets": [ + { + "creativeSetId": "8beea69b-03e6-4ebd-a978-e234ec255545", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d7424d9e-76a9-4ea3-8fd8-3698399808c0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Islamic Books - Online Quran Hadith Tafsir Bookstore", + "title": "Quran Hadith Tafsir Bookstore", + "targetUrl": "https://www.hilalplaza.com/collections/islamic-books" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "Y4_7iMJZvhOa", + "name": "islam" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "60517d38-52b0-4ebf-83e4-fed241dda26a", + "name": "general", + "startAt": "2017-09-24T19:43:19.302Z", + "endAt": "2019-09-24T19:43:19.302Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c5ac1b1f-5c52-4c5b-b4ba-13c4ddd7237e", + "creativeSets": [ + { + "creativeSetId": "cb494efc-f160-481c-aec3-08c46bd52403", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d0fd13d9-a24f-4537-bd81-daa0d5e04173", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Radio Player - Access Your Favorite Music.", + "title": "Radiolive", + "targetUrl": "www.radiolive.co" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "fRsTAYO2C1M", + "name": "Radio Streaming" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4f1ef49f-f65f-4e8b-903a-961d566d14b0", + "name": "general", + "startAt": "2017-09-24T19:43:19.854Z", + "endAt": "2019-09-24T19:43:19.854Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "af8a51a2-4f86-4914-ba30-e7e9c20a4274", + "creativeSets": [ + { + "creativeSetId": "43ddf06d-1ab9-4b9f-94d8-7d1d0f79eff7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dc5d640e-8b6a-49ba-a708-887e98dbe444", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Viz Anime Naruto Shippuden - Browse Popular Anime Now | anime.radiostreambutler.com", + "title": "RadioStreamButler.com", + "targetUrl": "http://anime.radiostreambutler.com/anime.php?q=gasaraki+anime&aff_id=68&offer_id=342&source=34279&ot=1&mp=d&msclkid=1618f7dac8ce1614a38cada22701e49e" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "G5bg0_QexeKP", + "name": "anime" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9ac63d7b-7679-429b-8ffe-f6eb2340fa8d", + "name": "general", + "startAt": "2017-09-24T19:43:20.460Z", + "endAt": "2019-09-24T19:43:20.460Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1b54f51f-0d71-4b79-84c3-17cd3848f6c8", + "creativeSets": [ + { + "creativeSetId": "6564dac1-9b3e-402c-b2da-40adb71ea30e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "53817cea-872d-4051-b7ea-c25511a5f4c7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "EuroRail Pass Official Site - Book Now & Get Extra Days", + "title": "Raileurope", + "targetUrl": "www.raileurope.com/eurorail" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6dab1nE-Ik7", + "name": "Train Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "55cc42e2-1b3d-4985-8c0a-650b16c2668b", + "name": "general", + "startAt": "2017-09-24T19:43:21.048Z", + "endAt": "2019-09-24T19:43:21.048Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b8620e04-dded-42f0-a82a-deb5422bc7d2", + "creativeSets": [ + { + "creativeSetId": "c30c4a26-3a31-4012-a7a9-25e00f15649c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ace89003-759e-4739-8d9c-88c4e75f700b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "RAM® 1500 - A Truck For Every Job", + "title": "Ramtrucks", + "targetUrl": "www.ramtrucks.com/1500/Truck" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "TrWA-UI4zhY", + "name": "Pickup Trucks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2bb87bf3-347b-4f61-8e0a-a94aa37509a5", + "name": "general", + "startAt": "2017-09-24T19:43:21.771Z", + "endAt": "2019-09-24T19:43:21.771Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4bca96a2-d339-4927-8917-6be3455a89a4", + "creativeSets": [ + { + "creativeSetId": "dde2b0d1-7a06-45b1-a3c8-10c79e1c26bd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "86f48e89-2660-47d0-9ac3-38c736c02e44", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Metalwork Pneumatics", + "title": "Rank in USA", + "targetUrl": "http://rankinusa.com/" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "rKqaRduapOlJ", + "name": "metalworking" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bcaf210a-bd0a-4b9d-b8db-db6f151614c8", + "name": "general", + "startAt": "2017-09-24T19:43:22.368Z", + "endAt": "2019-09-24T19:43:22.368Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a0e8a730-c762-4be1-a773-9ace380d7b66", + "creativeSets": [ + { + "creativeSetId": "2e2c2aba-4956-482c-a09e-43b506e06d03", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e7013af4-c0f2-4ff3-938d-7c167e0a33d6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Automation Software - Faster & More Efficient Tests", + "title": "Ranorex", + "targetUrl": "www.ranorex.com/Automation-Tool/Free-Trial" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "mAWzKREQPg8", + "name": "Automation Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f9bad113-7d6b-4b7b-87f7-f5d1df61ab2b", + "name": "general", + "startAt": "2017-09-24T19:43:23.016Z", + "endAt": "2019-09-24T19:43:23.016Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "36590f93-1af5-4352-b583-d2e3ac267438", + "creativeSets": [ + { + "creativeSetId": "7b17eacb-dcaa-422a-8469-091c035aee65", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3c5a2029-04b5-4bbe-8940-0a4f360b8582", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "High Current AC Mining PDU's - 50, 60 or 75 Amps-1 or 3 Phase", + "title": "Raptor-power", + "targetUrl": "www.raptor-power.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "FIwLp4gtICpI", + "name": "Crypto Mining" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "46d79317-bf7c-4d47-a10d-6cac36f994e9", + "name": "general", + "startAt": "2017-09-24T19:43:23.586Z", + "endAt": "2019-09-24T19:43:23.587Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "63283284-7c91-4930-abe1-e99430dd3ac3", + "creativeSets": [ + { + "creativeSetId": "47f69ee1-f398-4af2-b1df-ebf6363eff9f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0276a547-eefd-4100-95d4-b57bc60b7138", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 7 Best Online Banks 2018 - Compare the Top Banks of 2018", + "title": "Ratepro.co", + "targetUrl": "ratepro.co/High-Interest/Online-Banks" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "7MiD5IH1W6t", + "name": "Bank Accounts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "16331399-2d77-4ffc-92d6-40880d96a6a2", + "name": "general", + "startAt": "2017-09-24T19:43:24.355Z", + "endAt": "2019-09-24T19:43:24.355Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9a00d4c4-1b78-40cc-a692-7b54afe47302", + "creativeSets": [ + { + "creativeSetId": "cf28794c-bceb-4231-b3e0-8a3a278fc4c8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "63d3a5c8-d39c-4b8e-8668-7242225c9f7c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Read Hinduism Books Free - Read Books Free Online or PDF", + "title": "Readingfree", + "targetUrl": "readingfree.org" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "w5JSnOzclQZ", + "name": "Hinduism Books" + } + ] + }, + { + "creativeSetId": "f64ba311-bc86-4614-b02f-85ae302688b0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "16ab9ac4-d20b-4b64-b0ab-31e490c64ab0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Read Paleontology Books Free - Read Books Free Online or PDF", + "title": "Readingfree", + "targetUrl": "readingfree.org" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "Ra6GjWV-Ogj", + "name": "Palaeontology Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "418d2779-bec6-46ac-a30d-256868f4e0c6", + "name": "general", + "startAt": "2017-09-24T19:43:25.209Z", + "endAt": "2019-09-24T19:43:25.209Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "52a5b88b-668e-4fd7-9110-7d7783d0b17f", + "creativeSets": [ + { + "creativeSetId": "7be50e7d-a536-4f4f-a0ee-2d2fcc522482", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8bf39424-5675-4c9a-b582-6e68a5213605", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Listing Of Homes For Sale", + "title": "RealtyNow", + "targetUrl": "RealtyNow.com/Homes_For_Sale" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "8BeGmq3KFPtE", + "name": "Local Listings" + } + ] + }, + { + "creativeSetId": "f3d7ac20-c4a9-41d0-ad16-d7a8675c4e4b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0ba52faf-fedd-4278-aca4-0557129da7ab", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Real Estate For Sale", + "title": "RealtyNow", + "targetUrl": "RealtyNow.com/Property_For_Sale" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "UCZ9mWvmOvyi", + "name": "Buy Real Estate" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f216b685-dc13-4bd0-ad37-4296696fe9c3", + "name": "general", + "startAt": "2017-09-24T19:43:26.492Z", + "endAt": "2019-09-24T19:43:26.493Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "25faf9a6-b336-4e7b-b1e1-18d964909cf5", + "creativeSets": [ + { + "creativeSetId": "d969f0dc-099b-496c-bd60-e23d49bed96f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "809c3688-ecc0-4420-a25c-001dc679069c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Redgate Helps You Compare - Red-Gate.com", + "title": "Red-Gate", + "targetUrl": "Red-Gate.com/Compare" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "P2WrQgJRNfq", + "name": "Compare Databases" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5be41797-8e9b-4fa7-b743-52cc41b1d627", + "name": "general", + "startAt": "2017-09-24T19:43:27.046Z", + "endAt": "2019-09-24T19:43:27.047Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "065a9afd-c391-40df-b33c-80e421cd08d5", + "creativeSets": [ + { + "creativeSetId": "10fe8373-3b52-44db-8f00-07b81a4dd6c7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b4eb4057-475a-444b-9d9c-eae2897488a4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Compare Database Contents - Tools To Compare Databases", + "title": "Red-Gate.com", + "targetUrl": "https://www.red-gate.com/products/sql-development/sql-data-compare/?utm_source=bing&utm_term=%2Bdata%20%2Bcompare&utm_campaign=BS+%7C+US+%7C+Generic+%7C+Database+Compare+%7C+BMM&utm_medium=cpc&utm_content=DEjgE96c|pcrid|6790390546|pkw|%2Bdata%20%2Bcompare|pmt|bb|pdv|c|" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "02RAWtKBmnFq", + "name": "database" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b56ff2a3-0e7e-4971-8f45-90cfc6869370", + "name": "general", + "startAt": "2017-09-24T19:43:27.682Z", + "endAt": "2019-09-24T19:43:27.682Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "90b5dff6-ef03-4abd-af4f-67cce33558b1", + "creativeSets": [ + { + "creativeSetId": "4373e2a3-3ffb-4c6a-ab6f-f1c5d23d521e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6db61259-3864-4aae-a263-f7d4f9b266c2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Accredited Psychology Degree - 8-Week Psychology Programs", + "title": "RegentEdu", + "targetUrl": "learn.regent.edu/Psychology" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mTbLUekRxb3", + "name": "Psychology Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "faa26b96-d466-464c-8ef8-02a1af83c48e", + "name": "general", + "startAt": "2017-09-24T19:43:28.289Z", + "endAt": "2019-09-24T19:43:28.289Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0106df81-b992-4b07-a55e-9744fa091528", + "creativeSets": [ + { + "creativeSetId": "e3d13ccb-ba30-4bf9-9ca5-bc54ea034cb3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9c450344-f2df-4717-bd1b-843794b486a9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Climbing Gear - Award Winning Gear & Clothing", + "title": "Rei", + "targetUrl": "www.rei.com/Climbing-Gear" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "zJrrQvnmCnp", + "name": "Climbing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "740df32d-b00c-49eb-a14f-aa9a4bf899db", + "name": "winter", + "startAt": "2017-09-24T19:43:28.627Z", + "endAt": "2019-09-24T19:43:28.627Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0106df81-b992-4b07-a55e-9744fa091528", + "creativeSets": [ + { + "creativeSetId": "327a970c-edac-4cbd-9efe-6c93653682e1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a21baabb-d301-46e4-9834-abf215135979", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Snowboarding Gear - Shop From Your Phone", + "title": "Rei", + "targetUrl": "www.rei.com/evolv/Rock-Shoes" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "--yzN6s96hZD", + "name": "Snowboarding Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c7ea52a7-35b2-48c9-80ac-2d036f71ae2e", + "name": "general", + "startAt": "2017-09-24T19:43:29.187Z", + "endAt": "2019-09-24T19:43:29.187Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0ce0efef-444d-40f5-9eaa-ae2e7397442b", + "creativeSets": [ + { + "creativeSetId": "62eeec5e-cf16-4ad0-a948-c23f069d51e2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7182f559-8773-4da3-bef1-9bd58dfad15f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Adventure Travel with REI - Active Trips for Adults & Families", + "title": "REI", + "targetUrl": "www.REI.com/Adventures" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "2SN69khRzXf", + "name": "Cycling Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "67521472-0d9e-4dc5-b2cf-a034b8eeac97", + "name": "general", + "startAt": "2017-09-24T19:43:29.765Z", + "endAt": "2019-09-24T19:43:29.765Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "809d66e9-dc6a-44a5-b922-4b75c2e8feaa", + "creativeSets": [ + { + "creativeSetId": "94a271ce-2f46-4241-9cfc-4bac0d4c6707", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e216c7ca-f46f-415e-8ce8-f2741d67da35", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Delivery Food - Find Tasty & Yummy Recipe", + "title": "Related.fitnessmagazine", + "targetUrl": "related.fitnessmagazine.com/Meals" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "YnihSiXSdRZ", + "name": "Food Delivery" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7ec9e9b0-f1f2-4134-8c5f-a5d7d6851d32", + "name": "general", + "startAt": "2017-09-24T19:43:30.380Z", + "endAt": "2019-09-24T19:43:30.380Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c8669a22-1ea3-411c-89e6-41372b1a4127", + "creativeSets": [ + { + "creativeSetId": "bb3b4e56-d8ce-4bc8-af3d-e86b5d52bb1e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "41235a60-cfc8-4b53-afcb-6123557237a9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rental Furniture | rentfurniture.com", + "title": "Rentfurniture", + "targetUrl": "www.rentfurniture.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "T4rhcMPPBhp", + "name": "Home Décor" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5581371d-d43c-4204-8922-7fd378684092", + "name": "general", + "startAt": "2017-09-24T19:43:31.006Z", + "endAt": "2019-09-24T19:43:31.006Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d3d49f0c-6664-4e79-8d5d-68764071c0a8", + "creativeSets": [ + { + "creativeSetId": "75da83e1-7e26-4712-b3f9-aeeacb275359", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b06ee39b-52bc-491c-8f68-924b06ff2405", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Blood Testing Near You", + "title": "RequestATest", + "targetUrl": "RequestATest.com" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "ZFoOZxsAWHI", + "name": "Drug Tests" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b0f5f4a2-bc75-47a2-9884-c3d57646605f", + "name": "general", + "startAt": "2017-09-24T19:43:31.638Z", + "endAt": "2019-09-24T19:43:31.638Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2b19350c-fbad-4fe4-a34b-693d669b59ad", + "creativeSets": [ + { + "creativeSetId": "d8df1eff-554c-4957-be6b-a95f8fba35c2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6c35b7d1-02f1-4e0c-a836-23ec1d62125a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Treat Irritable Bowel Syndrome - Get Useful Results", + "title": "Results.qualityhealth", + "targetUrl": "results.qualityhealth.com/IBS" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "2COuQqpVPYdA", + "name": "Bowel Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "458ebf6b-d928-4605-8b1f-5c60eb64aebf", + "name": "general", + "startAt": "2017-09-24T19:43:32.218Z", + "endAt": "2019-09-24T19:43:32.218Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2d0fd6cc-6eb2-4766-b615-6ef423bacac3", + "creativeSets": [ + { + "creativeSetId": "99083a9e-d130-4036-b029-6512edc31413", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ebf8bcfa-ddd0-4766-b6ab-056c22637a0e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Resources for Physicians - Rethink Obesity®", + "title": "Rethinkobesity", + "targetUrl": "www.rethinkobesity.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "32d861b4-e2b7-48ff-a7e6-6d94f8f9d66c", + "name": "general", + "startAt": "2017-09-24T19:43:32.789Z", + "endAt": "2019-09-24T19:43:32.790Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9395634e-ed74-4c30-8cdb-c175610ee302", + "creativeSets": [ + { + "creativeSetId": "d4b244bf-7238-43db-bbe0-7c06a1f513f6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "41548f79-9ac7-460f-bb16-7d6f3c718b9e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "MINKPINK Womenswear - Free 2-Day Shipping | revolve.com", + "title": "Revolve", + "targetUrl": "www.revolve.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "obV7ryiIRW4", + "name": "beauty" + } + ] + }, + { + "creativeSetId": "970781a5-f381-46a9-b736-2c2a3201d19f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d2aaebe4-09f8-4a3b-83e4-2d6b6848a0a1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Wildfox Couture - Enjoy Free Shipping & Returns", + "title": "Revolve", + "targetUrl": "www.revolve.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "mDuvMtm0102", + "name": "fashion" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4a147179-494f-4eb1-8883-037261b80476", + "name": "general", + "startAt": "2017-09-24T19:43:33.783Z", + "endAt": "2019-09-24T19:43:33.783Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a063efc2-99e3-4e8f-97c2-bdd310f0d2ee", + "creativeSets": [ + { + "creativeSetId": "08d9b04a-a5a4-4b4a-9a5a-0f14b7ad9b2b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3cf134dc-10f8-4ca1-9024-1d8beaf8e7fd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Ringing Rocks Archery - Traditional Archery Bows & Arrows", + "title": "RingingRocksArchery", + "targetUrl": "www.RingingRocksArchery.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "MaS1t2gzIou", + "name": "Archery Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "158abbd6-9a4d-4cd2-be8e-b0a74978d3de", + "name": "general", + "startAt": "2017-09-24T19:43:34.383Z", + "endAt": "2019-09-24T19:43:34.384Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "51c0a93c-ae2d-4b90-af95-b6e7f65a3949", + "creativeSets": [ + { + "creativeSetId": "f5ff1aaf-b7bd-41b9-8542-1f02f98171fe", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b2ebbc5d-5a72-4481-8ecc-c2853b067057", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Your Dream, Animated At RMCAD - Your Creativity Comes To Life", + "title": "RmCad", + "targetUrl": "official.rmcad.edu/Animations/Degree" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "K1d6Q52s4WP", + "name": "Animation Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f06bd122-1735-4924-8570-e73f4efd29b4", + "name": "general", + "startAt": "2017-09-24T19:43:34.992Z", + "endAt": "2019-09-24T19:43:34.993Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "96470b10-1199-43e9-a444-092507bc74b4", + "creativeSets": [ + { + "creativeSetId": "34d06988-e024-499e-a897-74754ef57124", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b4f70939-8a8d-4a73-a0e4-4946cce99801", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rockler Woodworking - Free Shipping on All Orders > $35", + "title": "Rockler", + "targetUrl": "Rockler.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "sa6bkvlxwxQ", + "name": "Woodworking Projects" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8be71198-70f5-4cf5-99d1-3bc288c3274a", + "name": "general", + "startAt": "2017-09-24T19:43:35.611Z", + "endAt": "2019-09-24T19:43:35.611Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "57fdbfc6-5164-42a1-9d9f-48f015b71bec", + "creativeSets": [ + { + "creativeSetId": "607ed293-c782-4059-8c8b-1def2d54a735", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3e3082ef-5d66-441e-a5b5-1220c778870a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Reptile Feeder Mice - Available Online Right Now", + "title": "Rodentpro", + "targetUrl": "www.rodentpro.com/Reptile-Feeder/Frozen-Feeders" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "rH6iVpeEME2", + "name": "Reptile Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0de100b2-b01b-4165-bbc3-bb83ff3f6c0d", + "name": "general", + "startAt": "2017-09-24T19:43:36.606Z", + "endAt": "2019-09-24T19:43:36.606Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c724b331-d3d5-4baf-8a1b-fca5ed0202a6", + "creativeSets": [ + { + "creativeSetId": "b0d520f6-7bd2-4e13-8129-341f80664837", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "12109a74-21b2-42a1-85df-03f7c95d7ae0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Concept 2 SkiErg - Assembled in the USA | roguefitness.com", + "title": "Roguefitness", + "targetUrl": "www.roguefitness.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "7kNV7uZ9Ium", + "name": "Skiing Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "eee00130-0ada-40eb-a611-a59c6e360096", + "name": "general", + "startAt": "2017-09-24T19:43:37.180Z", + "endAt": "2019-09-24T19:43:37.180Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "216654c2-3602-4a20-b62a-14f1ce9f79c2", + "creativeSets": [ + { + "creativeSetId": "43e9176a-cff5-4798-9bad-ee5e62a0b117", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4c52f3a9-3b27-4912-88b5-69f5eba09409", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Land Rover Parts | RoverLandParts.com", + "title": "RoverLandParts", + "targetUrl": "RoverLandParts.com" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "px5LkO5yZzb", + "name": "Auto Parts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "60ab4ad1-7f23-4b1a-bb03-f97fe44f9feb", + "name": "general", + "startAt": "2017-09-24T19:43:37.833Z", + "endAt": "2019-09-24T19:43:37.833Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e9ac5c32-44bf-4c14-9d09-381989c591fd", + "creativeSets": [ + { + "creativeSetId": "d86b14eb-3b5a-4fbe-8a44-c0e553f8ec32", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "75ad53a7-3bc2-452f-91e6-57691dbe79df", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Lamp Sets - Great Deals on Stylish Lamps", + "title": "Royallampshades", + "targetUrl": "royallampshades.com" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "iOSOYZ7Fm9M", + "name": "Home Decorating" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d36f9260-7006-4939-b430-1fcdff41bdba", + "name": "general", + "startAt": "2017-09-24T19:43:38.507Z", + "endAt": "2019-09-24T19:43:38.507Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ac248c0f-3308-4729-a92f-ee3eb3c94979", + "creativeSets": [ + { + "creativeSetId": "71747810-016d-4377-baf8-e27ffac6cbcb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fe72d383-6b38-409c-b0c1-9559f4927d8f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Artificial Lawn - Best Price & Next Day Shipping", + "title": "Rubberflooringinc", + "targetUrl": "www.rubberflooringinc.com/artificial-lawn" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "u3b4RF02Ctr", + "name": "Artificial Lawns" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d2c1f053-b98d-46a4-aa4e-8826a501a4a0", + "name": "general", + "startAt": "2017-09-24T19:43:39.122Z", + "endAt": "2019-09-24T19:43:39.122Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "81e10780-a92e-4784-bd57-ef6ce46c5ee6", + "creativeSets": [ + { + "creativeSetId": "288eef8b-099a-43a5-9577-cf6091db5407", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7d78f54b-d3f0-4b33-ac09-08727eb686da", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rugby Equipment - Rugby Gear, Apparel & Teamwear", + "title": "Rugbyimports", + "targetUrl": "www.rugbyimports.com/gear" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "kQoevuYFc0X", + "name": "Rugby News" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1ef1e9bb-defd-4901-b004-99c69735be33", + "name": "general", + "startAt": "2017-09-24T19:43:39.784Z", + "endAt": "2019-09-24T19:43:39.785Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "125d6225-3e82-4e4e-a978-8747421cd901", + "creativeSets": [ + { + "creativeSetId": "6507e8c8-45b5-4a96-840e-528ef525a506", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4d1bde1a-db1c-4646-8184-3df44be28507", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cardiac Diet Food List! - Learn About Cardiac Diet!", + "title": "RunDiet", + "targetUrl": "RunDiet.info/Cardiac-Diet" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "F4UI56jArDpU", + "name": "Cardiac Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "76d138e5-ae16-436f-9a0e-a10466a204f1", + "name": "general", + "startAt": "2017-09-24T19:43:40.345Z", + "endAt": "2019-09-24T19:43:40.346Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0b95ad15-5c59-4d43-b4a8-7ff71c52b26e", + "creativeSets": [ + { + "creativeSetId": "4a9e8e43-2b10-426d-9c14-c170d7bb84c2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "720a31b5-e91d-4986-ae1f-6f8b06a35235", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Heavy-Duty Sewing Machines - #1 Tool for Canvasworkers", + "title": "Sailrite", + "targetUrl": "www.sailrite.com/Sewing-Machines/Portable" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "93bPE8nabJd", + "name": "Sewing Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d822ee5e-805b-404d-8d49-cd58b17df282", + "name": "general", + "startAt": "2017-09-24T19:43:40.888Z", + "endAt": "2019-09-24T19:43:40.888Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a62514cc-30bb-4afe-9e9b-9cedce73466c", + "creativeSets": [ + { + "creativeSetId": "cac52013-2c3c-41c2-864e-9eb87f8e024e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "52b3842c-51e1-4f37-b002-892602098ce8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Symptoms Asthma - Check Out The Best Options | sales365.net", + "title": "Sales365", + "targetUrl": "sales365.net/Asthma" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "FFlMXuImzk5", + "name": "Asthma Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b8a95bbd-9f52-47c5-ac7f-26d83718ed56", + "name": "general", + "startAt": "2017-09-24T19:43:41.498Z", + "endAt": "2019-09-24T19:43:41.498Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "fb395f6d-45a5-4784-afa7-7857e1e3caf7", + "creativeSets": [ + { + "creativeSetId": "42a05326-d90a-43b2-98d5-7193b6210323", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "431bd62e-618e-419a-b439-64bfb7e4533e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Customer Service Software - Do More with Salesforce®", + "title": "Salesforce", + "targetUrl": "www.salesforce.com/Customer/Service" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "P9Lfpxf-FV6", + "name": "Management Software" + } + ] + }, + { + "creativeSetId": "4dfc61ee-deee-4c31-89c0-b7af57c5bcf2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3e8f80ff-6861-461d-95a9-fa1d42bc4512", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Social Media Analytics - Salesforce® Social Studio", + "title": "Salesforce", + "targetUrl": "www.salesforce.com/Social-Media/Analytics" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "UBXGkQ3Bdgz4", + "name": "Social Media Analytics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a677458a-a49c-4c0a-b2ee-6548c5480bd1", + "name": "general", + "startAt": "2017-09-24T19:43:42.575Z", + "endAt": "2019-09-24T19:43:42.575Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "10a4e7ce-56ea-42e4-be77-8f2cbd712a5c", + "creativeSets": [ + { + "creativeSetId": "62bcc001-8c34-4c49-a3d1-eb746f6b9cbc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a075cede-ebbb-4908-a977-2dd729e03a4a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Salomon® Trail Gear - Free Fast Shipping & Returns", + "title": "Salomon", + "targetUrl": "www.salomon.com/Trail/Accessories" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "7kNV7uZ9Ium", + "name": "Skiing Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "69a120d6-8f04-40f7-a43e-a77e1b5f2e4f", + "name": "general", + "startAt": "2017-09-24T19:43:43.154Z", + "endAt": "2019-09-24T19:43:43.154Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b527b06b-936d-4cd6-9a9b-7f1afc9d4f9a", + "creativeSets": [ + { + "creativeSetId": "5bffc734-1c0e-4223-903e-8496bc22d69e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "db2bc345-17e8-4a71-a4db-d4d49e2d540b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Video at Sam's Club - Computer Monitors | samsclub.com", + "title": "Samsclub", + "targetUrl": "www.samsclub.com/Video" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "1Jz9ZYkAanF", + "name": "Buy Video Games" + } + ] + }, + { + "creativeSetId": "6b4fa6c3-3bc5-41d1-a925-1ea0e140fdfc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8b74ad89-7e5f-4949-af6e-fe082740a8ce", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Computer Games - Computer Games", + "title": "Samsclub", + "targetUrl": "www.samsclub.com/Computer-Games" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "o7Q1hjps7Vm", + "name": "Online PC Games" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0aae99c8-fbff-4894-b28a-3a4917a6ec83", + "name": "general", + "startAt": "2017-09-24T19:43:43.997Z", + "endAt": "2019-09-24T19:43:43.997Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9653667d-9c0e-40b8-87f0-b04b8b16a84f", + "creativeSets": [ + { + "creativeSetId": "0861524f-bc4e-4e3f-af39-198d6a0af359", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4d6b8a6f-24b0-46d5-b2cd-2bc1296e7cf4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Samsung QLED TV - Nothing to Distract", + "title": "Samsung", + "targetUrl": "www.samsung.com/QLED/TV" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "x3uhuK7aLGkU", + "name": "Buy Television" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8877e88e-15af-4ffe-9ffa-536eb1674f27", + "name": "general", + "startAt": "2017-09-24T19:43:44.585Z", + "endAt": "2019-09-24T19:43:44.585Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "254227a8-400e-48c4-b017-76d1f8373820", + "creativeSets": [ + { + "creativeSetId": "fb189239-98de-44a2-aaba-9271ad1cd91a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "82a750eb-dc10-420b-a068-4b1ba4126467", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "SAP® Run Simple - Digitize Your Business", + "title": "SAP", + "targetUrl": "https://discover.sap.com/live-business/en-us/boit.html?campaigncode=CRM-XH18-MDA-BRSEARC&source=ppc-us-lb-Itlb-BNG&utm_source=bing&utm_medium=ppc&utm_campaign=BrandAwareness_NonBrand&utm_term=computing_technology&gclid=CKH73I_Wj9kCFQmEfgodjJAPEA&gclsrc=ds#section_2" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "m7kbGOXg9oNE", + "name": "technology & computing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bff2a106-6236-483d-ada6-fe239fbe75b7", + "name": "general", + "startAt": "2017-09-24T19:43:45.137Z", + "endAt": "2019-09-24T19:43:45.138Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f7b7f98a-824c-4e32-be14-64d1a4190c09", + "creativeSets": [ + { + "creativeSetId": "90492bcd-f0d8-4d42-bb4e-57d9e69683bb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "694ac9c8-b6a8-4585-9d49-aa313dc0485c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "SAP Books by SAP PRESS - The Official SAP Publisher", + "title": "Sap-press", + "targetUrl": "www.sap-press.com/sap/books" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "UCCrJnLnO8s", + "name": "SAP Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "daa109b8-350a-482e-b548-3530618b26e0", + "name": "general", + "startAt": "2017-09-24T19:43:45.686Z", + "endAt": "2019-09-24T19:43:45.686Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cbcc82c3-4365-4e19-a9bf-f79ea798f0a3", + "creativeSets": [ + { + "creativeSetId": "d5e72342-a737-44c5-886a-578340b4b11b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b1de0755-f8e8-456e-b1e8-e2cb8c68b297", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "SAP Business One Software - Complete End-to-End Solution.", + "title": "Sapphiresystems", + "targetUrl": "www.sapphiresystems.com/ERP-SAP/Business-One" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "UCCrJnLnO8s", + "name": "SAP Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1f358f7b-a8ca-4d1b-9d01-a47a140326a0", + "name": "general", + "startAt": "2017-09-24T19:43:46.323Z", + "endAt": "2019-09-24T19:43:46.323Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "dfd2e1f6-7e6d-420b-b56c-511ac52678cb", + "creativeSets": [ + { + "creativeSetId": "68f40918-6d4c-4966-a466-8f9d5ddb38b7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "48721ce6-aeda-4aa5-97eb-e9ef27f0f82d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Soccer Gear | Up To 60% Off Big Selection‎", + "title": "Satorsoccer", + "targetUrl": "www.satorsoccer.com/soccer/equipment ‎" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wnYgEl7cckf", + "name": "Soccer Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0a282f30-2f16-44db-9c5a-246c38ae2ec4", + "name": "general", + "startAt": "2017-09-24T19:43:46.953Z", + "endAt": "2019-09-24T19:43:46.954Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f65068e8-6069-4da4-b1e4-b16f15c226e0", + "creativeSets": [ + { + "creativeSetId": "b58e328d-5dde-49d2-b977-e1b7ed178230", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0b60f525-5023-493c-b3db-55bc71acfa1b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dining out - Search Now and Save Up to 65%", + "title": "Saverdeals.net", + "targetUrl": "http://saverdeals.net/topic/21/Free+Restaurant+Coupons" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "r3isVmPAbYEM", + "name": "dining out" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9c0dafdd-5521-47c9-9a2a-c14334d95f47", + "name": "general", + "startAt": "2017-09-24T19:43:47.556Z", + "endAt": "2019-09-24T19:43:47.556Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e1774bd5-710c-45d2-99ec-fa8399019f03", + "creativeSets": [ + { + "creativeSetId": "e39a3b8d-5e86-4b98-8085-aa7cb9a7d53f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e2c3f6ca-3575-4597-9208-a8b56e32f401", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Online Bank Accounts - Read Useful Advice Here", + "title": "Saverprices", + "targetUrl": "saverprices.net/Bank/Accounts" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "7MiD5IH1W6t", + "name": "Bank Accounts" + } + ] + }, + { + "creativeSetId": "9b6f7c70-1f04-478f-8e99-09b179d9a87d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "711245ae-136a-4028-b7cb-60d5be53acc8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Software Automated Marketing - Find Top Recommendation Here", + "title": "Saverprices", + "targetUrl": "saverprices.net/Email-Software" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "mAWzKREQPg8", + "name": "Automation Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "dd08f17c-eebf-4653-a87b-d365df5cb05e", + "name": "general", + "startAt": "2017-09-24T19:43:48.762Z", + "endAt": "2019-09-24T19:43:48.762Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b36f800c-8e98-40f9-b894-c6eb7215d698", + "creativeSets": [ + { + "creativeSetId": "e06324b0-a9f5-45d2-9106-029e6a805ee5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bfe1575f-44c7-40ac-b270-e278f932afaa", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Low Price Buying A - Currently On Sale", + "title": "Savesmart", + "targetUrl": "savesmart.com/Buying A" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "1Jz9ZYkAanF", + "name": "Buy Video Games" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4864f9d2-5d54-480e-9f8a-dbb190328de9", + "name": "health", + "startAt": "2017-09-24T19:43:49.105Z", + "endAt": "2019-09-24T19:43:49.106Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b36f800c-8e98-40f9-b894-c6eb7215d698", + "creativeSets": [ + { + "creativeSetId": "b3be9aea-7ab0-43ea-8860-20aa54882873", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ad0ce2d3-5d45-4e37-b066-f6100523061f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Low Price Workout Books - Currently On Sale | savesmart.com", + "title": "Savesmart", + "targetUrl": "savesmart.com/Workout Books" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "Gn19-1NmjlI", + "name": "Exercise Books" + } + ] + }, + { + "creativeSetId": "f7a9d50a-9227-4881-b30c-09afb95432f4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d69c07b8-3752-4c0a-943d-2ee1bc581d0d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rowing Jackets On Sale - Hurry Prices Won't Last", + "title": "Savesmart", + "targetUrl": "savesmart.com/Rowing Jackets" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "YGCofQVxBiL", + "name": "Rowing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "541b0910-bd57-4286-bbe3-97c3b7a9f8d5", + "name": "hobbies", + "startAt": "2017-09-24T19:43:49.670Z", + "endAt": "2019-09-24T19:43:49.670Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b36f800c-8e98-40f9-b894-c6eb7215d698", + "creativeSets": [ + { + "creativeSetId": "f0335d7f-6811-4859-9a25-d3fb895c6583", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "03275b1d-7bd5-47e3-b6d1-190a81c302af", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bird Watching Gear - On Sale, Hurry.", + "title": "Savesmart", + "targetUrl": "savesmart.com/Bird Watching Gear" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "tVTtOXMuslE", + "name": "Birdwatching Equipment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "33ef5ee9-6c0a-4366-878a-955ede6014b2", + "name": "pets", + "startAt": "2017-09-24T19:43:50.036Z", + "endAt": "2019-09-24T19:43:50.037Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b36f800c-8e98-40f9-b894-c6eb7215d698", + "creativeSets": [ + { + "creativeSetId": "303201c1-798b-445e-8953-bd0c9ff0fd71", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ee28bc2a-8e64-4819-a4bf-af61c3f9fd22", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Birds Store - On Sale, Hurry.", + "title": "Savesmart", + "targetUrl": "savesmart.com/Birds Store" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "S2jGIYx0-6x", + "name": "Bird Store" + } + ] + }, + { + "creativeSetId": "195ad770-4a0f-4ce6-bcce-8dcb19f54324", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "239f37a4-a0a6-4c6f-96c8-26c09584377e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Low Price Reptile Waterfall - Currently On Sale | savesmart.com", + "title": "Savesmart", + "targetUrl": "savesmart.com/Reptile Waterfall" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "rH6iVpeEME2", + "name": "Reptile Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2467b147-ba71-4f5e-8a72-7983d16c12c0", + "name": "general", + "startAt": "2017-09-24T19:43:50.860Z", + "endAt": "2019-09-24T19:43:50.861Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "376b208e-3887-42a8-afe6-d585dabf0b8d", + "creativeSets": [ + { + "creativeSetId": "c538ac95-160d-4909-94ac-c2700cc50704", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d7e0bc5a-5f9d-4a6d-9e9f-f6cc54f82e2d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Have Passion for Architecture? - Architecture Degree", + "title": "ScadEdu", + "targetUrl": "admission.scad.edu" + } + } + ], + "segments": [ + { + "code": "avw0QD-PbLk", + "name": "Architecture" + }, + { + "code": "dOQmj5NS4GvY", + "name": "Architecture Degree" + } + ] + }, + { + "creativeSetId": "6f9a014c-edb9-4c81-a000-8fdddfe1e3e1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "60c12665-35ec-4b65-a182-cab38101634e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Have Passion for Animation? - Request More Info", + "title": "ScadEdu", + "targetUrl": "admission.scad.edu" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "K1d6Q52s4WP", + "name": "Animation Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7732c786-c331-4b19-8777-8e65822fa1f1", + "name": "general", + "startAt": "2017-09-24T19:43:51.930Z", + "endAt": "2019-09-24T19:43:51.931Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6bed1a95-4901-4cd3-a42b-4795c762a3a3", + "creativeSets": [ + { + "creativeSetId": "1c14a411-04bd-4036-91c4-33fb0b3e4355", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1278ce54-7cba-46a1-99ef-a50e5514604b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Virology News -- ScienceDaily", + "title": "Science Daily", + "targetUrl": "https://www.sciencedaily.com/news/plants_animals/viruses/" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "l_TJuRrXg0cD", + "name": "virology" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "66354fdb-6e42-49bb-95bd-72ce40218c5c", + "name": "general", + "startAt": "2017-09-24T19:43:52.557Z", + "endAt": "2019-09-24T19:43:52.557Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7ffe8131-0923-4e34-85b7-e0a3605349e6", + "creativeSets": [ + { + "creativeSetId": "f4bee2c8-6296-444b-8b64-2d0f51c9b003", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b62f690b-8d82-42b7-a8a6-237c041f67ed", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Learn Interior Decorating - Learn at Home at Your Own Pace", + "title": "Scitraining", + "targetUrl": "www.scitraining.com" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "iOSOYZ7Fm9M", + "name": "Home Decorating" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d4d4fe79-2435-4982-8c40-062b2518a531", + "name": "general", + "startAt": "2017-09-24T19:43:53.231Z", + "endAt": "2019-09-24T19:43:53.232Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a79c0769-cbec-4450-ae48-c82021e54345", + "creativeSets": [ + { + "creativeSetId": "59f6b5ac-bdcf-4b3b-b2c3-7d20cc7e6d85", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8dc4b08a-9585-42c5-9d8e-a56128d9dd75", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Need Unix Help?", + "title": "ScoHelp", + "targetUrl": "scohelp.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "4kQEvYQsSy1L", + "name": "Unix Help" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7d95b09a-19a8-4cba-a7eb-056dfae0eb5c", + "name": "general", + "startAt": "2017-09-24T19:43:54.680Z", + "endAt": "2019-09-24T19:43:54.681Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "89cf49c5-1da3-4a75-8ba6-6322988dd05e", + "creativeSets": [ + { + "creativeSetId": "5b2ebcd3-fa89-4747-a305-a8187042319d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d84bc473-b196-47bb-855d-c46c61ae9770", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Need Unix Help? - All flavors of UNIX serviced", + "title": "SCOhelp.com", + "targetUrl": "http://scohelp.com/" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "q5qPgp5KncWi", + "name": "unix" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "10a81b14-ba35-403d-9ec3-b543f92da69a", + "name": "general", + "startAt": "2017-09-24T19:43:55.299Z", + "endAt": "2019-09-24T19:43:55.299Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "19cdeda6-80c2-464c-bbaa-037cf22acc96", + "creativeSets": [ + { + "creativeSetId": "619d715f-7013-42d0-b2c2-18479493d105", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9f0ebddc-8400-4488-bbcb-a460e6a47d32", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Scuba.com - Official Site - Lowest Prices And Free Shipping", + "title": "Scuba", + "targetUrl": "www.Scuba.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "fH7PFGfR2R8", + "name": "Diving Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "743a9ac4-df5e-4ead-90d8-40b104b51ee7", + "name": "general", + "startAt": "2017-09-24T19:43:56.068Z", + "endAt": "2019-09-24T19:43:56.069Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "92ac7639-6f05-43ce-b565-fea31b41a48f", + "creativeSets": [ + { + "creativeSetId": "c644505b-c9b8-4de2-980f-68bc8f931deb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2c2fc45e-2d27-48f3-8b6a-35d8258dcb57", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Mathematics Worksheets - Find Mathematics Worksheets", + "title": "Search", + "targetUrl": "search.infospace.com/Mathematics Worksheets/results" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "o7RiTeSPDIyu", + "name": "Mathematics worksheets" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "df815f92-26b6-4670-ab5d-2ddd6200643d", + "name": "general", + "startAt": "2017-09-24T19:43:56.675Z", + "endAt": "2019-09-24T19:43:56.676Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bf185590-49f8-48dd-8f90-9c6528f797f7", + "creativeSets": [ + { + "creativeSetId": "8a0a5432-43b5-4338-a9a1-73a4317f19a0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "31d6d424-7d85-4cc2-a88d-967936e3f30a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rare Stamps - Rare Stamps", + "title": "Search.infospace", + "targetUrl": "search.infospace.com/Rare Stamps/results" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "12wGC9Ye4QL", + "name": "Rare Stamps" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "06ce848b-dbf4-4358-b475-e517ddc2386f", + "name": "general", + "startAt": "2017-09-24T19:43:57.235Z", + "endAt": "2019-09-24T19:43:57.238Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c806839c-0c89-42d5-8a29-906a87e259c0", + "creativeSets": [ + { + "creativeSetId": "99d02065-3d48-4ed1-affe-52dd351c0990", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4f7b8296-c926-460d-bf88-af2e38d7f6d6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sears® Spring | Official Site. Shop Top Brands‎", + "title": "Sears", + "targetUrl": "www.sears.com/Sears/OfficialSite ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "obV7ryiIRW4", + "name": "beauty" + } + ] + }, + { + "creativeSetId": "43fa76f8-112c-418e-88d1-dadee1a3ef9a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "77b86295-cab0-4dbe-bed8-4f1f6826fc11", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sears® Fourth of July Sale - Up to 40% Off Wall Ovens", + "title": "Sears", + "targetUrl": "www.sears.com/Sears/WallOvens" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "mkmN9m3WHmgP", + "name": "Home Appliances" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "33828b8d-0031-42f6-ac8b-5f2818175958", + "name": "home", + "startAt": "2017-09-24T19:43:57.975Z", + "endAt": "2019-09-24T19:43:57.976Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c806839c-0c89-42d5-8a29-906a87e259c0", + "creativeSets": [ + { + "creativeSetId": "2b6a4044-294c-4397-b873-568a114e23fd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "292694fe-966d-4f4a-90b7-ba08c2b4aaef", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Kenmore Elite Grills at Sears® - Shop Now, Free Store Pick Up", + "title": "Sears", + "targetUrl": "www.sears.com/WideSelection/QualityGrills" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "w2RZcyzoMxq", + "name": "Barbecues" + } + ] + }, + { + "creativeSetId": "dfcdf04c-3008-461f-aed1-be67f451599b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f36d1c71-e2d2-42ef-b0ce-bd96ab5929fa", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Lawn & Garden at Sears® - Official Site, Shop Now & Save", + "title": "Sears", + "targetUrl": "www.sears.com/WideSelection/Lawn&Garden" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "u3b4RF02Ctr", + "name": "Artificial Lawns" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6bc840f0-0567-4a51-a211-1284c613643d", + "name": "general", + "startAt": "2017-09-24T19:43:58.881Z", + "endAt": "2019-09-24T19:43:58.881Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "32f9095b-9850-4de5-ae0c-73b194b44894", + "creativeSets": [ + { + "creativeSetId": "e3cd0364-8945-4548-a507-fda5cb7cc97f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0cfe6acb-40f8-48c6-b0ba-0352229466fc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Boxing tickets - On Sale - Buy Your Tickets Now | seatgeek.com", + "title": "Seatgeek", + "targetUrl": "seatgeek.com/Boxing/Tickets" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "mqSw-gRLA7p", + "name": "Boxing Tickets" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bd02d13b-959e-47d8-bcdb-c18cea13318c", + "name": "general", + "startAt": "2017-09-24T19:43:59.588Z", + "endAt": "2019-09-24T19:43:59.588Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "33124d76-8765-4233-9cd5-6aadb2d6f379", + "creativeSets": [ + { + "creativeSetId": "74df6682-ce5a-46c9-9bb8-516e40040425", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "09ff3685-4ad1-46cf-93ba-136e508a967c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "#1 Trick to Lose Belly Fat - Lose Up To 23 Lbs in 3 Weeks", + "title": "Secretpersonified", + "targetUrl": "secretpersonified.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "446c0637-fbcb-4413-aef3-084489295b5f", + "name": "general", + "startAt": "2017-09-24T19:44:00.214Z", + "endAt": "2019-09-24T19:44:00.214Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "21880053-27da-4a1f-b665-3d7814f46be6", + "creativeSets": [ + { + "creativeSetId": "510055be-2f90-432b-90b2-c64e2b1236af", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "67bbe83b-e6b9-4eb5-9ed0-035f6b44565f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "HARP® Home Loan Refinancing - Check Your HARP® Eligibility", + "title": "Secure.theharprefisurvey", + "targetUrl": "secure.theharprefisurvey.com/survey" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "ME0864i1Nfkc", + "name": "Refinance Home" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "843d6194-03bb-46d1-a369-a8af90cc8c1b", + "name": "general", + "startAt": "2017-09-24T19:44:00.787Z", + "endAt": "2019-09-24T19:44:00.787Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "92692972-e836-4a49-b089-0a4eb5ae52bb", + "creativeSets": [ + { + "creativeSetId": "39d8bac0-1970-43c1-aa2a-b795bd986716", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7556b0eb-b3aa-4400-81fc-e692bf7e8d55", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Uncontrolled Seizures? - Learn About VNS Therapy", + "title": "Seizur", + "targetUrl": "www.seizurecontrol.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "UzZDN_wdJQzE", + "name": "Epilepsy Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "48d7c095-9ffc-4d50-b0d7-a8a0ac515d7f", + "name": "general", + "startAt": "2017-09-24T19:44:01.447Z", + "endAt": "2019-09-24T19:44:01.447Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "494fd971-ee3d-4bb4-a34c-bb3c3a0bece2", + "creativeSets": [ + { + "creativeSetId": "6d0c25aa-8e4e-4db8-8786-932bbba46e42", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9ae47e2c-73cc-4967-bc8f-3d890ef291fd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cheap Phone Plans For Seniors - Get Best Offers & Discounts", + "title": "Selectdeals", + "targetUrl": "selectdeals.net/Senior+Phones" + } + } + ], + "segments": [ + { + "code": "05KGovyhnUj", + "name": "cell phones" + }, + { + "code": "PDcNk9LToal", + "name": "cell phones" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "69cc4826-a700-46da-85ac-62f37caffb80", + "name": "general", + "startAt": "2017-09-24T19:44:02.053Z", + "endAt": "2019-09-24T19:44:02.054Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5867e460-be7e-4a9e-9cca-ea503b85c20c", + "creativeSets": [ + { + "creativeSetId": "6416922f-6891-46f5-8070-83f683f02771", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3b0fdf31-6983-4539-ae67-260532dbfc1a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home & Decor - Get Top Offers & Discounts", + "title": "Selectdeals.net", + "targetUrl": "selectdeals.net/Home+Decor" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "iOSOYZ7Fm9M", + "name": "Home Decorating" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5072afb1-d6a1-4296-b6c0-348af8311b3b", + "name": "general", + "startAt": "2017-09-24T19:44:02.736Z", + "endAt": "2019-09-24T19:44:02.736Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3c7a77cf-2d05-4158-9a40-04a05097de9a", + "creativeSets": [ + { + "creativeSetId": "49d9948d-0b04-4493-aa5e-6253af85ea39", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "eb176c56-f2a6-48b5-babe-6b561bfea41d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Senior Singles Site - Find Single Senior Near You", + "title": "Seniorpeople", + "targetUrl": "www.seniorpeople.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "gZf_z0XI7OC9", + "name": "Local Guides" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "23ce510d-ed00-485f-9c5b-df273414a82a", + "name": "general", + "startAt": "2017-09-24T19:44:03.302Z", + "endAt": "2019-09-24T19:44:03.303Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e42ecdf6-5ea3-473a-8166-e4a97bae4c19", + "creativeSets": [ + { + "creativeSetId": "bd483f28-7cb3-4343-bbd7-c2a13cf8905a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "56c199de-d23b-4ad4-b05f-32a0647f8555", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dating - Find Single Seniors Just Like You", + "title": "SeniorPeopleMeet", + "targetUrl": "www.SeniorPeopleMeet.com/Dating" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "MHIWE-lPdQmA", + "name": "Dating" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0c43b317-9cca-4e6a-8391-7af92fefce81", + "name": "general", + "startAt": "2017-09-24T19:44:03.885Z", + "endAt": "2019-09-24T19:44:03.885Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "db4f1126-8a8f-459e-a13e-89ee5c107214", + "creativeSets": [ + { + "creativeSetId": "76645bb1-59a5-4527-8138-fd9a51795380", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "61b72d35-26fb-436d-87ae-e51de4fe3983", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Your Toyota® Minivan Dealer - Specials Made Just For You", + "title": "Setbuyatoyota", + "targetUrl": "explore.setbuyatoyota.com/Minivans/Specials" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "tGlEpkd2UFQ", + "name": "New Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4851b8df-d360-4b4a-95f1-9880b259268d", + "name": "general", + "startAt": "2017-09-24T19:44:04.458Z", + "endAt": "2019-09-24T19:44:04.458Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ffcebaca-88bb-4aa7-be1b-bfad89793c19", + "creativeSets": [ + { + "creativeSetId": "6a18c6f7-42d9-42e1-a7c0-63da30d20232", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ea2f8928-23d3-4876-846b-90284eef9d6a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Get Through Cold & Flu Season - Seventh Generation®", + "title": "Seventhgeneration", + "targetUrl": "www.seventhgeneration.com/Cold Flu/Disinfectant" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "w3QYv0DISr3a", + "name": "Flu Prevention" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e839f9e1-0328-4de5-a1b3-4900b131d987", + "name": "general", + "startAt": "2017-09-24T19:44:05.066Z", + "endAt": "2019-09-24T19:44:05.066Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1693c3f0-1331-44c4-b997-3b5a22f054b9", + "creativeSets": [ + { + "creativeSetId": "dbf13d30-c573-4a72-a3d4-ec6785984986", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a80e2337-b64e-46e2-9633-a9e18088d373", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Help Improve Your Breathing - Severe Asthma Patients", + "title": "Severeasthma-treatment", + "targetUrl": "www.severeasthma-treatment.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "FFlMXuImzk5", + "name": "Asthma Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9427d21b-dc4f-4535-8deb-66997d88a379", + "name": "general", + "startAt": "2017-09-24T19:44:05.635Z", + "endAt": "2019-09-24T19:44:05.635Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3eebfbea-2219-450b-bf5a-5f7e467d10b2", + "creativeSets": [ + { + "creativeSetId": "2c61a36f-0009-40ed-a885-f78f2251c2b0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3eae4e4e-c1aa-4f00-8c6c-fc92cf2d5e3f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Women Spring Summer Clothing - Exclusive Style & Cheap Price | us.shein.com", + "title": "Shein", + "targetUrl": "http://us.shein.com/" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "obV7ryiIRW4", + "name": "beauty" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f7500649-eee1-458e-9cde-1a6e8256b6f4", + "name": "general", + "startAt": "2017-09-24T19:44:06.606Z", + "endAt": "2019-09-24T19:44:06.606Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8cd40236-3d45-4f41-84dc-a7a4354a43cb", + "creativeSets": [ + { + "creativeSetId": "f5fbde28-c557-4c4a-a733-2eb01048d07a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2ec52997-991c-4d78-a01c-463ce3676cf1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "eBay Shipping Tool - ShipStation® - Official Site", + "title": "ShipStation", + "targetUrl": "www.ShipStation.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "L6d8TFZSNbmS", + "name": "Online Shipping" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0eea1b58-1766-42f0-adfa-e28ba6482894", + "name": "general", + "startAt": "2017-09-24T19:44:07.167Z", + "endAt": "2019-09-24T19:44:07.168Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0177d57d-99b3-46a0-8303-aa44ea3888af", + "creativeSets": [ + { + "creativeSetId": "92cc91c5-2809-4655-85ca-e327b163a503", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b08865f7-1bc0-41e0-8eeb-03af980ad14b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Long Sleeve Athletic Apparel", + "title": "Shirtspace", + "targetUrl": "shirtspace.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wRnrM16xXmY", + "name": "Athletic Clothing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cd993f94-b0c3-4f36-b447-3a7596beac9b", + "name": "general", + "startAt": "2017-09-24T19:44:07.968Z", + "endAt": "2019-09-24T19:44:07.968Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5692eb7d-dbe1-409f-9a27-5cb57b5b6495", + "creativeSets": [ + { + "creativeSetId": "caa929c1-e487-4003-b0fc-29c3596e990b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "32d0ee8c-5d7e-4601-9f56-30d92726d597", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Save 25% Off Now - Enter FIRST25OFF At Checkout. - shop.com", + "title": "Shop", + "targetUrl": "www.shop.com/first25/discount" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "VulAzM57Pkqw", + "name": "Online Deals" + } + ] + }, + { + "creativeSetId": "ae763dbc-7c4d-4095-a8cf-c2f74848a4ba", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e0cf62b6-d8c5-4257-b9a8-501cae4882b5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "ShipFree at SHOP.COM - Free Shipping-Orders Over $99.", + "title": "Shop", + "targetUrl": "www.shop.com/isotonix/nutrition" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "5Ry6TcY_ODM", + "name": "Buy Vitamins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5ee06d58-10cb-4bfc-85fe-1d542e4352e9", + "name": "general", + "startAt": "2017-09-24T19:44:08.810Z", + "endAt": "2019-09-24T19:44:08.811Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ceb7b4fb-1658-433a-a110-1087779e5ff6", + "creativeSets": [ + { + "creativeSetId": "d2656a31-b714-409c-8946-f45f405fff0f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dbdbed76-8172-48a7-9d4d-bf53d08e5c7a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 10 Results On - Social media analytics", + "title": "Shop.mrlocal", + "targetUrl": "shop.mrlocal.com/BusinessTools" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "UBXGkQ3Bdgz4", + "name": "Social Media Analytics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cd0137c2-366c-4031-ab05-f677bc9a9a01", + "name": "general", + "startAt": "2017-09-24T19:44:09.388Z", + "endAt": "2019-09-24T19:44:09.388Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ee0f5f61-6e50-46f4-a338-0df2c814b261", + "creativeSets": [ + { + "creativeSetId": "7d48be03-61f6-4539-b63f-b299a009470b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "40f2e32c-f0d0-496c-b54f-6c43ad50794c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Quick & Easy Ecommerce Setup - Get 14-Day Shopify Free Trial | shopify.com", + "title": "Shopify", + "targetUrl": "https://www.shopify.com/free-trial/ecommerce/short?jk=ecommerce&utm_source=yabing&utm_medium=cpc&utm_campaign=Core%20-%20Ecommerce_Exact&bingadgroupid=1229254061731428&bingadid=76828407574311&bingkeywordid=76828434313620&bingnetwork=s&BOID=none&msclkid=d707e2db421e1c715f8fb8a3a81b7dcb" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "Y2SAlQ4QayXI", + "name": "ecommerce" + } + ] + }, + { + "creativeSetId": "d1b17642-61a2-4477-9835-026e9f179d66", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "aefd6624-547b-4a25-80a0-18e1645b9528", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best B2B eCommerce - Get a Free Consultation Today", + "title": "Shopify", + "targetUrl": "www.shopify.com/Plus/eCommerce" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "zgMSYI-gfMo", + "name": "eCommerce Websites" + } + ] + }, + { + "creativeSetId": "c554787d-2419-475c-9705-3244f75b1a02", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "89a4ff9f-dcad-494e-8d9b-a95cc83e1ea9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Save Cost on SAP® Hybris - Get a Free Consultation Today", + "title": "Shopify", + "targetUrl": "www.shopify.com/plus/SAP-Hybris" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "UCCrJnLnO8s", + "name": "SAP Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b343b917-4842-4eeb-b47c-e140e4a7a736", + "name": "general", + "startAt": "2017-09-24T19:44:10.753Z", + "endAt": "2019-09-24T19:44:10.753Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cef13dfc-72dc-4329-b158-38cc9b430088", + "creativeSets": [ + { + "creativeSetId": "a94ee9b5-1b24-4919-9b87-b543c6d1aa5d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "45a9a0e4-a3af-4c6b-b6bc-6ee00256bdd1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "As Seen On TV | Magic Ear® - Only $19.99 Plus Free Shipping", + "title": "Shopmagicear", + "targetUrl": "www.shopmagicear.com/magic_ear/hearing_aid" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "LRNthVMNdVU", + "name": "Hearing Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "be8e2958-be13-419a-974a-3b07041af68b", + "name": "general", + "startAt": "2017-09-24T19:44:11.337Z", + "endAt": "2019-09-24T19:44:11.338Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7f20006b-42eb-4689-9b92-49379f1b4e55", + "creativeSets": [ + { + "creativeSetId": "20283d0f-099a-4223-879e-eadd4c0601a5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a45c889b-c0ef-44bb-84b7-ff6c81cf91af", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Used Cars - Used Cars - Seasonal Sale - Used Cars", + "title": "Shoppermart", + "targetUrl": "shoppermart.net/Used Cars" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "b4xuJT0IZ_f", + "name": "Used Cars" + } + ] + }, + { + "creativeSetId": "f0a992d1-b3c0-40e6-bd8f-dda73cc27786", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b3194e3e-8bd4-4d0f-9471-4946a0f42e24", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rowing Machine - Rowing Machine - Compare and Save Now", + "title": "Shoppermart", + "targetUrl": "shoppermart.net/Rowing Machine" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "YGCofQVxBiL", + "name": "Rowing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ca05f7bd-9a13-41a9-9ab3-c8e373ede1ad", + "name": "auto", + "startAt": "2017-09-24T19:44:12.176Z", + "endAt": "2019-09-24T19:44:12.176Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9c5d0163-7e1e-4e03-a118-d884eac6bc94", + "creativeSets": [ + { + "creativeSetId": "90557f75-cfbb-4c39-82b3-033cc6e49df6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b61f9f3e-38d8-47a5-b5e9-96d16b7f3d3c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "New Cars For - New Cars For - Find Our Lowest Price", + "title": "Shopping", + "targetUrl": "www.shopping.net/New Cars For" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "tGlEpkd2UFQ", + "name": "New Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6932c292-d54c-4837-9352-59127dcbe0bc", + "name": "general", + "startAt": "2017-09-24T19:44:12.529Z", + "endAt": "2019-09-24T19:44:12.529Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9c5d0163-7e1e-4e03-a118-d884eac6bc94", + "creativeSets": [ + { + "creativeSetId": "e1543081-78a1-4219-8eb6-ab475dd5a03b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c07bfd64-5a2a-420f-8d19-4ed406e997f8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Forestry Supplies", + "title": "Shopping", + "targetUrl": "Shopping.net/Forestry Supplies" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "A7P6uoAIgzo", + "name": "Forestry Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ddec0a7f-c1f9-44f5-bdaf-be7c13b967cf", + "name": "home", + "startAt": "2017-09-24T19:44:12.876Z", + "endAt": "2019-09-24T19:44:12.876Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9c5d0163-7e1e-4e03-a118-d884eac6bc94", + "creativeSets": [ + { + "creativeSetId": "ff9ca97f-6adc-4f30-bb4e-d2b32a84b30d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cbf2664d-0949-4147-b286-1afa8be3ab90", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Collectible Home Decor - Collectible Home Decor | shopping.net", + "title": "Shopping", + "targetUrl": "www.shopping.net/Collectible Home Decor" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "T4rhcMPPBhp", + "name": "Home Décor" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0ce1be89-c4f7-4af0-94d3-aac322f0229f", + "name": "food", + "startAt": "2017-09-24T19:44:13.209Z", + "endAt": "2019-09-24T19:44:13.209Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9c5d0163-7e1e-4e03-a118-d884eac6bc94", + "creativeSets": [ + { + "creativeSetId": "cf23ed5a-c6a4-47cd-adeb-88cbbc36aa12", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1a29b739-01e3-4ca7-8502-a9d65af4a352", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Juice Drinks | Shopping.net", + "title": "Shopping", + "targetUrl": "Shopping.net/Juice Drinks" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "lFMT5ZDQdjc", + "name": "Juice Drinks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2b2cd2b2-871b-4ba7-b94c-87cd651b5e91", + "name": "hobbies", + "startAt": "2017-09-24T19:44:13.689Z", + "endAt": "2019-09-24T19:44:13.689Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9c5d0163-7e1e-4e03-a118-d884eac6bc94", + "creativeSets": [ + { + "creativeSetId": "30a52fc4-781c-4028-943c-f42d456191f2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d1a243d5-af64-46b3-8e47-c6edab90237e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Training In Martial Arts - Training In Martial Arts", + "title": "Shopping", + "targetUrl": "www.shopping.net/Training In Martial Arts" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "M2Rtnq7snDL", + "name": "Martial Arts Training" + } + ] + }, + { + "creativeSetId": "e1519185-4046-42ce-831c-1e78839672e0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f9cc71af-a102-49ef-8bb1-968773350af0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pc Gaming Online - Pc Gaming Online", + "title": "Shopping", + "targetUrl": "https://www.bestbuy.com/site/video-games/pc-games/abcat0712000.c?id=abcat0712000" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "o7Q1hjps7Vm", + "name": "Online PC Games" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6bcae26a-e7ce-4a4b-8ce9-366380ad7881", + "name": "home", + "startAt": "2017-09-24T19:44:14.522Z", + "endAt": "2019-09-24T19:44:14.522Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0c04a704-b77c-4206-9275-b04faff41061", + "creativeSets": [ + { + "creativeSetId": "2fefda64-a86c-4545-9875-abb8809caad5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "755babc6-3711-473c-8fc3-5caa127a4544", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Artificial Lawn - Artificial Lawn", + "title": "Shopping.net", + "targetUrl": "www.shopping.net/Artificial Lawn" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "u3b4RF02Ctr", + "name": "Artificial Lawns" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8400f5a1-6963-4e05-a888-3a761294637e", + "name": "home", + "startAt": "2017-09-24T19:44:15.109Z", + "endAt": "2019-09-24T19:44:15.109Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a648834d-5968-4a25-9c03-37d7d3141d56", + "creativeSets": [ + { + "creativeSetId": "7605f70c-01e7-4eff-bc0a-f1ebb1db62aa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0d817211-99e5-4e90-9fa1-5bbb417c418d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Insulated Coffee Cups - Latest Special Offers", + "title": "Shopsteal.us", + "targetUrl": "http://shopsteal.us/products/Insulated%20Coffee%20Cups/" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "FBbep3ncND3h", + "name": "coffee" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8514f5ac-c857-44f7-89d8-2a9305ce24e9", + "name": "general", + "startAt": "2017-09-24T19:44:15.828Z", + "endAt": "2019-09-24T19:44:15.829Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "051b3584-a2fc-4663-a281-3e93aec66ae2", + "creativeSets": [ + { + "creativeSetId": "1b755e34-2838-4c1f-a54d-c1f7f9f8d609", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "91c5e31e-b876-421f-8450-03ef454f2283", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top Skagway Shore Excursions - Explore Alaska's Finest", + "title": "Shoreexcursionsgroup", + "targetUrl": "www.shoreexcursionsgroup.com/Alaska/Skagway" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "lvYt-vwY0ml", + "name": "Travel Tours" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "33339b16-129a-439c-a07d-67d3fb8f8a0c", + "name": "general", + "startAt": "2017-09-24T19:44:16.427Z", + "endAt": "2019-09-24T19:44:16.428Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "217373f4-91f9-4e19-b550-d0c3d01796f6", + "creativeSets": [ + { + "creativeSetId": "001c4d2c-8b62-4a53-ad86-e9af027777fd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "abdb5c9c-0cc3-4a98-b5c1-9e4f02608997", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Feeling Alone? You're Not - Millions Are Seeking Treatment", + "title": "Sierratucson", + "targetUrl": "www.sierratucson.com/Pain/Treatment" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "RhUDc8iP5Xa", + "name": "Chronic Pain Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cb85f43d-6415-4119-8a13-501ebb43b212", + "name": "general", + "startAt": "2017-09-24T19:44:16.998Z", + "endAt": "2019-09-24T19:44:16.998Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "00c72e6f-9436-4ddb-ba3a-106b392ea08b", + "creativeSets": [ + { + "creativeSetId": "6fc4c453-c131-4883-927d-541e57cfad44", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d78c3113-747a-44c7-846d-1a08cdd38fe6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Gamborg's Vitamin Solution - now available at Sigma-Aldrich", + "title": "Sigmaaldrich", + "targetUrl": "www.sigmaaldrich.com/Sigma/Life-Science" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "5Ry6TcY_ODM", + "name": "Buy Vitamins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c83a2794-db8d-4e76-a5d4-ddfc7d6d9327", + "name": "general", + "startAt": "2017-09-24T19:44:18.283Z", + "endAt": "2019-09-24T19:44:18.283Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e8d6cf74-0766-41b6-a30c-c21a57272833", + "creativeSets": [ + { + "creativeSetId": "9ba4c989-049e-45a4-b37f-fffd2ac4bcec", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8c88c00d-a87d-404a-a1eb-098419e7a67b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Clothing for Handicapped - Men's & Women's", + "title": "Silverts", + "targetUrl": "www.silverts.com/clothing/handicapped" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "cKE--V39Tbj", + "name": "clothing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6c08a118-be6f-43d9-a87b-c8fd3d961b91", + "name": "general", + "startAt": "2017-09-24T19:44:18.843Z", + "endAt": "2019-09-24T19:44:18.844Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "49993030-274b-4e70-b745-3fc9ec416eb3", + "creativeSets": [ + { + "creativeSetId": "5694c423-08b0-4cca-a9a8-14be611fe4e6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "83a6a970-1724-4996-9df1-b54f87828860", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Your Dog From Fleas - Fast and Lasting Chewable", + "title": "Simparica", + "targetUrl": "www.simparica.com" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "x3JqE5H5N3r", + "name": "Pet Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bf259f09-2bf4-4ade-b004-289b880efdf2", + "name": "general", + "startAt": "2017-09-24T19:44:19.418Z", + "endAt": "2019-09-24T19:44:19.419Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3869014b-cfd8-440d-8b1c-59fcadfd6b4b", + "creativeSets": [ + { + "creativeSetId": "8c5d3093-c68a-4c76-8ad7-0c605ed49e4f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "480d7542-dde5-4749-bf7a-dc5c80103704", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The \"Real Truth\" About Wicca - 4 Unusual Things You Must Know", + "title": "Simplemysticmiracles", + "targetUrl": "www.simplemysticmiracles.com/wicca/magick-test" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "NdbDcJk-9xoO", + "name": "Wicca" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "406740e6-c772-4ddd-8a5e-553ed219fcbc", + "name": "general", + "startAt": "2017-09-24T19:44:20.016Z", + "endAt": "2019-09-24T19:44:20.017Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3ab42eb4-9f65-4656-b3e5-2cdf9b2d4c96", + "creativeSets": [ + { + "creativeSetId": "28e6cf3c-556a-411a-abed-f24209a6a70c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d8c0b54a-bd1f-402f-888c-88561723e6dc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Learn Stocks - Search Learn Stocks.", + "title": "Simpli", + "targetUrl": "www.simpli.com/Learn Stocks" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "_PEMAp6RE_k9", + "name": "Learn Stocks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bd13c5bf-811c-448e-a036-48e54152a6cc", + "name": "general", + "startAt": "2017-09-24T19:44:20.582Z", + "endAt": "2019-09-24T19:44:20.582Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2e3b18a5-5427-4824-8915-70183023b667", + "creativeSets": [ + { + "creativeSetId": "6c474494-c6d5-4b5b-827e-4ec4ff7c7f2a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6d368f0e-3de6-4f73-a5c6-342220875b59", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Natural Treatments For Stress - Natural Ways to Lower Stress", + "title": "Simplyhealth", + "targetUrl": "simplyhealth.today" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "3p24XjIze4TV", + "name": "Stress Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c4d43f0d-6d1d-4bd6-924c-3e5cc7db2b84", + "name": "general", + "startAt": "2017-09-24T19:44:21.169Z", + "endAt": "2019-09-24T19:44:21.169Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3a578d36-7236-4375-a588-c89c00f09020", + "creativeSets": [ + { + "creativeSetId": "d8b65d5c-158e-4af5-bd7d-068c9d37f513", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "69972fcc-533f-480a-8ced-3fc72e501afa", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "16 Signs of a Thyroid Problem - Don't Dismiss #6 | simplyhealth.today", + "title": "Simplyhealth.today", + "targetUrl": "http://simplyhealth.today/16-signs-thyroid-problem/?utm_source=%2Bthyroid&utm_medium=thyroidproblemsigns&utm_campaign=bing_us&msclkid=be157ebdff9e1625069524c5013f52f6" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "zgwR7NmmGYsI", + "name": "thyroid" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d0fdb139-a4d6-4e43-8574-6354872f84fa", + "name": "general", + "startAt": "2017-09-24T19:44:22.019Z", + "endAt": "2019-09-24T19:44:22.019Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f9f57d8e-9d83-4ba0-9fd6-0edf1573420e", + "creativeSets": [ + { + "creativeSetId": "28866867-bdea-4ca5-b61f-04f29d56e10f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "24c4c8dc-d2b4-4df4-87ae-c498f58ce401", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "SiriusXM® Official Site - Learn More", + "title": "SiriusXM", + "targetUrl": "http://www.siriusxm.com/getstartednow?utm_campaign=SXM_NA_BAU&utm_source=NA_NA_YahooGemini&utm_medium=Search-Paid&utm_term=www.xmradio&s_kwcid=AL!5188!105!31675398907!s!295433492267&ef_id=WmZBUAAAAF4YWyKh:20180206000140:s&programCode=6FOR30SELECT&OLPT=OLPTPCOFFER3" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "YUCycBfUkScD", + "name": "radio" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ed2018bd-ebf1-4eb0-8054-7ede4dcfc93d", + "name": "general", + "startAt": "2017-09-24T19:44:22.621Z", + "endAt": "2019-09-24T19:44:22.622Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f6ee65ca-89bc-41e7-8cad-e46c25f7c515", + "creativeSets": [ + { + "creativeSetId": "228e6463-724b-45ae-acd4-4ff9290c2cfe", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c66edbc5-5336-4dd7-a008-cab5a8551695", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Basketball Fundamentals - A Study of Virginia's Defense", + "title": "Skill Session", + "targetUrl": "https://www.skillssession.com/blog/2018/1/22/defensive-fundamentals-a-look-at-the-virginia-cavaliers" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "rBScruZT33b4", + "name": "basketball" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "59ef746a-5e74-4557-9589-24c6575c209d", + "name": "general", + "startAt": "2017-09-24T19:44:23.196Z", + "endAt": "2019-09-24T19:44:23.197Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ae5c5256-0964-4f6a-b701-43800c4d43a0", + "creativeSets": [ + { + "creativeSetId": "bf033cd2-7975-48d5-9820-bf83803a2058", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "94f4a906-a3c2-4633-8cd9-809ee40ad091", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sky & Telescope® Magazine | skyandtelescope.com", + "title": "Skyandtele", + "targetUrl": "www.skyandtelescope.com/magazine" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "M_ZptOvQUEHi", + "name": "Astronomy Magazine" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "23bc3571-368e-40c2-bafc-4447150bf2a8", + "name": "general", + "startAt": "2017-09-24T19:44:23.782Z", + "endAt": "2019-09-24T19:44:23.782Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "19e9cb82-2f14-4a48-833d-67d6d744b12e", + "creativeSets": [ + { + "creativeSetId": "3964c9e0-192c-4658-af50-be96de909bd0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9bb357c1-c318-457c-9a4e-28c8815fce4b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "SlimFast® Advanced Nutrition - Control Hunger Up To 4 Hours", + "title": "Slimfast", + "targetUrl": "slimfast.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "13206af6-0070-4f28-acb9-b9cebc75a8b1", + "name": "general", + "startAt": "2017-09-24T19:44:24.360Z", + "endAt": "2019-09-24T19:44:24.360Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9c09f443-5582-4eae-a272-8475e473fa68", + "creativeSets": [ + { + "creativeSetId": "da5aa09c-024e-41cf-a0ea-c95b3355d3c5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0afa0bd7-4034-4260-8226-c8e32f712882", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Ecommerce Websites - From Yahoo Small Business", + "title": "Smallbusiness.yahoo", + "targetUrl": "smallbusiness.yahoo.com/Yahoo/Ecommerce" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "zgMSYI-gfMo", + "name": "eCommerce Websites" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3a251f6d-8041-49fe-8a1d-79d50e5fca4a", + "name": "general", + "startAt": "2017-09-24T19:44:24.906Z", + "endAt": "2019-09-24T19:44:24.907Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "60b50b9d-a786-484d-96cc-fe044be235d8", + "creativeSets": [ + { + "creativeSetId": "cdc18667-20dd-4c6b-8f79-fd6cafa4da8d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6796673e-3838-46ec-b691-0c422ecd3c7e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Get a Great Financial Advisor - Local, Pre-Screened | smartasset.com", + "title": "Smart Asset", + "targetUrl": "https://smartasset.com/retirement/find-a-financial-planner?utm_source=bing&utm_medium=cpc&utm_campaign=bin__falc_search_sink&utm_term=financial%20retirement&msclkid=30a1514729a814c7bc8a0b351120ff84" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "5nsUrkeNOVkM", + "name": "retirement planning" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8ce29935-5358-4c6b-b020-4a754008e71a", + "name": "general", + "startAt": "2017-09-24T19:44:25.489Z", + "endAt": "2019-09-24T19:44:25.490Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4fd6dd46-23e0-4de0-bb18-56b060887a6c", + "creativeSets": [ + { + "creativeSetId": "274758de-b993-44c4-8341-db970bcceea6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1803c3fa-93d9-4e8e-9fd6-7e3f96090084", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 3 Financial Advisors – Find Fiduciaries Near You", + "title": "Smartasset", + "targetUrl": "smartasset.com/find/advisor" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "z7floCfZA_P", + "name": "Financial Advisors" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "34e2da65-b77d-4a42-81e3-25ef66202922", + "name": "general", + "startAt": "2017-09-24T19:44:26.219Z", + "endAt": "2019-09-24T19:44:26.220Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6fbf7e48-0105-4d56-ae4e-0e970d05081b", + "creativeSets": [ + { + "creativeSetId": "fe41c6c8-4baa-4bbe-b09c-200397f668d0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a0f4b2a4-02b9-4999-b572-3da2e85a0dac", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Snapple® | Juice Drinks - Flavor That Pops", + "title": "Snapple", + "targetUrl": "snapple.com/Products/Juice-Drinks" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "lFMT5ZDQdjc", + "name": "Juice Drinks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3b393e2c-11e6-4572-80b9-03cf58fef5dc", + "name": "general", + "startAt": "2017-09-24T19:44:26.793Z", + "endAt": "2019-09-24T19:44:26.794Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "93f29175-d6e6-46ed-8016-32f07d8c4373", + "creativeSets": [ + { + "creativeSetId": "b0a01c89-6047-4ffe-b438-7c189048df71", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4b5804d3-796d-450a-81c1-8dd74515f2ae", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "SNHU© Online College - SNHU© Southern NH University", + "title": "SnhuEdu", + "targetUrl": "degrees.snhu.edu/Online/Degree-Programs" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "ANs-xRChItO", + "name": "College Degrees Online" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3bacbba7-abff-4422-906c-688e7edd47a6", + "name": "general", + "startAt": "2017-09-24T19:44:27.394Z", + "endAt": "2019-09-24T19:44:27.395Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "95a90169-e386-4c2f-a862-93fbf9f396d7", + "creativeSets": [ + { + "creativeSetId": "3765ed87-838d-45ba-9186-ee36d7ffbb51", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7a41ab5f-92d5-4457-9509-45d56c437ed4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Prescription Swim Masks - Crystal Clear Underwater Sight", + "title": "Snorkel-mart", + "targetUrl": "www.snorkel-mart.com/Masks/Prescription" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "BgfSFihlac8", + "name": "Swimming Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "73dd8234-c03e-4081-b961-350bdbf954b2", + "name": "general", + "startAt": "2017-09-24T19:44:28.222Z", + "endAt": "2019-09-24T19:44:28.222Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "608b5ba8-131d-44f5-8f65-54f370c196a1", + "creativeSets": [ + { + "creativeSetId": "9fff050b-4237-4fe4-b073-443fa24e0f7f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a30c2735-165a-40cc-8903-6fd9f37347bf", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Girls Soccer Jerseys on Sale | SOCCERGARAGE.COM‎", + "title": "Soccergarage", + "targetUrl": "www.soccergarage.com/girls_jerseys/sale" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wnYgEl7cckf", + "name": "Soccer Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "54b8419e-03d9-4e74-9c3c-5ab0e7ab2b07", + "name": "general", + "startAt": "2017-09-24T19:44:28.826Z", + "endAt": "2019-09-24T19:44:28.826Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "50aa18e6-b6d0-4aa3-973a-258ed9a38f85", + "creativeSets": [ + { + "creativeSetId": "b003ec0d-5c39-406d-9ab2-d884c6ca9183", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5a7539dd-3977-49cf-84d5-2f641ace4f21", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bowel Treatment - Ulcerative Colitis Treatments", + "title": "Socialpick", + "targetUrl": "socialpick.net/Ulcerative/Colitis" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "2COuQqpVPYdA", + "name": "Bowel Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c124ad38-19c0-4de5-b773-64988bc13dd7", + "name": "general", + "startAt": "2017-09-24T19:44:29.471Z", + "endAt": "2019-09-24T19:44:29.471Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "364d8dfa-b7fc-437f-afe4-f075eddc90b9", + "creativeSets": [ + { + "creativeSetId": "17fd7eed-2667-4f22-9f31-c48651dde60f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bbac9fc7-602a-40be-adce-f21ff3c082a9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Stylish, Soft & Comfy Clothing | Shop Soft Surroundings® Now‎", + "title": "Softsurroundings", + "targetUrl": "www.softsurroundings.com/clothing ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "obV7ryiIRW4", + "name": "beauty" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "105cdf3b-2a8d-48aa-b762-6f770ea6ae36", + "name": "general", + "startAt": "2017-09-24T19:44:30.033Z", + "endAt": "2019-09-24T19:44:30.033Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1360b7d1-00e9-443e-be8d-1c3d13f0cd02", + "creativeSets": [ + { + "creativeSetId": "7ee9f8d6-7ba1-4828-b780-ff3398b5893f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "19af4ed7-2995-4574-9026-f026de19fe27", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hot Docs Software - Automated Word Processing with Hot Doc", + "title": "Softura", + "targetUrl": "www.softura.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "mAWzKREQPg8", + "name": "Automation Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2c8d5d6a-c748-4a5c-98ea-283d202e7720", + "name": "general", + "startAt": "2017-09-24T19:44:30.779Z", + "endAt": "2019-09-24T19:44:30.780Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f7bad7ad-977d-4357-a5f9-726139c5153c", + "creativeSets": [ + { + "creativeSetId": "70a60162-7184-4b9e-99dd-3b27e3beaccf", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e6923f96-2d13-4b06-a354-ba499425aa3f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 5 Inventory Software - Simplifying Software Selection", + "title": "Softwareadvice", + "targetUrl": "www.softwareadvice.com/Inventory-Mgmt/Top-Vendors" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "2QJW6dTCw6z", + "name": "Inventory Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "59748df7-fa66-44ea-9c31-3177323dec64", + "name": "general", + "startAt": "2017-09-24T19:44:31.352Z", + "endAt": "2019-09-24T19:44:31.352Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1902d7aa-315a-430e-b411-0b5d98b10036", + "creativeSets": [ + { + "creativeSetId": "3f55d0c4-b052-4f1e-8d1a-28b5030cc0ef", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4b848a5d-6636-453e-8771-72c5a9c38ab4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Soma® Bathing Suits - Swim Designed For Every Body", + "title": "Soma", + "targetUrl": "www.soma.com/swim/made-to-flatter" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "BgfSFihlac8", + "name": "Swimming Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b9bfdc3d-19b1-4bbb-a46e-f578119d2a87", + "name": "general", + "startAt": "2017-09-24T19:44:32.022Z", + "endAt": "2019-09-24T19:44:32.023Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "72a69295-f35d-47a4-983d-af1eb0574378", + "creativeSets": [ + { + "creativeSetId": "944d777b-a17b-4a7f-94b8-81f534de85ac", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2bcb077b-68c0-49a6-a9d0-58c297b20f1a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online Adult Sex Store - 100% Discreet - Same Day Shipping", + "title": "Somethingsexypl", + "targetUrl": "somethingsexyplanet.com/Adult/SexStore" + } + } + ], + "segments": [ + { + "code": "BLz4HWBCFN", + "name": "Adult" + }, + { + "code": "l3UPx578DUq", + "name": "Adult Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c5378161-47f0-4cc3-85ee-8ea489d38e07", + "name": "general", + "startAt": "2017-09-24T19:44:32.829Z", + "endAt": "2019-09-24T19:44:32.829Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "51ba2abc-b663-4f42-8869-eb9c20bc36b4", + "creativeSets": [ + { + "creativeSetId": "69aec5c4-4e58-4250-9f51-0f75d9c36428", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "df4234f7-484c-4723-8a90-93c4e1ef1b90", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sony Crackle™ - Official Site - Free Movie Streaming", + "title": "Sonycrackle", + "targetUrl": "www.sonycrackle.com/Free-Movies" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "mRgPV84LYAT", + "name": "Stream Movies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "29c5d489-fa21-4654-a4b7-0d0d7e1b4d4d", + "name": "general", + "startAt": "2017-09-24T19:44:33.502Z", + "endAt": "2019-09-24T19:44:33.503Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "20450282-7fa6-4501-84f0-6dba937c3238", + "creativeSets": [ + { + "creativeSetId": "e6cc2fbe-b8c3-4e2c-942e-20238c19600b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4ad2519d-494c-4bfe-a279-5ea79e51f4f8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Southern Company News Center – Building the Future of Energy | southerncompany.com", + "title": "Sourthern Company News Center", + "targetUrl": "http://www.southerncompany.com/newsroom.html?utm_source=yahoo&utm_medium=cpc&utm_term=cpc&utm_content=NewsCenter" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "NETurvSD6oen", + "name": "energy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f31962bc-7cdc-4899-9757-32e3f5f0a73c", + "name": "general", + "startAt": "2017-09-24T19:44:34.256Z", + "endAt": "2019-09-24T19:44:34.256Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "606882d1-23d0-4c05-82ad-e22963118566", + "creativeSets": [ + { + "creativeSetId": "271dc2f1-5a60-4848-be6d-b5a3f8f946b0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4bc58712-f94a-4ac5-9bca-79ec0b3ac491", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Resume Builder - Easiest Step-by-Step Resumes", + "title": "Special-offers", + "targetUrl": "www.special-offers-today.com/Myperfectresume/trail" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "9Alas5QGK_f", + "name": "Contractor Jobs" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "daa1704b-d8bc-4579-9f10-2bbb400e46dc", + "name": "general", + "startAt": "2017-09-24T19:44:34.886Z", + "endAt": "2019-09-24T19:44:34.886Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5ea03e7f-3c42-4695-a49a-226e66c88a73", + "creativeSets": [ + { + "creativeSetId": "41718412-0436-4457-8f16-ea87e7d8bcfc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8d73acde-678c-4727-be30-277d6c66243b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Speedo (Official Site) - Free Shipping on Orders $100+", + "title": "Speedo", + "targetUrl": "http://www.speedousa.com/?camp=PPC:MSN&cawelaid=1909936829&catrk=spfid-70&caagid=537209422&catci=kwd-26410435863:loc-190&capcid=16479201796&cadevice=c?utm_source=bing&utm_medium=cpc&utm_campaign=General%20-%20Competitive%20Swimwear&utm_term=%2Bdiving%20swim%20wear&utm_content=General_Diving%20Swimwear%20-%20General" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wdAMzD2FMcFJ", + "name": "diving" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2a19d17a-ccbc-4ad0-bce4-b0bde8137d24", + "name": "general", + "startAt": "2017-09-24T19:44:35.488Z", + "endAt": "2019-09-24T19:44:35.489Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8c3d0e21-f18c-4599-bda9-27aa011d1054", + "creativeSets": [ + { + "creativeSetId": "619f826e-c00f-4adc-989a-55d3fa8ffc7e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bb18cb86-0e0a-4a5e-8fcc-83b792bce21c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "SpeedPress® Sign Supplies", + "title": "SpeedPress", + "targetUrl": "www.SpeedPress.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "kORnSRyr0FJ", + "name": "Metalwork Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "76355c95-fbc6-4fed-bcb5-c62c403efe74", + "name": "general", + "startAt": "2017-09-24T19:44:36.070Z", + "endAt": "2019-09-24T19:44:36.070Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0b484f8a-70e7-45e3-9828-4078ddc04804", + "creativeSets": [ + { + "creativeSetId": "dd54e92a-4a00-4714-ab50-654b0f4fc67f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fc4a878a-a004-431b-b55d-bbd983fe1ba4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Astronomy Magazine", + "title": "SpeedyMags", + "targetUrl": "www.SpeedyMags.com" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "M_ZptOvQUEHi", + "name": "Astronomy Magazine" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "639aa0c9-ed14-4d41-ac4b-1817b8d93502", + "name": "general", + "startAt": "2017-09-24T19:44:36.674Z", + "endAt": "2019-09-24T19:44:36.675Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0cd8315b-5e62-48cd-9ad7-bf788295daa9", + "creativeSets": [ + { + "creativeSetId": "1e532136-5705-4379-b8c7-82a259eea136", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1acf9bda-fe3f-4b8d-9c6e-b4c7c64b5c04", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "SPI High School Study Abroad - Language Immersion Programs | spiabroad.com \r\n", + "title": "SPI Abroad", + "targetUrl": "https://www.spiabroad.com/" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "9AKL2eTQaDkr", + "name": "languages" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1311c704-0c5b-4922-a518-998d7720c075", + "name": "general", + "startAt": "2017-09-24T19:44:37.305Z", + "endAt": "2019-09-24T19:44:37.305Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "67acac9c-763b-4b39-b279-a241eb7c8a32", + "creativeSets": [ + { + "creativeSetId": "9f89de8b-e4e8-4710-9147-ef8d89102c1b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "743fb2fb-c5fb-4349-99d6-d5848418109e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Spiriva® Respimat® - Savings & Support", + "title": "Spiriva", + "targetUrl": "www.spiriva.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "FFlMXuImzk5", + "name": "Asthma Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "62ec1bc9-1e9b-4664-9baf-65bbde30cde2", + "name": "general", + "startAt": "2017-09-24T19:44:38.039Z", + "endAt": "2019-09-24T19:44:38.040Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "be1d2761-445a-4f26-87fe-b23a000e5686", + "creativeSets": [ + { + "creativeSetId": "1cb94ea3-f156-4166-a21c-6d4f8f870571", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0f78ae29-c3f2-4b0f-8308-a247cbfa3bd2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Homemade Meal Delivery - Send the Gift of Comfort", + "title": "Spoonfulofort", + "targetUrl": "www.spoonfulofcomfort.com/meal_delivered" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "RjX-wPWa8Z_f", + "name": "Meal Deliveries" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "dc44806e-e608-4066-bdb2-404cf79ad6ac", + "name": "general", + "startAt": "2017-09-24T19:44:38.691Z", + "endAt": "2019-09-24T19:44:38.691Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b57ba300-f240-44ec-b440-39f6dbe79e04", + "creativeSets": [ + { + "creativeSetId": "178e5369-cb92-4b8d-a726-0a35f801b24c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "599342f2-9801-4c49-ad0d-8f70bf50c98c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sports Advantage - MASA", + "title": "SportsAdvantage", + "targetUrl": "www.SportsAdvantage.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "F7q5REWSRoB", + "name": "Sports Betting" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2909cf89-b30c-457b-b472-be7d3691d819", + "name": "general", + "startAt": "2017-09-24T19:44:39.316Z", + "endAt": "2019-09-24T19:44:39.317Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d250a0b3-51e9-4690-a300-d0f51b6672a9", + "creativeSets": [ + { + "creativeSetId": "83f21e17-a6bf-4a15-87c2-2e5d59213a5a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "831af8f9-9a05-4bde-a9d6-14217ef5b607", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The Real SportsLine® Site", + "title": "Sportsline", + "targetUrl": "Sportsline.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "F7q5REWSRoB", + "name": "Sports Betting" + } + ] + }, + { + "creativeSetId": "c5cd9fa5-0cb9-44ee-8a6b-c9abf71961da", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a5c8c8a6-b63c-45b1-868a-1631f3339fe0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "SportsLine® - Data-Driven Sports Analysis", + "title": "Sportsline", + "targetUrl": "www.sportsline.com/Sports/Picks" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FeUOoTDKpRGk", + "name": "Sports Live" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2db3b029-2f47-448d-9fd5-bcf50c657246", + "name": "general", + "startAt": "2017-09-24T19:44:40.411Z", + "endAt": "2019-09-24T19:44:40.412Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "22590b1c-f749-4401-80ce-e4cfd2fdeaaf", + "creativeSets": [ + { + "creativeSetId": "e67941db-8db7-426e-8f55-1033a152cb96", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "36247fb1-396c-4ec6-b4a5-c893309592e1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hunting Tower - Huge Selection Of Stands | sportsmansguide.com", + "title": "Sportsman", + "targetUrl": "www.sportsmansguide.com/TreeStands/Tower&Tripod" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "5rrqOyiLvSS", + "name": "Hunting Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2c37c98b-eabb-47c8-a1b2-99f630c98911", + "name": "general", + "startAt": "2017-09-24T19:44:41.016Z", + "endAt": "2019-09-24T19:44:41.016Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "53ca3b94-aec4-4812-ac8c-b558c04f1634", + "creativeSets": [ + { + "creativeSetId": "aae4ce2c-d8df-4571-801a-6c6c1b8147c5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7376c7c2-28f0-4623-bfe2-9e69ec9eed25", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Improve Social Media Analytics | Get Started Now‎", + "title": "Spotright", + "targetUrl": "www.spotright.com/ ‎" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "UBXGkQ3Bdgz4", + "name": "Social Media Analytics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "19f49375-5b8e-4b54-8d79-c2736a5ce3bc", + "name": "general", + "startAt": "2017-09-24T19:44:41.798Z", + "endAt": "2019-09-24T19:44:41.798Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d6d91c94-61a1-40f3-b4db-e64cb2a79ba9", + "creativeSets": [ + { + "creativeSetId": "510ff1ee-f410-4702-832d-0a31ef65495c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3453bc00-1f65-4b76-a512-3ba350571a5f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Color Spray Chalk - Temporary Decorative Chalk", + "title": "Spraychalkfun", + "targetUrl": "www.spraychalkfun.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "ueFaBreO21-9", + "name": "Arts and Crafts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cd20a273-28ef-446a-808c-072ad46d83bf", + "name": "general", + "startAt": "2017-09-24T19:44:42.380Z", + "endAt": "2019-09-24T19:44:42.380Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f507caa7-acea-4e47-bec2-4975fe570de3", + "creativeSets": [ + { + "creativeSetId": "8ae490bc-136a-4e54-83b4-45f99ba2e29b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "afe7d044-d524-4763-9b2c-8284d77c89d1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sprint® Unlimited Plan Deal - Extra Features, No Extra Cost", + "title": "Sprint", + "targetUrl": "www.sprint.com/Unlimited" + } + } + ], + "segments": [ + { + "code": "05KGovyhnUj", + "name": "cell phones" + }, + { + "code": "PDcNk9LToal", + "name": "cell phones" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3487e20a-56e6-4042-8ec0-cf220f56d844", + "name": "general", + "startAt": "2017-09-24T19:44:42.937Z", + "endAt": "2019-09-24T19:44:42.938Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7ec8d15d-05b2-4e07-a75c-a5eb9dd2e7cd", + "creativeSets": [ + { + "creativeSetId": "e24eeb25-64f9-43ec-9049-2c4a73b81493", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a78a8cf6-7cdd-4a7b-8128-10c1091df017", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sprout Social® - Social Analytics Software | sproutsocial.com", + "title": "Sproutsocial", + "targetUrl": "sproutsocial.com/Social-Media/Measurement" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "UBXGkQ3Bdgz4", + "name": "Social Media Analytics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "31b7bd7f-f3b0-4278-926a-083da4221616", + "name": "general", + "startAt": "2017-09-24T19:44:43.536Z", + "endAt": "2019-09-24T19:44:43.536Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0f9834ef-91ed-4e05-a9b5-19bdf73f026d", + "creativeSets": [ + { + "creativeSetId": "08b611b7-7038-4b81-a79e-f1a0550c9e56", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a339aeb1-c0ab-4013-897c-10e3634f6a59", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Bowling Gear - No Minimums, Free Logo Edits - Try it Now", + "title": "Squadlocker", + "targetUrl": "team.squadlocker.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "e5hD9xkeyjO", + "name": "Bowling Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8a308510-c795-4375-9606-b9bd666ebb35", + "name": "general", + "startAt": "2017-09-24T19:44:44.276Z", + "endAt": "2019-09-24T19:44:44.276Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "eac94d10-cb21-4c33-af14-3188e46d8ae9", + "creativeSets": [ + { + "creativeSetId": "ba0c4f5d-49b8-460e-903e-97afffb3dda2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c6f5de39-98a6-483f-977c-f70b6cb10493", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Square for Retail - The Best POS for Retail. - Try it Free", + "title": "Squareup", + "targetUrl": "squareup.com/pos/retail" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "2QJW6dTCw6z", + "name": "Inventory Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "383ef990-1ba5-4a65-acff-d640dde241b0", + "name": "general", + "startAt": "2017-09-24T19:44:44.881Z", + "endAt": "2019-09-24T19:44:44.882Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b227a6c7-75b4-4545-afe7-f122cb740c61", + "creativeSets": [ + { + "creativeSetId": "78ba5437-de8a-4b79-8561-8b81452da408", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a0f65c7b-6e39-4fa5-bf17-a8654d73c930", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Stamps.com® Official Site - Online Postage - Buy & Print U.S", + "title": "Stamps", + "targetUrl": "www.stamps.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "L6d8TFZSNbmS", + "name": "Online Shipping" + } + ] + }, + { + "creativeSetId": "fe123cdf-7bec-4e87-979f-8a17d38b77c7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "441b0498-4629-4352-a96c-2c3c1103e3b8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Stamps.com?? Official Site - Buy Stamps Online", + "title": "Stamps", + "targetUrl": "www.stamps.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "12wGC9Ye4QL", + "name": "Rare Stamps" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "caa61b52-998d-409d-9314-4fea309acc32", + "name": "general", + "startAt": "2017-09-24T19:44:45.805Z", + "endAt": "2019-09-24T19:44:45.806Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a1d3a7d9-03d7-4552-b432-a4f402d240a2", + "creativeSets": [ + { + "creativeSetId": "d3fe0f51-79b5-48be-9ce7-006191ad69c0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "529d3993-ea9e-4d1d-8771-e46fde645129", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "$100 Off Stamps.com Coupon - See Feb 2018's Best Promo Code", + "title": "Stamps.com", + "targetUrl": "https://www.offers.com/stamps/?path=zzz-yugz-mpn-100a1a&creative=77721753307429&device=c&keyword=30688330295&source=s" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "29x3YanEA_RZ", + "name": "stamps" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ea1796b0-f49c-4578-aa62-feeb281abcd6", + "name": "general", + "startAt": "2017-09-24T19:44:46.389Z", + "endAt": "2019-09-24T19:44:46.389Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "22d46b13-3bc8-4b4f-b6a3-85980409314d", + "creativeSets": [ + { + "creativeSetId": "9db1bdca-df38-458d-8a2b-848f3ed123e3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7744c565-3fb4-4b86-8089-85a252942847", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The New Standard in Wine - By the Glass", + "title": "Standardwines", + "targetUrl": "standardwines.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "REQQSgV4UzG", + "name": "Wine" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "22b1c280-b62c-47b3-afc9-14f848b9e4dc", + "name": "general", + "startAt": "2017-09-24T19:44:46.951Z", + "endAt": "2019-09-24T19:44:46.952Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "90927dd3-8c12-4b2b-bbbb-246bbd1ea598", + "creativeSets": [ + { + "creativeSetId": "6a5aae31-bf3b-489c-b8a8-dc8cb0490def", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4dac120a-1dd4-484d-adcf-7e25c7bfdbca", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Selz Helping You Sell Online - Try Selz® for Free - selz.com", + "title": "Start.selz", + "targetUrl": "start.selz.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "zgMSYI-gfMo", + "name": "eCommerce Websites" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "86ef2ad4-1686-412a-b82f-f1367bbffa8c", + "name": "general", + "startAt": "2017-09-24T19:44:47.589Z", + "endAt": "2019-09-24T19:44:47.589Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "85987dd3-713e-470e-a283-d6a27bb545e6", + "creativeSets": [ + { + "creativeSetId": "4a50e31b-82cb-48ce-95fd-6d9cf778a310", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "180af8af-e9fb-4a1e-b483-8075066f4155", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "STARZ®: Official Site - Stream Without Cable", + "title": "Starz", + "targetUrl": "www.starz.com" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "mRgPV84LYAT", + "name": "Stream Movies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ba545188-b439-4237-bc2e-7fa6ae1dafa9", + "name": "general", + "startAt": "2017-09-24T19:44:48.235Z", + "endAt": "2019-09-24T19:44:48.236Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "842d2cd9-8651-4290-a767-24b8fc0615ca", + "creativeSets": [ + { + "creativeSetId": "2422ef2a-cb6d-44a4-aeab-8e48e123e657", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "21b36034-9730-4175-87ce-6866715e8e71", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Basic Western Riding DVD", + "title": "Stayinthesaddle", + "targetUrl": "www.stayinthesaddle.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "cS2Wr4k8VpH", + "name": "Horse Racing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8ff9f6e7-83d3-416d-8a9d-7b3f087e0f87", + "name": "general", + "startAt": "2017-09-24T19:44:48.831Z", + "endAt": "2019-09-24T19:44:48.832Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "93b7326c-41c8-4d6a-8ab3-fe1ae00ddc6c", + "creativeSets": [ + { + "creativeSetId": "c6182e2d-6f56-47d2-8e85-05a4541249fd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e1436559-5ef4-41fc-9cd3-5432d5018d05", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online Hip Hop Dance Classes | Free 7 Day, Unlimited Trial‎", + "title": "Steezy", + "targetUrl": "www.steezy.co/hip-hop/classes ‎" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "tDcqDSsaTpB", + "name": "Dance Lessons" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "247f309f-7204-4961-b40a-f7e5f89899cc", + "name": "general", + "startAt": "2017-09-24T19:44:49.574Z", + "endAt": "2019-09-24T19:44:49.575Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bd66ad74-7dd6-40f3-a704-76465032846e", + "creativeSets": [ + { + "creativeSetId": "d3cc64f2-bb92-4029-95b1-ffa72f776cc1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0f3cd85e-fadc-46cd-9e70-4ee936449a25", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Stitch Fix - Official - Get Your Own Personal Stylist | stitchfix.com", + "title": "Stitch Fix", + "targetUrl": "https://www.stitchfix.com/" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "cKE--V39Tbj", + "name": "clothing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "acb2f637-0dde-4450-92e2-7e66c1c93ef1", + "name": "general", + "startAt": "2017-09-24T19:44:50.348Z", + "endAt": "2019-09-24T19:44:50.348Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3d2e4f0e-fd93-4072-9efd-702b357086fc", + "creativeSets": [ + { + "creativeSetId": "1f9fd9d6-e8a0-4f80-90ce-faeb3ce11bea", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2c89e227-426f-4df9-9ca3-984f8836a9c7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Spring Clothing For Women | Stitch Fix® Official Site | stitchfix.com‎", + "title": "Stitchfix", + "targetUrl": "www.stitchfix.com/Women ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "obV7ryiIRW4", + "name": "beauty" + } + ] + }, + { + "creativeSetId": "8f3ff9c2-bc3a-4bfa-9923-4a53486dafbe", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cd9e6c3a-acab-465c-8a4c-6ed7929caf68", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fashion For Women | Stitch Fix® For Women | stitchfix.com‎", + "title": "Stitchfix", + "targetUrl": "www.stitchfix.com/Women ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "cKE--V39Tbj", + "name": "clothing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "aa510f55-860a-48e0-b6bd-b48e1db6a208", + "name": "general", + "startAt": "2017-09-24T19:44:51.164Z", + "endAt": "2019-09-24T19:44:51.165Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d47a17c6-b36d-4a4c-9d37-e7723e55a115", + "creativeSets": [ + { + "creativeSetId": "44bf29ac-968a-4faa-84d9-aa2d4beb0da0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "06ca9f59-82d3-4e17-b338-eb15758bfc16", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Justice League - Trading Card Game", + "title": "Store.paniniamerica", + "targetUrl": "store.paniniamerica.net/justice_league/card_game" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "y-dD1TIXfNn", + "name": "Board Games" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "206d0de1-0ff2-401b-ba49-4555dfe95941", + "name": "general", + "startAt": "2017-09-24T19:44:51.904Z", + "endAt": "2019-09-24T19:44:51.904Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d4f005cd-4386-4542-94f2-973f7b45d2b6", + "creativeSets": [ + { + "creativeSetId": "8430df33-77c9-4499-84c6-e759869c17b4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3512160a-0615-4fe7-8257-b8137cd6bbb3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bitcoin's Big Problem Solved - Crypto Markets About to Soar", + "title": "Strategictechinvestor", + "targetUrl": "strategictechinvestor.com/Bitcoin/Cryptocurrency" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "FIwLp4gtICpI", + "name": "Crypto Mining" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8662dfd7-bdec-4f60-bb95-03ed808b6ae1", + "name": "general", + "startAt": "2017-09-24T19:44:52.481Z", + "endAt": "2019-09-24T19:44:52.482Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5d6f70ba-0c83-4d73-8b41-39c7d1b4d821", + "creativeSets": [ + { + "creativeSetId": "e0e0e3f8-5474-4345-9711-831c37ac6bb1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b9a31d53-1d3a-4d0b-a683-efc7190cab79", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Vegas Package Deals - Stratosphere Hotel™", + "title": "Stratospherehotel", + "targetUrl": "www.stratospherehotel.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6mVE5rciM5p", + "name": "Hotel Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d593539e-72b7-4341-bbd9-d895637a3056", + "name": "general", + "startAt": "2017-09-24T19:44:53.065Z", + "endAt": "2019-09-24T19:44:53.065Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3c71f350-4e4d-46f0-b43b-e1daba935573", + "creativeSets": [ + { + "creativeSetId": "f582dedf-3672-4fae-8e52-2516365fccde", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4fe48d57-9444-435f-8729-64a8453db26a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Strayer® University Bachelor's - Applied Science In Management", + "title": "StrayerEdu", + "targetUrl": "achieve.strayer.edu/Applied_Science/Degree" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "ANs-xRChItO", + "name": "College Degrees Online" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3b7686e8-2bfb-4a5a-9908-f92d72861f1e", + "name": "general", + "startAt": "2017-09-24T19:44:53.917Z", + "endAt": "2019-09-24T19:44:53.917Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "253fce7e-921d-498a-b481-33311749b33b", + "creativeSets": [ + { + "creativeSetId": "93b08248-0864-435f-82f4-bf36f8bd3281", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "71a36d7d-ad7e-4d88-881f-42bccd96baba", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Stubb's® Legendary Flavor - The Best Barbecue Around", + "title": "Stubbsbbq", + "targetUrl": "www.stubbsbbq.com/StubbsBBQ" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "w2RZcyzoMxq", + "name": "Barbecues" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ce5105bc-bd79-4bce-bba8-51fcb1dc786c", + "name": "general", + "startAt": "2017-09-24T19:44:54.495Z", + "endAt": "2019-09-24T19:44:54.495Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "12e39001-10f7-41b2-a90b-cdeb5f9d9cad", + "creativeSets": [ + { + "creativeSetId": "53c9eb58-4584-441f-8ae8-d980246c589b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "607a78aa-a8e2-4b57-ab70-c9724b3f2781", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "StubHub Buy & Sell Tickets – Buy & Sell Tickets - Stubhub.com", + "title": "Stubhub", + "targetUrl": "www.stubhub.com/Tickets" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "mqSw-gRLA7p", + "name": "Boxing Tickets" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "746d15e2-06a1-41b1-9cf7-f4247122ed21", + "name": "general", + "startAt": "2017-09-24T19:44:55.077Z", + "endAt": "2019-09-24T19:44:55.078Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "03d044e2-efd1-4105-82cb-2601a2875150", + "creativeSets": [ + { + "creativeSetId": "a008f909-41dc-4f65-8566-148ee95cf2af", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f12d6abe-0025-409b-b335-5f52f6d4f18b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cheap Student Flights - Save Up To 60% Off Travel.", + "title": "Studentuniverse", + "targetUrl": "www.studentuniverse.com/Flights" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "0LyFuY7_Cse", + "name": "Flight Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2d339c28-9b4d-465b-83e4-c9bf6e8c0744", + "name": "general", + "startAt": "2017-09-24T19:44:55.962Z", + "endAt": "2019-09-24T19:44:55.962Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4c4bbd9e-e80f-4f48-b4a0-379bc9df000f", + "creativeSets": [ + { + "creativeSetId": "c326706d-a315-4727-8b71-ae6e06267e80", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "254d66b6-871a-4688-8507-f3ab4f49acba", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Humor | StumbleUpon.com", + "title": "StumbleUpon.com", + "targetUrl": "http://www.stumbleupon.com/interest/Humor" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "QFm0r9KQQMTO", + "name": "humor" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3d93a1c7-debb-414b-a17b-04cff056497a", + "name": "general", + "startAt": "2017-09-24T19:44:56.907Z", + "endAt": "2019-09-24T19:44:56.907Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "533c56fb-268c-4f6c-b5d4-b25b9b1e1ae2", + "creativeSets": [ + { + "creativeSetId": "440ba63f-5723-4c72-b2d0-33a91e30c7a6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "30926de6-6f60-444b-abad-473dd5d48d5f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop The Horse Online - The Latest 2018 Collection", + "title": "Stylight", + "targetUrl": "www.stylight.com/the-horse" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "cS2Wr4k8VpH", + "name": "Horse Racing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "785c1a2c-e43c-4b85-b379-de7f1f56624c", + "name": "general", + "startAt": "2017-09-24T19:44:57.754Z", + "endAt": "2019-09-24T19:44:57.754Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7ecdf2e2-4f03-4e3c-9625-6d8db08782db", + "creativeSets": [ + { + "creativeSetId": "b0922254-ce93-48f8-b621-9d001feee5e7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "85bec46e-b74a-45eb-be93-f0c915219606", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Architectural Digest - Official Site", + "title": "Subscribe.architecturaldigest", + "targetUrl": "subscribe.architecturaldigest.com/subscribe" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "T4rhcMPPBhp", + "name": "Home Décor" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4a21d3a6-7adf-4dce-8497-687d4a566434", + "name": "general", + "startAt": "2017-09-24T19:44:58.352Z", + "endAt": "2019-09-24T19:44:58.353Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "89515d94-dc84-4ac4-b156-4fdf54a144f9", + "creativeSets": [ + { + "creativeSetId": "bd54710f-707b-42db-9da3-84072710828b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f45a565b-c04e-4e68-9a92-e0ce31a398aa", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The Economist Magazine - Subscribe Now From $1 a Week.", + "title": "Subscription.", + "targetUrl": "subscription.economist.com/12issues/12dollars" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "TZT3-8UTU4y", + "name": "Economics Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0866848b-17f0-4e8d-b087-348f29bec165", + "name": "general", + "startAt": "2017-09-24T19:44:58.913Z", + "endAt": "2019-09-24T19:44:58.913Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "61adadbe-1dfd-4122-974f-fe262efe21f1", + "creativeSets": [ + { + "creativeSetId": "3d10f7f7-7d97-4c98-9174-e5cbe67c7849", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "603e22be-ad31-4c22-9227-20b5a60826ed", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Try Sun Basket - Get $50 Off - Organic & Clean Ingredients", + "title": "Sun Basket", + "targetUrl": "https://try.sunbasket.com/plant-lovers/?offer=LQ3515&SCID=GCPC" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "jKe08c26VpMS", + "name": "vegan" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "27dfa937-4331-48f3-857f-fcf312037fe8", + "name": "general", + "startAt": "2017-09-24T19:44:59.488Z", + "endAt": "2019-09-24T19:44:59.488Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "67b583ca-6c18-4dc8-a18f-74fc187025dd", + "creativeSets": [ + { + "creativeSetId": "a512e19f-b776-46b4-abb3-c421bd9b4eb8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "12bc33c5-2273-40cd-ba04-ec83a76dbbed", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Snowboard Gear & Apparel - Visit Sun & Ski Gaithersburg", + "title": "Sunandski", + "targetUrl": "www.sunandski.com/Gaithersburg" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "--yzN6s96hZD", + "name": "Snowboarding Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "41f0b962-73f7-4ae3-b5a7-a536bde385fc", + "name": "general", + "startAt": "2017-09-24T19:45:00.266Z", + "endAt": "2019-09-24T19:45:00.266Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c5231153-b919-4f99-b09b-8baabd6e8ee1", + "creativeSets": [ + { + "creativeSetId": "e0e3b8fe-ac78-46dd-88d9-cea9f9bf670f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "20e4794c-ef8d-419d-b705-b8b01f64491e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Physician Website & Resources - Epilepsy Treatment Information", + "title": "Sunovionprofile", + "targetUrl": "www.sunovionprofile.com/HCP/Treatment" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "UzZDN_wdJQzE", + "name": "Epilepsy Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e4768b5c-334a-4db2-8bce-8869ebb9e4fc", + "name": "general", + "startAt": "2017-09-24T19:45:00.855Z", + "endAt": "2019-09-24T19:45:00.855Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a82a90af-f747-425f-bdb7-38ac48e42320", + "creativeSets": [ + { + "creativeSetId": "aaeefceb-39ae-46d7-bb4b-38716e2c464c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6db62ffd-03bd-401d-b078-13c09a85ce27", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Diesel Fuel Cards - Save up to 5¢ per Gallon | superfleet.net", + "title": "Superfleet", + "targetUrl": "superfleet.net/business/fuel-cards" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "OAA-T668LRa", + "name": "Fuel Cards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "25e6be78-e008-465b-91b0-a4fe6279406b", + "name": "general", + "startAt": "2017-09-24T19:45:01.446Z", + "endAt": "2019-09-24T19:45:01.446Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "02cf4d3c-d132-4e00-a622-348045386aa4", + "creativeSets": [ + { + "creativeSetId": "0993e354-df1a-495f-be2c-3bafbf075445", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f0f3a2b0-76c9-408b-9cc1-9c65a96f9b52", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Noritz RC-7651M - SupplyHouse.com-Official Site", + "title": "Supplyhouse", + "targetUrl": "www.supplyhouse.com/Noritz/RC-7651M" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "eJu7bz6XQx4", + "name": "RC Vehicles" + } + ] + }, + { + "creativeSetId": "fe58de41-920d-41d8-a458-d7a11aae5657", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c530244e-0b70-4402-b7cd-9d2dee8e13e2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Field Controls CAT-4HD - SupplyHouse.com-Official Site", + "title": "Supplyhouse", + "targetUrl": "www.supplyhouse.com/Field Controls/CAT-4HD" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "6BRJuRThFS_", + "name": "Cat Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "dbce2b7a-4b25-4c5e-b9d4-3ed723ffc75f", + "name": "general", + "startAt": "2017-09-24T19:45:02.554Z", + "endAt": "2019-09-24T19:45:02.554Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a289798f-580a-41f3-b88c-a6cfb21cd0e1", + "creativeSets": [ + { + "creativeSetId": "0c78c7c9-279e-45e2-a804-2fffe31c6939", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fedecdf3-9e35-412e-be2a-1a630d248e99", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sweet Defeat® Official Site - Stop Sugar Cravings Today", + "title": "Sweetdefeat", + "targetUrl": "www.sweetdefeat.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bfb23e70-43c5-4423-8711-6bba851128ad", + "name": "general", + "startAt": "2017-09-24T19:45:03.129Z", + "endAt": "2019-09-24T19:45:03.130Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9df88276-db4a-42eb-a01d-7bee7f466959", + "creativeSets": [ + { + "creativeSetId": "2ad7d204-b4a1-4306-bd8a-50fb2e76782d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "abb85497-c5df-41e4-b3df-044751765ed8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Womens Fasion - Lowest Prices Guaranteed", + "title": "Swimoutlet", + "targetUrl": "www.swimoutlet.com/Women/Swimwear" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "cKE--V39Tbj", + "name": "clothing" + } + ] + }, + { + "creativeSetId": "43c7dd79-ffdb-4b3b-95c2-36978c55ae37", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a74e332c-791d-4b2b-a2b0-890a9bb4f6da", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Aquatic Supplies - The Most Popular Swim Shop", + "title": "Swimoutlet", + "targetUrl": "www.swimoutlet.com/Water-Aerobics" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "T2fnJ3M0GxS", + "name": "Aquarium Supplies" + } + ] + }, + { + "creativeSetId": "4d955250-784d-4337-848b-632d772fafc4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6137d800-f1e3-4a8b-8312-8c9a316bdb7b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Swimming Gear - Free Shipping on Orders $49+", + "title": "Swimoutlet", + "targetUrl": "www.swimoutlet.com/Swim-Gear" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "BgfSFihlac8", + "name": "Swimming Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c93735a4-62e5-4822-83f2-cf21d0c4debc", + "name": "general", + "startAt": "2017-09-24T19:45:04.509Z", + "endAt": "2019-09-24T19:45:04.509Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c5bae26b-ab4f-4be4-b93e-303c533e61a9", + "creativeSets": [ + { + "creativeSetId": "d879217d-fe62-4771-9e52-dbd9e0ea21cb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d29a1982-f173-4906-b06b-23f21840b9ee", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Diving Gear - Low Prices Guaranteed", + "title": "SwimOutlet", + "targetUrl": "www.SwimOutlet.com/Scuba-Shop" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "fH7PFGfR2R8", + "name": "Diving Gear" + } + ] + }, + { + "creativeSetId": "96123344-60cd-459d-9aef-c928ef214633", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "969eb4fb-61f9-414a-b699-0ef5c86fc92e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Surfing Gear - Low Prices Guaranteed", + "title": "SwimOutlet", + "targetUrl": "www.SwimOutlet.com/Surf-Shop" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "nYUpPvk5Fx7s", + "name": "Surfing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "24a6e5f2-925c-4dab-966b-02377b70f2be", + "name": "general", + "startAt": "2017-09-24T19:45:05.330Z", + "endAt": "2019-09-24T19:45:05.330Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e352c0a5-5f97-4a09-aa13-2cfbb324de05", + "creativeSets": [ + { + "creativeSetId": "14c108ee-9137-45fa-8848-17bb81763f9c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c81fcf13-1e87-446e-816f-81d884c38a81", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Quit Smoking - Quit Smoking", + "title": "Symptomfind", + "targetUrl": "symptomfind.com/Quit Smoking" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "TAoUE1tinMK", + "name": "Quit Smoking" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bc673c1a-17bd-40b8-8c77-93a59eeb4c93", + "name": "general", + "startAt": "2017-09-24T19:45:06.092Z", + "endAt": "2019-09-24T19:45:06.092Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "64f7aeed-df41-444a-9dea-eaa5817fe128", + "creativeSets": [ + { + "creativeSetId": "97c4ffa3-05a7-48e3-b7f3-3716d5ecbc45", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fe9c7b72-0975-4814-bc62-38d78f58ce94", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "What is Flu? - Symptoms and Signs", + "title": "SymptomsTips", + "targetUrl": "http://symptoms.tips/flu-influenza-symptoms-check-your-symptoms-and-signs/?utm_source=bing&utm_medium=cpc&utm_campaign=flu" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "n3w9xDIsSzE8", + "name": "cold & flu" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2531af33-3d50-4120-9bce-faef48eed335", + "name": "general", + "startAt": "2017-09-24T19:45:06.644Z", + "endAt": "2019-09-24T19:45:06.645Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ee4f08aa-3b40-4538-8a74-bed270beb020", + "creativeSets": [ + { + "creativeSetId": "70122994-5201-48a0-8c98-432543ce92ec", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "55d88d49-758e-4f82-80ec-64394685a4c4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Coronary heart illness - diabetes - zinkme.com | t.co", + "title": "T", + "targetUrl": "t.co" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "VSR0lepFE8Hw", + "name": "Diabetes Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "17a6adc9-e43b-4622-82c0-66e22083de09", + "name": "general", + "startAt": "2017-09-24T19:45:07.219Z", + "endAt": "2019-09-24T19:45:07.219Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e319db23-fc78-48a4-9677-c4b22364e488", + "creativeSets": [ + { + "creativeSetId": "aac74174-25d0-4682-8193-60165287a76e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "514d30f0-6461-4c93-a58e-f6f0021642e4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Take on Epilepsy - Severe Epilepsy Resources", + "title": "Takeonepilepsy", + "targetUrl": "www.takeonepilepsy.com/Information/Support" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "UzZDN_wdJQzE", + "name": "Epilepsy Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "855a7ff4-8200-4599-91fc-5e84770748df", + "name": "general", + "startAt": "2017-09-24T19:45:07.817Z", + "endAt": "2019-09-24T19:45:07.817Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "209a1a37-1dad-4dff-beaa-1a4b7f25f7ce", + "creativeSets": [ + { + "creativeSetId": "8c94e8ae-995b-4312-bb13-cd1e17c720db", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "46ae78c2-fb39-4de4-a404-1ad851b9fef6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop a wide variety of refreshing juices at TalDepot", + "title": "Taldepot", + "targetUrl": "taldepot.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "lFMT5ZDQdjc", + "name": "Juice Drinks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ccff441c-a06f-4da4-a3d7-5e0d4a7e04c3", + "name": "general", + "startAt": "2017-09-24T19:45:08.374Z", + "endAt": "2019-09-24T19:45:08.374Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b8ca8851-618d-4b2b-9503-ac72b1babd85", + "creativeSets": [ + { + "creativeSetId": "44641665-bee4-4603-a2c6-bebc8b7522af", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "de654c76-8786-4b9b-a841-ebb38b0f834c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Create Social Media Dashboards | With 1400+ Marketing Channels‎", + "title": "Tapclicks", + "targetUrl": "www.tapclicks.com/connector/facebook ‎" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "UBXGkQ3Bdgz4", + "name": "Social Media Analytics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1fcd7c2e-19cb-4fe6-933a-1bfd8b7585a9", + "name": "home", + "startAt": "2017-09-24T19:45:08.942Z", + "endAt": "2019-09-24T19:45:08.942Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f4301066-91ca-41be-9246-156fa8885d3b", + "creativeSets": [ + { + "creativeSetId": "472e26eb-4d96-474b-8411-e0421d0ddabf", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "aa987e83-1425-48ea-9b66-09ec217b8780", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buying Television at Target™ - Save 5% w/ RedCard at Target™", + "title": "Target", + "targetUrl": "www.target.com" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "x3uhuK7aLGkU", + "name": "Buy Television" + } + ] + }, + { + "creativeSetId": "5262b626-a07f-4983-a3d5-4d23a774c1a8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c7ac6563-f55b-461e-9a09-4617965c1608", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Art Frames", + "title": "Target", + "targetUrl": "www.Target.com/HomeDecor" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "18fq9aiLp0z", + "name": "body art" + } + ] + }, + { + "creativeSetId": "68f0ca0f-a5e4-4a53-abbb-4b569381b3d4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0edaad28-5f87-4e6d-b443-f15138a94140", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Brewery Kits", + "title": "Target", + "targetUrl": "www.Target.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "sSHTp7EuwPZ", + "name": "Brewery Kits" + } + ] + }, + { + "creativeSetId": "efeb2999-0fa4-46e0-8705-0037c59fb179", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "52751482-8f40-4918-8ece-93a17cc8b05f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Geography Placemat", + "title": "Target", + "targetUrl": "www.Target.com/Kitchen" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "wz0LfYE3w8k", + "name": "Geography Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fc18b7c1-a40f-48c6-ac22-60a8ec74075c", + "name": "electronics", + "startAt": "2017-09-24T19:45:10.161Z", + "endAt": "2019-09-24T19:45:10.161Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f4301066-91ca-41be-9246-156fa8885d3b", + "creativeSets": [ + { + "creativeSetId": "60d38939-ba2a-465e-a2fc-1763ab0820f8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4926bd9c-0c97-44f6-8059-747fe785fb03", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2 Radio Headsets", + "title": "Target", + "targetUrl": "www.Target.com" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "fRsTAYO2C1M", + "name": "Radio Streaming" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d8b288fa-eb49-4a67-94dc-e481405339c3", + "name": "clothing", + "startAt": "2017-09-24T19:45:10.476Z", + "endAt": "2019-09-24T19:45:10.476Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f4301066-91ca-41be-9246-156fa8885d3b", + "creativeSets": [ + { + "creativeSetId": "dc0fe8e6-7a6d-4bae-9c93-32690e743625", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1457a7f9-8592-479c-ad0b-5b54cdd1e5ac", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Plus Size Clothing Womens", + "title": "Target", + "targetUrl": "www.Target.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "obV7ryiIRW4", + "name": "beauty" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fb024fea-b774-4f75-afc5-65d03722cfc6", + "name": "general", + "startAt": "2017-09-24T19:45:10.809Z", + "endAt": "2019-09-24T19:45:10.809Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f4301066-91ca-41be-9246-156fa8885d3b", + "creativeSets": [ + { + "creativeSetId": "218b1d92-c3af-4f3d-bce7-e2ae91170f47", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "916f787b-64c8-4829-8577-2afd55c5ef37", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Deals Pop - Save 5% w/ RedCard at Target™", + "title": "Target", + "targetUrl": "www.target.com/WeeklyDeals" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "VulAzM57Pkqw", + "name": "Online Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cb65c4cd-08ec-49b7-8c22-27bf2091a0ec", + "name": "health", + "startAt": "2017-09-24T19:45:11.145Z", + "endAt": "2019-09-24T19:45:11.145Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f4301066-91ca-41be-9246-156fa8885d3b", + "creativeSets": [ + { + "creativeSetId": "b2fd3a71-007f-46db-9600-64270ffcb7ec", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "87d4fa40-9ee8-4837-b041-4385cda1eea7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bowel Medicine", + "title": "Target", + "targetUrl": "www.Target.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "2COuQqpVPYdA", + "name": "Bowel Treatment" + } + ] + }, + { + "creativeSetId": "43b0d4da-532f-457e-8073-551b124f39b0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0e02a2b3-56f9-4a53-af9c-18ede3136486", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Gym Books at Target??? - Orders Over $35 Ship Free - target.com", + "title": "Target", + "targetUrl": "www.target.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "Gn19-1NmjlI", + "name": "Exercise Books" + } + ] + }, + { + "creativeSetId": "62ff0bc5-f942-4e43-9704-873708ef26e3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b3892c3d-6a2e-42d8-8177-6807edba9c6a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Target™ - Thyroid Books", + "title": "Target", + "targetUrl": "www.Target.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "Q9F_XhEg8W_", + "name": "Thyroid Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4b622330-e8ab-43ca-bf3e-4440058fd49c", + "name": "books", + "startAt": "2017-09-24T19:45:12.118Z", + "endAt": "2019-09-24T19:45:12.118Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f4301066-91ca-41be-9246-156fa8885d3b", + "creativeSets": [ + { + "creativeSetId": "5edc3db9-fe07-4262-8ecb-1d759c433b46", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e1bec7d8-b5bb-4ba1-98b1-ef51b647992a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "A Books Books at Target™ - Orders Over $35 Ship Free", + "title": "Target", + "targetUrl": "www.target.com" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "WOkWXQNNvUq", + "name": "Christian Books" + } + ] + }, + { + "creativeSetId": "f5a6fe57-9eff-4277-836e-8d537b34fac7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "249e35aa-3787-4df7-9d59-79f942c907bd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "A Books Books at Target??? - Orders Over $35 Ship Free", + "title": "Target", + "targetUrl": "www.target.com" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "EUUwhzvuKC4", + "name": "Islamic Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f3057420-8742-4fbf-b57c-2b7329e3ed40", + "name": "sports", + "startAt": "2017-09-24T19:45:12.688Z", + "endAt": "2019-09-24T19:45:12.689Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f4301066-91ca-41be-9246-156fa8885d3b", + "creativeSets": [ + { + "creativeSetId": "2c44c285-7e73-4651-9dd6-150cf3843c2e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "be50ba1a-fdf7-4fb3-934e-3a6fe8ccbfc8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Bowl Gear", + "title": "Target", + "targetUrl": "www.Target.com/Dining" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "e5hD9xkeyjO", + "name": "Bowling Gear" + } + ] + }, + { + "creativeSetId": "babe1bcc-456b-495d-be15-41040d30138c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "048e725a-497e-41f9-929d-0d4621229b37", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Climber Gear", + "title": "Target", + "targetUrl": "www.Target.com/Toys" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "zJrrQvnmCnp", + "name": "Climbing Gear" + } + ] + }, + { + "creativeSetId": "d24419e2-75fd-4819-9fb5-e0d0903c57fb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "898a1429-cb29-4330-a46c-21f4b9b8555b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Target™ - Darts Supplies", + "title": "Target", + "targetUrl": "www.Target.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "gxL4h38VZWH", + "name": "Darts Supplies" + } + ] + }, + { + "creativeSetId": "4481c120-20c6-42a0-969a-2144179dc90e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "225df8a8-4e90-447b-91e3-8989efb20585", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Target™ - Kayaking Decor", + "title": "Target", + "targetUrl": "www.Target.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "5nUrFtckCYM", + "name": "Kayaking Supplies" + } + ] + }, + { + "creativeSetId": "797eab22-8e0d-4e26-b2d2-6aa2edaf492f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "94024520-675a-4881-b3d6-52d026b15af1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Target??? - Surfing Shirts - 15% Off Everything Today Only!", + "title": "Target", + "targetUrl": "www.target.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "nYUpPvk5Fx7s", + "name": "Surfing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0df93847-ec39-4e59-88af-4f37fcff0369", + "name": "general", + "startAt": "2017-09-24T19:45:14.456Z", + "endAt": "2019-09-24T19:45:14.457Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4d2bde3d-f280-4f88-a94e-e168bf15ddfc", + "creativeSets": [ + { + "creativeSetId": "c2218cd8-86b3-4a58-b168-57bb1194ff09", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1853e332-3c37-4692-9a98-15257fbcbdeb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "File Faster with TaxAct® - $0 to Start, $0 Fed Filing", + "title": "Taxact", + "targetUrl": "www.taxact.com/tax-filing/start-for-free" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "25hWYRpip_l", + "name": "Turbo Tax" + } + ] + }, + { + "creativeSetId": "311f7f71-d1c6-4f5e-b171-a2204c61ab73", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4725f0f6-91da-44fe-8e1c-a8c7eb605314", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fast & Free Tax Filing - Millions Trust TaxAct to File", + "title": "Taxact", + "targetUrl": "www.taxact.com/2017-taxes/file-now" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "mxelJ0wSaYe-", + "name": "E-Tax" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "81029465-ce55-4342-9f40-c5f989677cf9", + "name": "general", + "startAt": "2017-09-24T19:45:15.266Z", + "endAt": "2019-09-24T19:45:15.266Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ca812f27-0887-4693-8814-e161437e83c6", + "creativeSets": [ + { + "creativeSetId": "272dcad5-7dd6-4a62-bd61-389d3be64fcc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cbb2ce14-94d8-4141-bd20-da41d3051cb6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Chinese Medicine, China - Zhongfang County, Huaihua City | tcmtreatment.net", + "title": "TCM Treatment", + "targetUrl": "http://www.tcmtreatment.net/" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "X9m77vhUcfHE", + "name": "alternative medicine" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a7b82f6f-497e-475e-9da5-5e7d39eb8788", + "name": "general", + "startAt": "2017-09-24T19:45:16.878Z", + "endAt": "2019-09-24T19:45:16.878Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0ed62a88-ec7a-4f80-9379-8b0406bd9f64", + "creativeSets": [ + { + "creativeSetId": "987db74a-3519-4fa5-b8ab-cf332130b48d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ee4deb73-ba3b-49f0-bb2d-3288a00df05b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Selective Portfolios From - TD Ameritrade - TDAmeritrade.com", + "title": "TDAmeritrade", + "targetUrl": "TDAmeritrade.com" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "z7floCfZA_P", + "name": "Financial Advisors" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "05fba7c3-11da-4d01-a8a0-e37f20237d2a", + "name": "general", + "startAt": "2017-09-24T19:45:17.447Z", + "endAt": "2019-09-24T19:45:17.447Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1b7f0b22-e1ea-4539-8d79-3d17984a6478", + "creativeSets": [ + { + "creativeSetId": "11ff1467-25f0-478c-8795-89c9d0818055", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "595cef10-e0db-48bd-9631-c3bab4bc36b0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Teachers worksheets | teacherspayteachers.com", + "title": "TeachersPayTeachers.com", + "targetUrl": "https://www.teacherspayteachers.com/?msclkid=c5e8fd72cfb915075990a70a35121255&utm_source=bing&utm_medium=cpc&utm_campaign=Bing%20AGT%20RLSA%20Broad%20Terms&utm_term=teachers%20worksheets&utm_content=KP3" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "2SeOKelI9SgM", + "name": "mathematics" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ed4bb39c-1d49-448c-bf00-dc668a50d1b2", + "name": "general", + "startAt": "2017-09-24T19:45:18.168Z", + "endAt": "2019-09-24T19:45:18.168Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "27d8ccc3-fc84-4d43-9897-2f873055359e", + "creativeSets": [ + { + "creativeSetId": "3bfec07e-54b9-477e-b097-dea3eab2b7cc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d67d91e7-7a7e-46cb-8099-5cfe8851c5fb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sport news - Sport news", + "title": "Techtarget", + "targetUrl": "searchstorage.techtarget.com/Storage/All-Flash" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "3D-SZ1qdKFCP", + "name": "Sports News" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0b5cb2b9-6ac0-42a3-b3eb-ccc17a79ab2c", + "name": "general", + "startAt": "2017-09-24T19:45:18.742Z", + "endAt": "2019-09-24T19:45:18.743Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "62d33461-0ec5-421b-9ff7-0c1c435d86ea", + "creativeSets": [ + { + "creativeSetId": "3fe1b41b-c341-4f55-b0e0-8fa106ce8b7d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "366ae0b8-5ede-4e56-8834-4e9c76a39414", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Low Prices On Used Cars - Great Deals At Ted Britt", + "title": "Tedbritt", + "targetUrl": "www.tedbritt.com/Used-Sales/Car-Deals" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "b4xuJT0IZ_f", + "name": "Used Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "36e221a3-bc60-4466-bd0e-eb380d4ca603", + "name": "general", + "startAt": "2017-09-24T19:45:19.311Z", + "endAt": "2019-09-24T19:45:19.311Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0b8bec70-c5d0-4d7a-ac1f-3154413ca6d5", + "creativeSets": [ + { + "creativeSetId": "fd8821fd-0c29-4f93-a0a3-39a00ec40f07", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e20ef63f-a030-4f08-a530-4e70d919f1c2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Teds Woodworking Plans - Designs, DIY Patterns & Crafts", + "title": "TedsWoodworkingUSA", + "targetUrl": "TedsWoodworkingUSA.blogspot.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "sa6bkvlxwxQ", + "name": "Woodworking Projects" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ff69ae6e-e58f-416a-932d-b6041170b254", + "name": "general", + "startAt": "2017-09-24T19:45:20.074Z", + "endAt": "2019-09-24T19:45:20.074Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2c88b468-591b-4f4e-9ee2-c19a4433417a", + "creativeSets": [ + { + "creativeSetId": "46391585-6c3b-465a-b6bd-155e398d3323", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "791bd08b-5052-4f64-a97d-d885de003c95", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Golfing - TeeOff.com by PGA TOUR® | teeoff.com", + "title": "TeeOff.com", + "targetUrl": "https://www.teeoff.com/search?msclkid=b0d51dc89f40137c1f5847b0074cb752#location=San%20Francisco%20Bay%20Area&view=course&date=2-5-2018" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "LHJ040LnB8Ap", + "name": "golf" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "322e8946-8f0b-4481-9719-58b29f3f6e18", + "name": "general", + "startAt": "2017-09-24T19:45:20.653Z", + "endAt": "2019-09-24T19:45:20.653Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "aac9497b-8a1f-4bb5-aa43-4051633333f0", + "creativeSets": [ + { + "creativeSetId": "876cb347-c445-4606-a690-50c7f92e4ced", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2be8c7e6-9af8-495d-851f-b70aab987d87", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Tenenz | Office Supplies - Tax And Accounting Products", + "title": "Tenenz", + "targetUrl": "www.tenenz.com" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "mxelJ0wSaYe-", + "name": "E-Tax" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "638931fe-4898-454d-ba89-fb04d7ffc617", + "name": "general", + "startAt": "2017-09-24T19:45:21.219Z", + "endAt": "2019-09-24T19:45:21.219Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2bbae868-98ac-4665-88d5-2efc7886e41c", + "creativeSets": [ + { + "creativeSetId": "ea2d9525-64ca-46d8-a1d7-2d2541eab976", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "51577285-38d7-43d0-b510-910d8f1ce45b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Tennis Magazine – Magazine Subscription Offer", + "title": "Tennis Magazine", + "targetUrl": "https://www.com-sub.biz/magazine-subscription/tennis-magazine.html" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "gOXUBa6afii4", + "name": "tennis" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2c28b954-9ed6-4ccc-9df1-222dee6d2b61", + "name": "general", + "startAt": "2017-09-24T19:45:22.044Z", + "endAt": "2019-09-24T19:45:22.044Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "71af9a65-9eec-4f5c-b136-10d2d975d573", + "creativeSets": [ + { + "creativeSetId": "237407b1-591d-4291-9677-d3cc7fd1b417", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4a54a5ec-c6dc-49e7-85e6-55087c152918", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Send Employees to Drug Testing - 5000+ Locations in 50 States", + "title": "Testcountry", + "targetUrl": "testcountry.com/drug_testing/near_you" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "ZFoOZxsAWHI", + "name": "Drug Tests" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "07c83958-604c-4538-8a68-8b15c752fd7b", + "name": "general", + "startAt": "2017-09-24T19:45:22.647Z", + "endAt": "2019-09-24T19:45:22.647Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f7887080-062a-4354-b253-b1ef104cf180", + "creativeSets": [ + { + "creativeSetId": "eb397260-ae86-4147-8f6a-3882d81530b1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c348affe-f777-427f-8ee4-768409e59afc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 10 Testosterone Pills - 2018's Best Testosterone Supps", + "title": "Testosteronesupplements", + "targetUrl": "www.testosteronesupplements.org/Reviews" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "vVZgFB3iWow", + "name": "Bodybuilding Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4a45c677-37c0-44da-a084-a6526a86ab49", + "name": "general", + "startAt": "2017-09-24T19:45:23.247Z", + "endAt": "2019-09-24T19:45:23.247Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9a3af2c9-9300-4a4e-8697-0d3f3e6a02bc", + "creativeSets": [ + { + "creativeSetId": "c8850e15-29ec-409a-8bdd-e33e448373f1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2c6d09fa-4a07-4547-83a6-a80e1668f94b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Nike Golf Apparel - Top Styles At Great Prices", + "title": "Tgw", + "targetUrl": "www.tgw.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wRnrM16xXmY", + "name": "Athletic Clothing" + } + ] + }, + { + "creativeSetId": "13ebf1b3-ab09-4462-8487-f3e8c33170db", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fb0bcefa-4f85-4a88-9348-8c0f9b82647a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Golf Supplies - Top Brand Golf Equipment", + "title": "Tgw", + "targetUrl": "www.tgw.com/GolfEquipment" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "hDQ_wObOKVe", + "name": "Golf Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9f0d07f9-8378-414e-82dd-6454c9aa2fac", + "name": "general", + "startAt": "2017-09-24T19:45:24.083Z", + "endAt": "2019-09-24T19:45:24.083Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7e88e338-91a1-446f-b8af-476136e1ddf0", + "creativeSets": [ + { + "creativeSetId": "ec2d7e3f-27ad-4fca-a1e5-68e688928014", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5f22e317-70f4-4bc3-b49d-c3aebf0468fb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Are You Harboring Toxins? - Learn Now - 45 Second Quiz", + "title": "Th", + "targetUrl": "www.theconsumerauthority.com/toxicity-quiz" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mltw3XEd08nw", + "name": "Health & Fitness Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "20c34f28-90b1-4927-bc6f-cc1a3f50c30b", + "name": "general", + "startAt": "2017-09-24T19:45:24.629Z", + "endAt": "2019-09-24T19:45:24.630Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "75aa0dde-ca30-4296-b547-8068b0303e4a", + "creativeSets": [ + { + "creativeSetId": "62f15d43-9bc4-4056-b297-b70066341e90", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "18c61b31-6407-42bd-9684-5d7c3a507963", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The Art Institutes® - Online Courses Available", + "title": "The Art Institutes", + "targetUrl": "http://lp.aionline.edu/program/interior-design?source=BINGPS&aos=design&programofinterestID=203&og_source=Google&Utm_medium=cpc&matchtype=Broad&school=online&Tac=sem&ven=search&ds_ag=Interior+Design_NB_General_BMM&ds_c=&ds_kids=p14716275061&ds_kid=43700014716275061&ds_k=%2Binterior+%2Bdesign&utm_source=bing&utm_medium=cpc&utm_campaign=Interior%20Design_NB_BMM&utm_term=%2Binterior%20%2Bdesign&utm_content=Interior%20Design_NB_General_BMM&gclid=COjon7aXg9kCFUzkfgodHy8FFA&gclsrc=ds&dclid=CPuKoraXg9kCFcroZAodWvUCZQ" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "pv7ZurvK2KHB", + "name": "interior design" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "802c9dfe-1a9b-4d01-81eb-1e07b43a95a1", + "name": "general", + "startAt": "2017-09-24T19:45:25.218Z", + "endAt": "2019-09-24T19:45:25.218Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "38bbe99f-d421-42cb-87f4-89496158842b", + "creativeSets": [ + { + "creativeSetId": "eae42832-34ff-458e-9a01-0a132b066cb2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0220f1fb-9bae-4422-9c38-f0bf267e525b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Theatre | Stage | The Guardian", + "title": "The Guardian", + "targetUrl": "https://www.theguardian.com/stage/theatre" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "7XD2Z77RCfwk", + "name": "theatre" + } + ] + }, + { + "creativeSetId": "9869efd2-14a6-4504-879c-aba1c65c0aa9", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "23d58494-82d0-49a6-83c9-5b9f181ebf89", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Gay marriage | Society | The Guardian", + "title": "The Guardian", + "targetUrl": "https://www.theguardian.com/society/gay-marriage" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "7vf5uWjLmchs", + "name": "gay life" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e8a9cfd1-7e11-4ef6-a8c3-e4d20fb6a2e6", + "name": "general", + "startAt": "2017-09-24T19:45:26.316Z", + "endAt": "2019-09-24T19:45:26.316Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3dd60559-8561-405e-b4a2-c59d2c04cb4f", + "creativeSets": [ + { + "creativeSetId": "91e7c096-7278-4bc3-acb6-f6bf0932a096", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "27a4b352-dce4-41bb-b7d4-d7825c4b12de", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rugby - All Rugby. All the Time. | therugbychannel.tv", + "title": "The Rugby Channel", + "targetUrl": "http://www.therugbychannel.tv/?utm_source=ReachLocal&utm_medium=CPC&utm_campaign=TheRugbyChannel&scid=3416486&cid=2446342&tc=18020510202558080&rl_key=3a47086917f62bd2dada45f493fc4af5&kw=27062956:0&pub_cr_id=77721779169265&dynamic_proxy=1&primary_serv=www.therugbychannel.tv&rl_track_landing_pages=1&rl_retarget_none=38_310037_1#!" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "0N8e3PZZCsLu", + "name": "rugby" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "63bae30a-7619-4178-8006-38aad2f0fe3b", + "name": "general", + "startAt": "2017-09-24T19:45:26.907Z", + "endAt": "2019-09-24T19:45:26.908Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d63a451a-86e4-41b1-9f08-27c51445bb69", + "creativeSets": [ + { + "creativeSetId": "34e30df7-2c6b-44d3-b6c0-8d04cf331347", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e398a0ba-357e-43ad-82ba-cf6b4acd4062", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Snowboards & Gear - No Sales Tax & Free Shipping", + "title": "The-House", + "targetUrl": "The-House.com/Snowboard-Retailer" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "7kNV7uZ9Ium", + "name": "Skiing Supplies" + } + ] + }, + { + "creativeSetId": "5dab40a7-db68-4e04-85ae-d9914297039b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "83449647-eaa4-4644-9d02-fa2db9c798a6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Snowboards & Gear | The-House.com", + "title": "The-House", + "targetUrl": "www.The-House.com/Snowboard-Gear" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "--yzN6s96hZD", + "name": "Snowboarding Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1cc77017-d6b3-4f9a-b89f-ecb5e7d62978", + "name": "general", + "startAt": "2017-09-24T19:45:27.725Z", + "endAt": "2019-09-24T19:45:27.725Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6d80e3ad-59f4-4ae7-b393-1f16670e7365", + "creativeSets": [ + { + "creativeSetId": "6ea8a55f-3a01-4c1d-969d-f6622cbecbb5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b62a8ac4-c70c-4b86-b848-0ce0c8d72b9a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Discover Martini Recipes - On TheBargains.store", + "title": "Thebargains", + "targetUrl": "www.thebargains.store/Recipes" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "EpjpWnjpgxV", + "name": "Drink Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "28a6f2ef-08d2-4f06-b20a-18899ed08a9b", + "name": "general", + "startAt": "2017-09-24T19:45:28.292Z", + "endAt": "2019-09-24T19:45:28.292Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bd79e4a8-2810-47bc-82f1-a4b3df617c33", + "creativeSets": [ + { + "creativeSetId": "37ac8435-f82c-402f-af1f-d081b75f5400", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "794345a1-d535-4680-a159-5a319d780d6d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sports Experts win 65% w/ our handicapping system!", + "title": "Thebestbetonsports", + "targetUrl": "thebestbetonsports.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "F7q5REWSRoB", + "name": "Sports Betting" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4429ae09-2016-4463-a6fb-670d0b3ecec0", + "name": "general", + "startAt": "2017-09-24T19:45:28.870Z", + "endAt": "2019-09-24T19:45:28.870Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "607bbc29-381a-4b98-b2c4-57b2af42a612", + "creativeSets": [ + { + "creativeSetId": "da40063d-4d95-407c-b963-5a58353911c4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "45e958ab-59dc-4688-9b79-50a808d0d4d3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Stunning Pearl Jewellery - The Fine Jewellery Company™", + "title": "Thefinejewellery", + "targetUrl": "www.thefinejewellerycompany.com/Pearl-Jewellery" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a80a0b73-abbb-4946-aa04-b5aa2f844df7", + "name": "general", + "startAt": "2017-09-24T19:45:29.487Z", + "endAt": "2019-09-24T19:45:29.488Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6c151495-3357-4563-b438-266a55d04793", + "creativeSets": [ + { + "creativeSetId": "ac777d25-212c-4c39-b5db-1cd5ece52fd3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "acb8abb4-f871-45b0-837d-fd0af9c07fec", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Petzl at TheFireStore - The First Responder Superstore", + "title": "Thefirestore", + "targetUrl": "www.thefirestore.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "zJrrQvnmCnp", + "name": "Climbing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ded0f71c-5652-43de-81e5-82c6ba2d9c5f", + "name": "general", + "startAt": "2017-09-24T19:45:30.147Z", + "endAt": "2019-09-24T19:45:30.147Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "58ae0790-ae6a-4b42-b16e-2f6ebe8581c0", + "creativeSets": [ + { + "creativeSetId": "05ee4881-0622-40c7-8ede-d06ce825cd3b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f8a4c943-d156-4c3d-a5b2-fe62da1c47ee", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Homeschool Biology Course - Biology - The Science of Life", + "title": "TheGreatCoursePlus", + "targetUrl": "www.thegreatcoursesplus.com/biology/course" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "zVMz-LlY_xf", + "name": "Biology Education" + } + ] + }, + { + "creativeSetId": "3c218e47-bbc8-4b33-ac71-f577b0f96329", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "eeda4826-c9e5-49f5-bfb8-ba5f73d3aeb9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online Chemistry Course - Chemistry Courses & Lectures", + "title": "TheGreatCoursePlus", + "targetUrl": "www.thegreatcoursesplus.com/chemistry/course" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "Q1LjD-it3o5", + "name": "Chemistry Education" + } + ] + }, + { + "creativeSetId": "2c3bfaed-975b-424c-8c4c-b3967c39ed1d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5e9bd947-37a8-4bda-831f-2deff327a5b2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Homeschool Algebra 1 - Key Concepts Fully Explained", + "title": "TheGreatCoursePlus", + "targetUrl": "www.thegreatcoursesplus.com/Algebra 1/Course" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "o7RiTeSPDIyu", + "name": "Mathematics worksheets" + } + ] + }, + { + "creativeSetId": "70e987d9-a00a-4cce-af49-7edefbc869fa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "39c98d08-edf9-446d-8cd0-2b6120341142", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Science Courses Online - Science Videos and Lectures", + "title": "TheGreatCoursePlus", + "targetUrl": "www.thegreatcoursesplus.com/Science/Courses" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "UFzEkc76aqX", + "name": "Science News" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9a50b72e-d60e-4df3-8f92-e58482fffbb0", + "name": "general", + "startAt": "2017-09-24T19:45:31.650Z", + "endAt": "2019-09-24T19:45:31.650Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "db58fb4b-394e-4135-904c-b90690379d31", + "creativeSets": [ + { + "creativeSetId": "8c75d1d0-bdd8-4969-8ad5-a2fae6bf0cf7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0860c6d9-2519-4e17-86e7-023af57c2085", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Stunning Akoya Pearl Jewelry - Save 75% on Stunning Pearls.", + "title": "Thepearlsourcecouk", + "targetUrl": "www.thepearlsource.co.uk/akoya/pearls" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "30950ea8-0757-4b67-84f9-032c9269ede1", + "name": "general", + "startAt": "2017-09-24T19:45:32.455Z", + "endAt": "2019-09-24T19:45:32.456Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ffd06a5f-5ff9-45b7-bc3f-76b87e154858", + "creativeSets": [ + { + "creativeSetId": "78d9c408-325f-49ed-92db-bc856cacc6bb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "50e5e986-8791-4f48-8171-0997a4887925", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "No Budget or Accountability? - Financial Freedom Awaits", + "title": "Thepersonalfinancecoach", + "targetUrl": "www.thepersonalfinancecoach.org" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "KclHbUft33H", + "name": "Personal Finance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2d86b021-ede8-4843-be21-77cf567bd004", + "name": "general", + "startAt": "2017-09-24T19:45:33.053Z", + "endAt": "2019-09-24T19:45:33.053Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b55ffbdd-c714-4817-a50d-656ac6a050be", + "creativeSets": [ + { + "creativeSetId": "09e09b24-0836-47db-b2fe-ae470c865e7d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e0a94836-e7b9-4a25-a500-f4ceddaab2bc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Houston Divorce Attorneys | tholstruplaw.com", + "title": "Tholstruplaw", + "targetUrl": "www.tholstruplaw.com" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "E_MEtpVexy1", + "name": "Find a Lawyer" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a5cdb01c-b256-454f-b4fa-ffcc61693616", + "name": "general", + "startAt": "2017-09-24T19:45:33.719Z", + "endAt": "2019-09-24T19:45:33.719Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ac6ded47-0d63-4a08-919b-47c9ebb83812", + "creativeSets": [ + { + "creativeSetId": "f85e3e9c-b04c-488e-8c82-e6e28bbde763", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6d51d40b-95f5-4ade-8c23-91c4f58a663c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Archaeology: How Ancient Relic Hunting Became Science", + "title": "ThoughtCo", + "targetUrl": "https://www.thoughtco.com/the-history-of-archaeology-171205" + } + } + ], + "segments": [ + { + "code": "5G4C9Gbl_AF", + "name": "History" + }, + { + "code": "svRaBrEV99uD", + "name": "archaeology" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "37ba0c10-867b-4dc7-9038-227e24b38f61", + "name": "general", + "startAt": "2017-09-24T19:45:34.294Z", + "endAt": "2019-09-24T19:45:34.295Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ce88cb66-2df3-4930-930b-2af6681b20e9", + "creativeSets": [ + { + "creativeSetId": "8a7ed7fc-5fd1-4bf9-89ed-3ee9826b96f7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b11a63dc-63f7-4b61-a5b3-195560f3d187", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop ThreadArt - Lowest Price & Free Ship Offer", + "title": "ThreadArt", + "targetUrl": "http://www.threadart.com/" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "LAkBIuEiRXb_", + "name": "needlework" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b0499c01-747f-489a-b73d-4df055cce96b", + "name": "general", + "startAt": "2017-09-24T19:45:34.851Z", + "endAt": "2019-09-24T19:45:34.851Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1c4be78f-5a86-47ce-8ad7-f873dc63871e", + "creativeSets": [ + { + "creativeSetId": "0e2fd183-2138-4d95-a48a-7014e17d00fb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3d66d78d-b2f5-4082-9067-7db069165367", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "thredUP.com Official Site - Like-New Womens Clothes", + "title": "Thredup", + "targetUrl": "www.thredup.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "obV7ryiIRW4", + "name": "beauty" + } + ] + }, + { + "creativeSetId": "3a5c0ec8-a7cd-4c6d-ac62-411c37b35b75", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bad01482-5d33-4152-b961-687881669a4b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Athletica Clothes - Like-New Clothes Up to 90% Off", + "title": "Thredup", + "targetUrl": "www.thredup.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wRnrM16xXmY", + "name": "Athletic Clothing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a8e052e8-738a-46a8-9153-27886f186e62", + "name": "general", + "startAt": "2017-09-24T19:45:35.700Z", + "endAt": "2019-09-24T19:45:35.700Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "067a7527-8897-43a0-932e-d4b2dae21bd5", + "creativeSets": [ + { + "creativeSetId": "20bd452a-36e8-4d88-8001-c669ac1fa0fc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a916588d-d767-49f5-a7f2-65a3cae90562", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 6 Thyroid Treatments", + "title": "Thyroidremedy", + "targetUrl": "thyroidremedy.com/Top-2017" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "Q9F_XhEg8W_", + "name": "Thyroid Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "927a383b-bc7b-4e68-9287-b340e407974f", + "name": "general", + "startAt": "2017-09-24T19:45:36.444Z", + "endAt": "2019-09-24T19:45:36.445Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c5495a2d-a6cc-45a2-90f5-28a52ae659a3", + "creativeSets": [ + { + "creativeSetId": "532efd17-2852-4cc7-b53f-3275c974cf95", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d8018010-4a2a-47aa-b0ae-bfa620dacf47", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Investing with Robo Advisor - TIAA® Personal Portfolio | tiaa.org", + "title": "TIAA", + "targetUrl": "https://www.tiaa.org/public/land/personal-portfolio?tc_mcid=se_tppbau18_bing_71700000024919555_58700002736469352_76072498194011_personal+financial+investing_c_e" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "XoEKKv5PqWWf", + "name": "banking" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e68a5163-23ce-47c2-806b-4647c33d1c4f", + "name": "general", + "startAt": "2017-09-24T19:45:37.043Z", + "endAt": "2019-09-24T19:45:37.043Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "92ed7f61-aa85-4a8d-b15a-79c205a9ded4", + "creativeSets": [ + { + "creativeSetId": "b16d7879-9c9c-415d-aab5-fb362fca6b8b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "989358cf-c2b7-4572-bce2-db700947bc96", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy 2018 Boxing Tickets - Get Tickets to Any Fight", + "title": "TicketNetwork", + "targetUrl": "www.ticketnetwork.com/Boxing" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "mqSw-gRLA7p", + "name": "Boxing Tickets" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "859d2d17-d649-4b81-8853-c52a0127d0c2", + "name": "general", + "startAt": "2017-09-24T19:45:37.642Z", + "endAt": "2019-09-24T19:45:37.642Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "61308a92-aca2-48df-8255-f75039a5a290", + "creativeSets": [ + { + "creativeSetId": "efa39e06-5635-4568-b752-d0fd27d0412d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "971bc7a6-ef0c-409b-8245-ae29c955fd07", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Only at TickPick.com - TickPick - No Fee Tickets | tickpick.com", + "title": "Tickpick", + "targetUrl": "www.tickpick.com/Tickets/No-Fees" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "mqSw-gRLA7p", + "name": "Boxing Tickets" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1a3df929-8a6d-4893-bce3-322cb87833be", + "name": "general", + "startAt": "2017-09-24T19:45:38.437Z", + "endAt": "2019-09-24T19:45:38.438Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "adcd961c-373f-4f38-b13a-778b37b97316", + "creativeSets": [ + { + "creativeSetId": "75322e86-03d8-4872-92c5-91758d6d1e48", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "24e6d3c1-be2d-4fe3-ae2c-7e44634e62f5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "AI Sports Nutrition | tigerfitness.com", + "title": "Tigerfitness", + "targetUrl": "www.tigerfitness.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "lWAbLH7wUoL", + "name": "Nutrition Shop" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3ce78082-ebc5-4f5c-ad03-fccc711d3caf", + "name": "general", + "startAt": "2017-09-24T19:45:39.034Z", + "endAt": "2019-09-24T19:45:39.034Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2b3c9942-8cc6-46f6-8634-194444aed3e3", + "creativeSets": [ + { + "creativeSetId": "f3ced8f9-33f0-4b5f-aadb-8a877329daf8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "419ceec3-97bc-491d-bdac-ecd113b33233", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Meal Prep Delivery | Basalt - Tiny Chef Creations LLC - Hungry", + "title": "Tinychefcreations", + "targetUrl": "www.tinychefcreations.com/menu" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "RjX-wPWa8Z_f", + "name": "Meal Deliveries" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5375f516-04f1-4dfb-bb23-9f3770b9b55e", + "name": "general", + "startAt": "2017-09-24T19:45:39.614Z", + "endAt": "2019-09-24T19:45:39.614Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5c4ab0d8-23d7-4ff7-a505-a9d4a616e713", + "creativeSets": [ + { + "creativeSetId": "19aad306-6e89-4e85-ba42-9f8231ccab8d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "121f5a6a-1126-4844-8f59-5e6ce5eb837a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sex Toys at Tootimid.com - Discreet shipping", + "title": "TooTimid", + "targetUrl": "www.TooTimid.com" + } + } + ], + "segments": [ + { + "code": "BLz4HWBCFN", + "name": "Adult" + }, + { + "code": "l3UPx578DUq", + "name": "Adult Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6a3aed25-1900-4691-9a3d-3a2eac8bb472", + "name": "general", + "startAt": "2017-09-24T19:45:40.237Z", + "endAt": "2019-09-24T19:45:40.238Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1186d013-f559-4c5a-9fc8-2b3f54c2f72c", + "creativeSets": [ + { + "creativeSetId": "fa19c50e-ccb2-4d19-b8d6-0922797f7a75", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "15419471-2c60-4cd8-b4a4-82cc86e8838a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 10 eCommerce Websites - Top Online Store Builders", + "title": "Top10", + "targetUrl": "www.Top10eCommerceSiteBuilders.com/Online Store/Builders" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "zgMSYI-gfMo", + "name": "eCommerce Websites" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9def844d-8b86-4eab-9c00-4ef47d3fef44", + "name": "general", + "startAt": "2017-09-24T19:45:40.848Z", + "endAt": "2019-09-24T19:45:40.849Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "26dc8ecd-5354-4002-a674-dabb12c5816f", + "creativeSets": [ + { + "creativeSetId": "bf92ba14-4d34-4df7-a1ce-dfb6ff8e3e6c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8265ae72-bf18-442a-8945-5c33cb88bb27", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 10 Dating Sites of 2018 - Try Sites That Actually Work.", + "title": "Top10bestdatingsites", + "targetUrl": "www.top10bestdatingsites.com/BestSites2018/ExpertsPicks" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "MHIWE-lPdQmA", + "name": "Dating" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8864c191-f69c-439b-9bdd-0353b94791d2", + "name": "general", + "startAt": "2017-09-24T19:45:41.470Z", + "endAt": "2019-09-24T19:45:41.470Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7a3436d8-a45c-4d71-97ec-f90f7390bb6a", + "creativeSets": [ + { + "creativeSetId": "a188eefb-2548-4ada-a6df-4b0250735858", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "aea2c66d-fe40-42e0-91a2-aa50c5a5e588", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Food Meal Deliveries 2018 - Real & Healthy Food. Delivered", + "title": "Top10bestmealdelivery", + "targetUrl": "www.top10bestmealdelivery.com/MealPlans/FoodDelivery" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "YnihSiXSdRZ", + "name": "Food Delivery" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8f758a66-7582-4c41-afba-bdfb00ae036d", + "name": "general", + "startAt": "2017-09-24T19:45:42.474Z", + "endAt": "2019-09-24T19:45:42.474Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9da464ab-fa3e-4caf-82a8-eba7a4c3c61a", + "creativeSets": [ + { + "creativeSetId": "458ae4a1-5f36-4164-b1b5-e60be6b03b55", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a7f3cfa7-8293-4c88-bf5f-4acaf07533c8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "10 Best Christian Dating - Put Some Faith in Your Dating", + "title": "Top10christiandating", + "targetUrl": "www.top10christiandating.com/ChristianDating/OnlineDating" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "tEYym_TVzMg", + "name": "Christian Meet" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d39b5ccd-933f-4568-b5b8-cc54aefa9ab5", + "name": "general", + "startAt": "2017-09-24T19:45:43.083Z", + "endAt": "2019-09-24T19:45:43.083Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8e56844c-ee9c-4aab-a5db-1782dd07a050", + "creativeSets": [ + { + "creativeSetId": "a9f4d8cc-1cea-4675-bdef-29181710f4b2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d2e1651e-155a-495b-be07-219f380b8def", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "10 Best Refinance Rates 2018 - Refinance Your House & Save", + "title": "Top10mortgageloanrefinance", + "targetUrl": "www.top10mortgageloanrefinance.com/HomeRefinance/Top 10" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "dtTKtVFdpje", + "name": "Refinance" + } + ] + }, + { + "creativeSetId": "d75a28bb-f5b5-47cc-91d0-310013a874ac", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "552db574-43c1-4119-950e-dac4441582fa", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "10 Best Home Refinance Lenders - Fixed Rates As Low As 4%", + "title": "Top10mortgageloanrefinance", + "targetUrl": "www.top10mortgageloanrefinance.com/HomeRefinance/Top 10" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "ME0864i1Nfkc", + "name": "Refinance Home" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "31baaf7e-ec2e-4302-84c0-cd6f331b9647", + "name": "general", + "startAt": "2017-09-24T19:45:44.072Z", + "endAt": "2019-09-24T19:45:44.072Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6f901824-cd87-4e6b-a0b9-391985b172b0", + "creativeSets": [ + { + "creativeSetId": "0140e7c3-0002-4661-8756-bab8c987e922", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "090fd2d6-026c-4675-805c-ed2475956995", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "10 Best Personal Loan Offers - From 2.19% APR - 24hr Approval", + "title": "Top10personalloans", + "targetUrl": "www.top10personalloans.com/Personal Loan/Compare" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "BwhnRpkM8sF", + "name": "Personal Loans" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d87a67e3-38bd-4e20-a150-8329dd3be9a1", + "name": "general", + "startAt": "2017-09-24T19:45:45.548Z", + "endAt": "2019-09-24T19:45:45.549Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d076772c-b2b2-4ad0-92b0-ecf3b9677a2f", + "creativeSets": [ + { + "creativeSetId": "7f45be85-5fee-4602-94d6-3ac5a564d5f1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "96298e7e-77bb-4718-8f34-b2252ccfd0ec", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 10 Weight Loss Diet Plans - 2018 Best Weight Loss Programs", + "title": "Top10weightlossplans", + "targetUrl": "www.top10weightlossplans.com/BestPlans/WeightLoss" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "417612ee-e075-4a5f-9591-9643bb6aaf78", + "name": "general", + "startAt": "2017-09-24T19:45:46.376Z", + "endAt": "2019-09-24T19:45:46.376Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "927912f6-40a7-4c60-bf40-06b31033dbae", + "creativeSets": [ + { + "creativeSetId": "dc92c5d1-89e9-4bf8-888a-61c60ca75429", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5e4b4956-7449-4360-a3f2-4d5cd9f4be34", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best CRM Database Software - Start Your Free Trial Today", + "title": "Top5-crm", + "targetUrl": "top5-crm.com/CRM-Database" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "P2WrQgJRNfq", + "name": "Compare Databases" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "343b61bc-c30f-4764-8175-b5e9414511f2", + "name": "general", + "startAt": "2017-09-24T19:45:46.945Z", + "endAt": "2019-09-24T19:45:46.946Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b9a3f7af-86ce-426c-8892-ac3a5caeb8bd", + "creativeSets": [ + { + "creativeSetId": "be00cbbc-962d-430a-a0a3-5aa5f336f04b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "399a2a04-98b5-44eb-965d-347901751e87", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Project Management Software - Get More Than Just a Software", + "title": "Top5projectmanagement", + "targetUrl": "top5projectmanagement.com/Software" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "P9Lfpxf-FV6", + "name": "Management Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f36fc437-ea2c-4a6b-a6cc-4ac11a10a6fc", + "name": "general", + "startAt": "2017-09-24T19:45:47.520Z", + "endAt": "2019-09-24T19:45:47.520Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4bedfa8b-1c00-4d8f-a7cb-da0aa96379ca", + "creativeSets": [ + { + "creativeSetId": "b4be76ca-2896-4e60-a6ec-956153ebaba8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "277cf5d3-0dff-41e7-8dca-eb083fd89d9e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Protein Shakes - Compare Protein Offers Online", + "title": "Topdealfinder", + "targetUrl": "www.topdealfinder.club/protein-shakes" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "2SU6dGfT9-t", + "name": "Protein Shakes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "28e2d8e1-c359-47eb-a527-706651c5ed1b", + "name": "general", + "startAt": "2017-09-24T19:45:48.295Z", + "endAt": "2019-09-24T19:45:48.295Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "78f1b6c2-1fc9-4d9b-aeb2-74a3a5be235a", + "creativeSets": [ + { + "creativeSetId": "8203a342-7c66-4a0c-a8d6-838aa09d6dff", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b49ea773-b856-4a46-a2fa-1a565bef7881", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2018 ShȧrksTȧnks Dieting At $5 - Lose Up To 24 Lbs In 3 Weeks!", + "title": "TopDietFormula", + "targetUrl": "TopDietFormula.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "aQGewv5ybwZ", + "name": "Dieting Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5be3060a-23c6-4d6d-ac82-06fc284d53a8", + "name": "general", + "startAt": "2017-09-24T19:45:48.913Z", + "endAt": "2019-09-24T19:45:48.914Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "15b13e30-bc72-4ce1-a0b5-ebe345a05019", + "creativeSets": [ + { + "creativeSetId": "b04babc7-c834-4191-89f9-7344211f0a93", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5098cebe-e669-49fa-83e1-e8bfe991d6d5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top Sport Capper in Las Vegas - Premium Picks at Low Price", + "title": "Topdogsportscapping", + "targetUrl": "topdogsportscapping.net" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "F7q5REWSRoB", + "name": "Sports Betting" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ba2a3660-8075-4c4c-82ec-d4ff34d38720", + "name": "general", + "startAt": "2017-09-24T19:45:49.675Z", + "endAt": "2019-09-24T19:45:49.675Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "33b1ee0c-5658-4dd0-85cc-d24929bc7d75", + "creativeSets": [ + { + "creativeSetId": "f7755c2a-1eca-4787-972c-caaafe7e8742", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9722bf19-4bd8-48cb-8ae8-c1fb3234e87e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Asthma Medications Chart - Read More About Asthma", + "title": "Topics.emedicinehealth", + "targetUrl": "topics.emedicinehealth.com/Asthma" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "FFlMXuImzk5", + "name": "Asthma Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5ceb6c5d-ddd1-4273-94c9-b2a9eca81ec3", + "name": "general", + "startAt": "2017-09-24T19:45:50.317Z", + "endAt": "2019-09-24T19:45:50.317Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ce018909-d48e-482a-9922-7dd50daced0a", + "creativeSets": [ + { + "creativeSetId": "665fd22c-bf68-44fd-9825-ac79fe4c9390", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "495512d6-6347-4d91-b10c-1a7e3e553167", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Top 10 Fleet Fuel Cards - Best Results Here - topics.forbes.com", + "title": "Topics.forbes", + "targetUrl": "topics.forbes.com/FleetCards" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "OAA-T668LRa", + "name": "Fuel Cards" + } + ] + }, + { + "creativeSetId": "76b0615c-af54-47fd-b016-28d1a38ad54d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "24fc5bf4-9d26-4356-b5a7-ef15b71afed2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Learn How To Invest - Most Relevant Results!", + "title": "Topics.forbes", + "targetUrl": "topics.forbes.com/Info" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "_PEMAp6RE_k9", + "name": "Learn Stocks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4a090efb-75f6-4455-8931-2f0bae6d19dd", + "name": "general", + "startAt": "2017-09-24T19:45:51.317Z", + "endAt": "2019-09-24T19:45:51.317Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "89a36a13-d162-423f-9d07-e612ba01de90", + "creativeSets": [ + { + "creativeSetId": "5be95c4a-c95e-4334-a9a2-386841448b2b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4d5574c9-83f2-4420-8ce0-64b70707a7ba", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Medicine For Chronic Pain - All You Want To Know", + "title": "Topics.healdove", + "targetUrl": "topics.healdove.com/Chronic+Pain" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "RhUDc8iP5Xa", + "name": "Chronic Pain Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b4cf1563-031c-484d-a9fd-6c65e795e6c2", + "name": "general", + "startAt": "2017-09-24T19:45:52.167Z", + "endAt": "2019-09-24T19:45:52.168Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c78e12e0-09a8-4902-a993-7761a19be1df", + "creativeSets": [ + { + "creativeSetId": "76d11ee7-b26b-4616-8da4-0f526effb281", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "16e3e966-6991-4333-b5b0-9dcc028c3074", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fishing Gear - Compare Todays Offers.", + "title": "Topstores", + "targetUrl": "topstores.net/Fishing-Gear/Limited-Offers" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "tAc14oAedDq", + "name": "Fishing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c08c24f4-4c4f-498c-aa5a-1faf64e1c9d1", + "name": "general", + "startAt": "2017-09-24T19:45:53.031Z", + "endAt": "2019-09-24T19:45:53.032Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "51320ff4-d107-4c2d-8ba8-ae3ebb652a4d", + "creativeSets": [ + { + "creativeSetId": "771cefca-a72c-4a65-ab13-06fc1309c101", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8a1aa973-54a9-4530-a91e-5f99680012ad", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Juicers - Compare Todays Offers.", + "title": "Tos", + "targetUrl": "topstores.net/Juicers/Limited-Offers" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "lFMT5ZDQdjc", + "name": "Juice Drinks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a7584167-0942-4516-b31e-4c95d4a25248", + "name": "general", + "startAt": "2017-09-24T19:45:53.877Z", + "endAt": "2019-09-24T19:45:53.878Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f2c57c07-1849-47b0-a18a-02b4697a2e58", + "creativeSets": [ + { + "creativeSetId": "e3648574-eafa-4b3b-bff7-4bf6c6799aa8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "67657c23-7e7b-4f1d-9a85-2f60f3e4cee2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Local Guides & Private Tours - tourHQ.com", + "title": "Tourhq", + "targetUrl": "www.tourhq.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "gZf_z0XI7OC9", + "name": "Local Guides" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "af125838-663d-49b1-abe9-8d366c28e845", + "name": "general", + "startAt": "2017-09-24T19:45:55.255Z", + "endAt": "2019-09-24T19:45:55.255Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6ff653a3-d2ef-4d74-af93-44fae7128cc5", + "creativeSets": [ + { + "creativeSetId": "87a7fd30-ecbd-4f5d-a70a-4fbb05fe6d59", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d96bff28-baac-43e4-94ce-5d9f6c52f29c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Escorted Tours 40% Off - Best Price & Service Guarantee", + "title": "Tourvacationstogo", + "targetUrl": "tourvacationstogo.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "lvYt-vwY0ml", + "name": "Travel Tours" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e3c676ae-086a-40f5-bb0c-863df0bb24e8", + "name": "general", + "startAt": "2017-09-24T19:45:55.825Z", + "endAt": "2019-09-24T19:45:55.825Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "98733d1d-c833-4056-b069-cda445dca891", + "creativeSets": [ + { + "creativeSetId": "0dd4bd10-2c29-4538-92ae-2d8c150640cf", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ec764841-6baf-4844-aeef-1b26e1aafeaf", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Tractor Supply® Official Site - Free Shipping, Easy Returns", + "title": "Tractorsupply", + "targetUrl": "www.tractorsupply.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "kORnSRyr0FJ", + "name": "Metalwork Supplies" + } + ] + }, + { + "creativeSetId": "3387929f-038d-4d6a-8d44-bfb3cad8b575", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "af37d4d1-e6e1-41d2-bb31-99ea52100e79", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Tractor Supply?? Official Site - Free Shipping, Easy Returns", + "title": "Tractorsupply", + "targetUrl": "www.tractorsupply.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "5rrqOyiLvSS", + "name": "Hunting Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "19779ef5-0a84-4b39-a611-3df2cc88043a", + "name": "general", + "startAt": "2017-09-24T19:45:56.780Z", + "endAt": "2019-09-24T19:45:56.780Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "36b016ce-9e42-4804-8a00-eb3a80c81324", + "creativeSets": [ + { + "creativeSetId": "4d3e481a-a528-413c-a848-46661abd1249", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "751b1665-627d-4575-828b-e63d4749abca", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "TradeStation Mobile - Trade On Our Easy-To-Use App", + "title": "Tradestation", + "targetUrl": "www.tradestation.com" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "_PEMAp6RE_k9", + "name": "Learn Stocks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5376d3b1-e93a-47ea-8bea-bc01857dec14", + "name": "general", + "startAt": "2017-09-24T19:45:57.378Z", + "endAt": "2019-09-24T19:45:57.378Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7c59f973-c191-4295-a7a6-02d170c0f3a9", + "creativeSets": [ + { + "creativeSetId": "8683a899-2d1d-4628-b4c6-9574fda754ce", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "22b1ba30-6288-454c-a7ad-f8c6bcaca85d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online Trading Academy??", + "title": "Tradingacademy", + "targetUrl": "tradingacademy.com/freeworkshop" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "_PEMAp6RE_k9", + "name": "Learn Stocks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4939195b-72f2-4ede-82b4-1a0c7d28d15a", + "name": "general", + "startAt": "2017-09-24T19:45:58.297Z", + "endAt": "2019-09-24T19:45:58.297Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f72c9078-d020-4c44-ba90-faaaf8b4451f", + "creativeSets": [ + { + "creativeSetId": "450aafd2-0810-4137-813e-14cabf8734b3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b4853073-84e4-40f5-a4f5-246737df17cb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Amtrak Schedules & Tickets - Get Routes, Times, & Fares", + "title": "Transitguide", + "targetUrl": "transitguide.co/train/schedule" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6dab1nE-Ik7", + "name": "Train Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4a2a8a83-d469-478d-9df2-192484ce61e4", + "name": "general", + "startAt": "2017-09-24T19:45:58.888Z", + "endAt": "2019-09-24T19:45:58.889Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4b0b9bf3-0945-494d-b851-6a038fae7e17", + "creativeSets": [ + { + "creativeSetId": "a7c77b1f-11b5-4191-94ea-8e45d6f4980b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4e9ed276-8aac-41d7-bede-cbf558cceab5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Go Fishing In Alberta - Plan Your Trip To Canada Now", + "title": "Travelalberta", + "targetUrl": "www.travelalberta.com/Alberta-Canada/Fishing" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "tAc14oAedDq", + "name": "Fishing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "064d190e-7913-455a-adde-c49232cd7bfe", + "name": "general", + "startAt": "2017-09-24T19:45:59.488Z", + "endAt": "2019-09-24T19:45:59.489Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "469a70dc-3919-4cc1-949e-0db2987b93a7", + "creativeSets": [ + { + "creativeSetId": "bdba8907-5bec-4c4d-bccc-76904d39b8c3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1996ec8e-44f0-46d7-a8e8-fe94fb5faa11", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Travelers® Car Insurance - Travelers Could Save You $547.", + "title": "Travelers", + "targetUrl": "www.travelers.com" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "oYzWfQaOXCj", + "name": "Car Insurance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6c1baf4d-174d-4422-9762-ae8e285e3c53", + "name": "general", + "startAt": "2017-09-24T19:46:00.084Z", + "endAt": "2019-09-24T19:46:00.085Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "648cfd30-e219-44c9-88a1-1949dc2e2eaf", + "creativeSets": [ + { + "creativeSetId": "5900a72d-b35a-4bba-8782-8fb629f6c1ba", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "50b4c026-ba3d-4c74-a14c-fb732f89738d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Travelocity® Travel Site - Travelocity.com", + "title": "Travelocity", + "targetUrl": "https://www.travelocity.com/Vacation-Packages?SEMCID=TRAVELOCITY-US.UB.BING.GT-c-EN.PACKAGE&semdtl=a1248004655.b11466033481.d1%7bcreative%7d.e1c.f1%7badposition%7d.g1kwd-100009635889:loc-190.h1e.i1.j143940.k1.l1s.m1.n1%7bplacement%7d&gclid=CNjn3NLKidkCFe2rZQodzvQBjQ&gclsrc=ds" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "llDYo3i3GPhc", + "name": "travel" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b90a94b4-f662-448d-be20-bd9095f4f7d9", + "name": "general", + "startAt": "2017-09-24T19:46:00.685Z", + "endAt": "2019-09-24T19:46:00.686Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1be3eb21-2abc-4202-a1f9-0f8454a8495d", + "creativeSets": [ + { + "creativeSetId": "944adee5-0645-42bd-ae38-8b80dcd6dbf7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a5d8f4a9-6310-44c0-b4fe-0cd3b051adb2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Travel OK - Oklahoma Bird Watching | travelok.com", + "title": "Travelok", + "targetUrl": "www.travelok.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "tVTtOXMuslE", + "name": "Birdwatching Equipment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e958c917-0d2e-460d-af7f-065fc6e59604", + "name": "general", + "startAt": "2017-09-24T19:46:01.255Z", + "endAt": "2019-09-24T19:46:01.256Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1383b5f9-f2f1-4f8d-bf72-5159c64ce6bd", + "creativeSets": [ + { + "creativeSetId": "49acb969-9b00-4d9e-8d45-b70739d40abf", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fddb2d35-2481-4f49-b45e-d197ecb5cd49", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Help For Adult MDD - Learn More", + "title": "Treat-major-depression", + "targetUrl": "www.treat-major-depression.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "ZYCLaYR2JuLH", + "name": "Depression Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3a710109-c7cb-4bb1-a139-e040eec64e1b", + "name": "general", + "startAt": "2017-09-24T19:46:01.969Z", + "endAt": "2019-09-24T19:46:01.969Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "55cd697f-b20b-4855-8a6c-7a01039d7c2f", + "creativeSets": [ + { + "creativeSetId": "f338dde3-0c41-4e37-8ea4-0410feb75b39", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bd2e771e-f215-48d0-9d25-999a8a5dec0d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Have Questions About HIV? - Find Basic HIV Info Here", + "title": "TreatmentForHI", + "targetUrl": "TreatmentForHIVinfo.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "ljRVUx5AHbA", + "name": "Hiv Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "caafeceb-f793-4f61-9f46-adc002beb0f1", + "name": "general", + "startAt": "2017-09-24T19:46:02.557Z", + "endAt": "2019-09-24T19:46:02.557Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "645d6e27-f043-4f5b-8e85-3c29ef915f53", + "creativeSets": [ + { + "creativeSetId": "9fda3004-f153-4adc-851d-28f6ced1713f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9b011418-dc0b-4d7f-814e-801d45a9dc56", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Trend Micro™ 24/7 Tech Support - Ultimate Service Plan", + "title": "Trendmicro", + "targetUrl": "shop.trendmicro.com/support" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "1Uk9lOnHZczB", + "name": "Computer Repairs" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6017789a-c6f0-4779-b872-a7d03eec7444", + "name": "general", + "startAt": "2017-09-24T19:46:03.141Z", + "endAt": "2019-09-24T19:46:03.141Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9d89b403-1538-4f55-8112-ef9fde7f6740", + "creativeSets": [ + { + "creativeSetId": "c3f98ed1-c3b4-40b0-ba2d-634a167bf752", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a05bf653-04ec-48df-9258-7a81e956f04f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Ashburn Hotel Deals - TripAdvisor.com", + "title": "TripAdvisor", + "targetUrl": "www.TripAdvisor.com/Ashburn" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6mVE5rciM5p", + "name": "Hotel Deals" + } + ] + }, + { + "creativeSetId": "000d74db-eec2-4893-8a76-ffed8d3ad21a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "34882786-f035-4b45-b454-164d71f28445", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Trip To Ashburn - 5 Ashburn Hotels - TripAdvisor.com", + "title": "TripAdvisor", + "targetUrl": "TripAdvisor.com/Hotels" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6gRfXQJbCmu", + "name": "Vacation Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "82310728-6647-4c3e-b84e-cd9e7883c25e", + "name": "general", + "startAt": "2017-09-24T19:46:04.037Z", + "endAt": "2019-09-24T19:46:04.038Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ca2fc9e8-8e22-4158-9d0f-a1a03bd2afb3", + "creativeSets": [ + { + "creativeSetId": "33fa0a1c-3619-4452-a874-3cce870d3dc3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d0d51f10-d9a0-4038-aed5-c013e86a28ef", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hotel Price Comparison | trivago.com", + "title": "Trivago", + "targetUrl": "trivago.com/Hotel-Deals" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6mVE5rciM5p", + "name": "Hotel Deals" + } + ] + }, + { + "creativeSetId": "07c601ed-3cf6-4cca-95ed-9a0a44e795b1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fa799394-fc16-4a1a-bce1-b2e3e8c11cf7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Compare Hotel Prices Instantly - Get 40% or Even 55% Off Hotels", + "title": "Trivago", + "targetUrl": "www.trivago.com/Compare/Hotels" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "lvYt-vwY0ml", + "name": "Travel Tours" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2737bcfc-b12c-42e9-b32e-c2789bd7dbc2", + "name": "general", + "startAt": "2017-09-24T19:46:04.988Z", + "endAt": "2019-09-24T19:46:04.989Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7ecbb557-247e-48a4-baf4-f66859421689", + "creativeSets": [ + { + "creativeSetId": "37e0516d-005e-4d33-9869-5a091a006d72", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "54d7c0a6-1e1e-423d-8750-53a6ddfe07dd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cricket Medals - From $.79 | trophydepot.com", + "title": "Trophy Depot", + "targetUrl": "https://www.trophydepot.com/Cricket-Trophies-and-Awards/C506_1/?utm_source=bing&utm_medium=cpc&utm_campaign=medals&utm_term=%2Bsports%20medal%20%2Bcricket&utm_content=cricket-medals" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "ohRvnq-CK2Hg", + "name": "cricket" + } + ] + }, + { + "creativeSetId": "da5b7ca4-7bca-4688-8ef7-fe311104492e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "68827fd6-4293-41b2-adb2-c260e3c3174b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fencing Plaques - From $4.40 - Customers Love Us", + "title": "Trophy Depot", + "targetUrl": "https://www.trophydepot.com/Fencing-Trophies/C498_1/?utm_source=bing&utm_medium=cpc&utm_campaign=plaques&utm_term=%2Bfencing%20%2Bsports%20plaques&utm_content=fencing-plaques" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "2M4QGB_m5o7u", + "name": "fencing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d5897b72-8f8f-4378-b2fa-3ff7ac628263", + "name": "general", + "startAt": "2017-09-24T19:46:05.837Z", + "endAt": "2019-09-24T19:46:05.837Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "abc74db0-50c9-4a42-977a-edaafdba9e8d", + "creativeSets": [ + { + "creativeSetId": "29b9c617-bbfc-47c0-af85-9fc2e5c64793", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1e4ddb3b-af79-442d-8f2e-88faaa2ad465", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cricket Medals | From $.79 - Customers Love Us‎", + "title": "Trophydepot", + "targetUrl": "www.trophydepot.com/ ‎" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "GElRy07ca5jr", + "name": "Cricket Medals" + } + ] + }, + { + "creativeSetId": "a321a837-41ff-4a7d-924a-3359e3385c83", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7aba821c-b869-421c-8d06-1abf6f1ffbc3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Gymnastics Awards - From Under $1.00 - Shop & Save", + "title": "Trophydepot", + "targetUrl": "www.trophydepot.com/Gymnastics/Awards" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "nW9RcA3E3JA", + "name": "Gymnastics Awards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d08b679a-9f68-44d0-a194-cd93e66add0f", + "name": "general", + "startAt": "2017-09-24T19:46:06.659Z", + "endAt": "2019-09-24T19:46:06.659Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "30088023-6af7-4828-8e23-837770b2ad93", + "creativeSets": [ + { + "creativeSetId": "b1b02e45-20be-44ff-aed7-905f94f7cbdd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0b6335f5-9fb1-4800-9776-9c612c7b7bb1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "TruDog® - Official Store - Trusted By Dogs And Vets Alike", + "title": "Trudog", + "targetUrl": "shop.trudog.com" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "cJeWKlUNo4Y", + "name": "Dog Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f752eb2a-9749-4afd-b21b-15f4a26f0344", + "name": "general", + "startAt": "2017-09-24T19:46:07.257Z", + "endAt": "2019-09-24T19:46:07.257Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f18bc74f-58eb-42db-90ad-1cf01caba247", + "creativeSets": [ + { + "creativeSetId": "b0dec948-addd-4c56-a5b9-59feb754f9c6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2345066a-368c-4b97-8841-10b2ff7ba38d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "A Buyer For Real Estate - Connect With Buyers on Trulia®", + "title": "Trulia", + "targetUrl": "agents.trulia.com/real-estate/buyer-leads" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "UCZ9mWvmOvyi", + "name": "Buy Real Estate" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cd7d38d1-f2fe-4c2b-b75e-440ffc07e7ed", + "name": "general", + "startAt": "2017-09-24T19:46:07.827Z", + "endAt": "2019-09-24T19:46:07.827Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bc77bfa5-0c52-499a-a489-b8b268d2e66c", + "creativeSets": [ + { + "creativeSetId": "41d8893c-2b22-4fac-9482-a7f07598c1df", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4b7c8a92-47cb-4933-908a-fb51b552202a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Trunk Club | The Latest in Women's Fashion‎", + "title": "Trunkclub", + "targetUrl": "www.trunkclub.com/ ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "cKE--V39Tbj", + "name": "clothing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "23021975-970b-41fe-8046-ada4caeb35ca", + "name": "general", + "startAt": "2017-09-24T19:46:08.402Z", + "endAt": "2019-09-24T19:46:08.402Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a6b9227e-12e7-4f11-a67d-e95b5cdf137a", + "creativeSets": [ + { + "creativeSetId": "1a60833b-a5e2-4b61-b2e3-ffe5781192ef", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "53ed59df-6812-4dd4-ae66-81667ad6d417", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Psychic Readings Only $10", + "title": "TruPsychics", + "targetUrl": "TruPsychics.com/Psychic-Readings" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "AQ9eV3TbmJq", + "name": "Physics Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d4c01a0f-1a88-42e3-9ced-acbafe69095a", + "name": "general", + "startAt": "2017-09-24T19:46:08.980Z", + "endAt": "2019-09-24T19:46:08.980Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d934952c-e75a-45fd-af88-59e03f8ad4f5", + "creativeSets": [ + { + "creativeSetId": "a87ec560-ea97-4689-aae4-e6f20f3ed5da", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7f772d82-dbea-458f-a7d5-27ec347cf732", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Eargo Plus™ - Top Rated Hearing Aid - Try a free sample now", + "title": "Try.eargo", + "targetUrl": "try.eargo.com/Hearing-Aid/Reviews" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "LRNthVMNdVU", + "name": "Hearing Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bde9a1d6-2212-42f2-9472-20f5f6558ab3", + "name": "general", + "startAt": "2017-09-24T19:46:09.562Z", + "endAt": "2019-09-24T19:46:09.562Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "49fb5801-11b8-48df-a9cd-94c952b8d8b3", + "creativeSets": [ + { + "creativeSetId": "d7ce9aac-8e28-4247-8104-916f28a4aaec", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8b9f240d-ab1f-4315-86cc-df5339cb94fa", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Try Sun Basket - Get 60% Off - Limited Time Summer Special", + "title": "Try.sunbasket", + "targetUrl": "try.sunbasket.com/Summer/Special" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "RjX-wPWa8Z_f", + "name": "Meal Deliveries" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5cab6b8a-18b0-420a-b9f2-5d0016fe916a", + "name": "general", + "startAt": "2017-09-24T19:46:10.128Z", + "endAt": "2019-09-24T19:46:10.128Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "25bc1cb6-35ff-4c99-8451-795c1ae25f76", + "creativeSets": [ + { + "creativeSetId": "6d3bc1ba-0a61-45c5-82ce-ab43481bc204", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "11aa745a-482b-41b0-b31f-04eceb7fdc2b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "New - TurboTax Live™ – Live, On Demand Tax Advice", + "title": "Turbotax", + "targetUrl": "https://www.turbotax.com/lp/ty17/ppc/temp_1.htm?znA=hro-abz-tib&znTL=pod-txi-owm-cw2-hnd-abz&znTR=pod-pdi-abz&znC3=abzero-social-carousel&cid=ppc_yh_nb_stan_all_na_hr_ty17-bu11-sb41&srqs=null&srid=CIHn2Znzj9kCFRHkfgodTeEDHw&targetid=kwd-304000932659&skw=h%26r&adid=34091841242&ven=yh&gclid=CIHn2Znzj9kCFRHkfgodTeEDHw&gclsrc=ds" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "85TXBnY82_YH", + "name": "human resources" + } + ] + }, + { + "creativeSetId": "275d78a0-6fe0-4392-9d85-c40d7e3f1d78", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "91ca1a00-a443-48e0-8548-0bf5eae1908a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "TurboTax® - Official Site", + "title": "Turbotax", + "targetUrl": "www.turbotax.com/official-site" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "25hWYRpip_l", + "name": "Turbo Tax" + } + ] + }, + { + "creativeSetId": "20e9d445-c087-4411-9e32-5f8a4412ab89", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dba0aa92-2acc-4f2a-9074-717695d627df", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "TurboTax® Official Site - Now Accepting E-Files | turbotax.com", + "title": "Turbotax", + "targetUrl": "https://www.turbotax.com/lp/ty17/ppc/temp_1.htm?znA=hro-abz-tib&znTL=pod-txi-owm-cw2-hnd-abz&znTR=pod-pdi-abz&znC3=abzero-social-carousel&cid=ppc_msn_nb_stan_all_na_taxes_ty17-bu14-sb67&srqs=null&srid=CMDOhvSWg9kCFU7EfgodRUkImw&targetid=kwd-78340331426925:loc-190&skw=%2Btaxes&adid=78340253607163&ven=msn&msclkid=63674021e7a317eccb1c1a53de295855&gclid=CMDOhvSWg9kCFU7EfgodRUkImw&gclsrc=ds" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "EWchyt99sHtV", + "name": "tax" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "78f78158-ee67-435e-a139-fd071b22b958", + "name": "general", + "startAt": "2017-09-24T19:46:11.271Z", + "endAt": "2019-09-24T19:46:11.272Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7411799a-10b3-4495-9941-cec1032bcb60", + "creativeSets": [ + { + "creativeSetId": "4626696f-bae0-4d70-96d4-4bcce6ef608c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2fc5d657-0afb-40ba-82d1-cad284709375", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Uber $1,600 Driver Guarantee - Sign Up, Turn Miles Into Money", + "title": "Uber", + "targetUrl": "www.uber.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "2YtFT0-MFv1", + "name": "Job Search" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0cd077b3-2473-4375-be4e-33825126dae9", + "name": "general", + "startAt": "2017-09-24T19:46:11.854Z", + "endAt": "2019-09-24T19:46:11.854Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "94191574-6dcb-4db6-b4bc-22cf19f905cc", + "creativeSets": [ + { + "creativeSetId": "a6440ca8-842d-4a5c-848e-4b6e8d82612a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0642cb8f-7f8c-43f7-8f7b-0293cdb2568c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The Church Jesus Built - Find out in free book", + "title": "UCG.org", + "targetUrl": "https://www.ucg.org/beyond-today/bible-study-aid/the-church-jesus-built?s=1&msclkid=43a7458e82dd1821cf6e1ff62f242972" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "Np7ydHQN-xb7", + "name": "religion" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "25acefa1-e180-4d01-bfa2-818a72c21dd1", + "name": "general", + "startAt": "2017-09-24T19:46:12.420Z", + "endAt": "2019-09-24T19:46:12.420Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "643bd91a-e619-41c1-9156-3cdc39ca235b", + "creativeSets": [ + { + "creativeSetId": "cc4c459f-1cb9-4e12-9e00-f711b134cf44", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6ed62cbd-ea4c-4231-b7ce-22ba07c1bba2", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Jewelry Lowest Price - Free Shipping, Buy now", + "title": "Ukbestdealstoday", + "targetUrl": "uk.bestdeals.today/Jewelry" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b35bdf76-dc8a-43e1-8236-891f8d565282", + "name": "general", + "startAt": "2017-09-24T19:46:12.996Z", + "endAt": "2019-09-24T19:46:12.996Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "96ad2a3e-5d4c-4f38-a20f-d511dd8099f2", + "creativeSets": [ + { + "creativeSetId": "1abcae15-a340-4874-a373-abb97cea8b39", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "28ff4ff2-c576-4ec8-bda2-809e7cdb2d5b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "MAC Cosmetics", + "title": "Ulta", + "targetUrl": "www.ulta.com/MAC-Cosmetics" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "5Puf4sqhfzx", + "name": "Mac Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f834a2d7-4710-4d51-b313-097c2ca005a1", + "name": "general", + "startAt": "2017-09-24T19:46:13.567Z", + "endAt": "2019-09-24T19:46:13.567Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cd30561e-4f3f-4cf2-9ef9-c7aff529cf15", + "creativeSets": [ + { + "creativeSetId": "d671306f-363a-40f8-b6e3-7503adaa6c4b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8316974e-9c90-4012-8370-9091dc7442a5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "UMBC Health IT Master's - Focus On Your Career Goals", + "title": "Umbc", + "targetUrl": "umbc.edu/hit" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mltw3XEd08nw", + "name": "Health & Fitness Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c09e7510-ccff-4c74-bc6c-882a6cd5ec70", + "name": "general", + "startAt": "2017-09-24T19:46:14.173Z", + "endAt": "2019-09-24T19:46:14.173Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a260506b-5e10-4263-a681-ddbbb32b7ffe", + "creativeSets": [ + { + "creativeSetId": "6d3caf24-f4c6-41fb-acac-76fcb187abcb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9cbd7fe6-608c-4981-9289-c15d913a6163", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online Psychology Degree - Univ of Maryland Univ College", + "title": "Umuc", + "targetUrl": "www.umuc.edu/Healthcare" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "mTbLUekRxb3", + "name": "Psychology Degree" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "73660b20-1b52-4003-b3e1-b81cdcd0f390", + "name": "general", + "startAt": "2017-09-24T19:46:14.778Z", + "endAt": "2019-09-24T19:46:14.779Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "867ba276-3133-437a-99df-d237f6e65b55", + "creativeSets": [ + { + "creativeSetId": "9cef161c-32c1-444e-9eac-04d461c37846", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6c146b36-686f-41d4-bdb5-b2bcbef65b74", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Univ of Maryland Univ College - Information Tech Certificates", + "title": "UMUC", + "targetUrl": "learn-more.umuc.edu/ComputerScience" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "rNd-q2umuLA", + "name": "IT Online Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3df7cf06-05ba-4c40-b7ef-eef1ed84ace4", + "name": "general", + "startAt": "2017-09-24T19:46:15.353Z", + "endAt": "2019-09-24T19:46:15.353Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8b283c04-508d-4fe7-9dd4-13677c4cb77a", + "creativeSets": [ + { + "creativeSetId": "a86e5255-f812-41f9-815b-678e72f68872", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e237a973-e5bd-4437-b9cb-a7c3217dc42e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Univ of Maryland Univ College - A Respected State University", + "title": "UmucEdu", + "targetUrl": "learn-more.umuc.edu/Online-Degrees" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "w5KTA-1-lyt", + "name": "Online Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e6c4656c-057f-40ee-85a8-16a9f49d96fa", + "name": "general", + "startAt": "2017-09-24T19:46:15.950Z", + "endAt": "2019-09-24T19:46:15.950Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "034e3ff7-dd48-4c11-b595-1f2f001e9f38", + "creativeSets": [ + { + "creativeSetId": "ca95fab3-77a7-40c1-b9da-d99284a034ff", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f491ada0-06ef-44d0-8f3a-1a0565aa609c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Under Armour® Clothes – Official Site: UA Clothes", + "title": "Underarmour", + "targetUrl": "underarmour.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wRnrM16xXmY", + "name": "Athletic Clothing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c6bce717-f144-4f03-9ebc-7b001e2ea8eb", + "name": "general", + "startAt": "2017-09-24T19:46:16.598Z", + "endAt": "2019-09-24T19:46:16.598Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "fad9c944-308f-4662-a416-8cfcde0238c4", + "creativeSets": [ + { + "creativeSetId": "92f53a2e-f370-4d61-ae25-55f4481bdaa1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4455ed50-7406-4efe-bc85-1a6835855ff9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Create Your Belt Today - Fully Custom Championship Belt", + "title": "Undisputedbelts", + "targetUrl": "www.undisputedbelts.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "J5bdxnl4xfj", + "name": "Wrestling Belts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "20743d50-970a-4625-863c-858258745149", + "name": "general", + "startAt": "2017-09-24T19:46:17.199Z", + "endAt": "2019-09-24T19:46:17.199Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4da4c8ab-eb49-4db8-8897-c54deb519f94", + "creativeSets": [ + { + "creativeSetId": "7e03e7d7-9a1c-42ba-bfb2-aa93a35ac3f4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "01ccf2c4-8c82-43a0-b866-b375b7310377", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Paranormal Phenomena & Unexplained Mysteries", + "title": "Unexplained", + "targetUrl": "http://unexplained.co/" + } + } + ], + "segments": [ + { + "code": "VmJBdpZEByG", + "name": "Folklore" + }, + { + "code": "Jo64aj2Ud3Cl", + "name": "paranormal phenomena" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c567da43-210f-4be8-aa6d-0dda80e3a1b8", + "name": "general", + "startAt": "2017-09-24T19:46:17.802Z", + "endAt": "2019-09-24T19:46:17.802Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "88fbd2b5-5295-4820-99b2-4b7e4754ac4c", + "creativeSets": [ + { + "creativeSetId": "e4efca4b-efdd-4a9c-8a21-bcdf3b9e3d4f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0906626d-4454-4f37-8214-0945bcd105bb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free Wine Tastings Everyday - Unique Pairings in Calabash", + "title": "Uniquepairings", + "targetUrl": "www.uniquepairings.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "REQQSgV4UzG", + "name": "Wine" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e4dec669-c2f0-4682-a12c-0ac05f12e7de", + "name": "general", + "startAt": "2017-09-24T19:46:18.380Z", + "endAt": "2019-09-24T19:46:18.380Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b875d858-f460-4ec0-bcd9-d92940eadc77", + "creativeSets": [ + { + "creativeSetId": "3915241d-cf31-41f0-ac39-584d97ef3260", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "91bbb884-67e8-413a-bfc0-8514d71cc146", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "UPS® Official Website - Cost-Effective Shipping Option", + "title": "Ups", + "targetUrl": "www.ups.com/shipping/freight" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "L6d8TFZSNbmS", + "name": "Online Shipping" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8e81da2c-d784-40a6-81a1-39a63ad275d6", + "name": "general", + "startAt": "2017-09-24T19:46:18.950Z", + "endAt": "2019-09-24T19:46:18.950Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f54767cd-fd7e-46ed-826b-d651ebe0a1d7", + "creativeSets": [ + { + "creativeSetId": "8472cbc4-6538-4f8f-99c6-b0f9544e8df6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2c5bb1ee-6504-462e-8d4d-e92570216b07", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Womens Apparel At UO - New Collections Arriving Now.", + "title": "Urbanoutfitters", + "targetUrl": "www.urbanoutfitters.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "obV7ryiIRW4", + "name": "beauty" + } + ] + }, + { + "creativeSetId": "f5d36c58-c3d7-41a5-b608-08da76be859b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "732df362-ef81-4f0d-b515-e149834ffdca", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Clothing At Urban - New Collections Arriving Now.", + "title": "Urbanoutfitters", + "targetUrl": "www.urbanoutfitters.com" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "mDuvMtm0102", + "name": "fashion" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "abc7aee6-f69c-43ef-a573-174976d2df3d", + "name": "general", + "startAt": "2017-09-24T19:46:19.786Z", + "endAt": "2019-09-24T19:46:19.786Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ceee65c9-eb8f-4b17-901a-39c95e40bec0", + "creativeSets": [ + { + "creativeSetId": "277ce433-cd2f-4f1b-9f09-0b68168324e3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "23869a3e-e750-498b-a69e-4c5fb29b8fdc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "U.S. Marine Corps - The Few. The Proud", + "title": "US Marine Corps", + "targetUrl": "https://rmi.marines.com/request-information/b_mc_district_4_883?WT.srch=1&gclid=CKjB-syMkNkCFc4EfwodkuACMQ&gclsrc=ds&dclid=CPjH_syMkNkCFYqSfgodkhkN2g" + } + } + ], + "segments": [ + { + "code": "xdewbpM2V5-", + "name": "Military" + }, + { + "code": "3Jy_UzESQxP9", + "name": "military" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "58cf08ea-24ca-4add-b142-c0027e882604", + "name": "general", + "startAt": "2017-09-24T19:46:20.357Z", + "endAt": "2019-09-24T19:46:20.357Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5f798282-fa33-425c-9817-c01165803e6b", + "creativeSets": [ + { + "creativeSetId": "fa586c1e-6ee8-4c1a-a637-7dea48fcb044", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f986cb21-8d67-483f-9bad-2cb9409d76eb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Green Card Application Online - Prepare & Complete Correctly", + "title": "Us-immigration", + "targetUrl": "www.us-immigration.com/Green-Card/Applications" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "A7Bk9uyA2zgj", + "name": "Green Card Application" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e0c914b9-9ec8-44f2-97cb-ebbd22171e46", + "name": "general", + "startAt": "2017-09-24T19:46:20.921Z", + "endAt": "2019-09-24T19:46:20.921Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "79780ffd-386e-4bd0-bd1a-e72906175d5f", + "creativeSets": [ + { + "creativeSetId": "7be96179-27aa-4cbb-8fd9-93819165d8dc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "eccd5122-5727-4693-a10f-a15c0b90f19c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "USCIS Application Forms Online - Citizenship & Renew Green Card | us-immigration.com", + "title": "US-Immigration.com", + "targetUrl": "https://www.us-immigration.com/?referrer=bing-cpc-52167524-citizenship~118355769863$m=bb-b$g=4729765595-74010985462541&msclkid=214769fe59851b1aab9f3386a821613f&utm_source=bing&utm_medium=cpc&utm_campaign=Citizenship%20-%20SRCH&utm_term=citizenship&utm_content=%2Bcitizenship" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "XrfEWtG8KRZh", + "name": "immigration" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a47d634d-6b49-4c47-b913-62d6f6fe082d", + "name": "general", + "startAt": "2017-09-24T19:46:21.487Z", + "endAt": "2019-09-24T19:46:21.488Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d0027775-6c42-4df5-8a64-81697a5e5997", + "creativeSets": [ + { + "creativeSetId": "81ad0b1a-9936-4c37-9325-b5fa155fcc1a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "02fe7c50-6dc5-4055-9611-c4239030f20f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "New Billabong Wetsuits - Fast & Free Shipping Every Day", + "title": "Us.billabong", + "targetUrl": "us.billabong.com/Mens/Wetsuits" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "nYUpPvk5Fx7s", + "name": "Surfing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d97ebdfa-a6a5-4642-9441-1f9d430c1641", + "name": "general", + "startAt": "2017-09-24T19:46:22.057Z", + "endAt": "2019-09-24T19:46:22.057Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "aabfcda5-b479-4ca3-a80c-f6e5152b6f17", + "creativeSets": [ + { + "creativeSetId": "369cbc62-fca4-49ea-915e-5968c6cf800e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "83db5af7-43e9-47b2-811b-ef6ab9477775", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Animation Job - 53 urgent openings. Apply now", + "title": "Us.jobrapido", + "targetUrl": "us.jobrapido.com/Animation Job/Jobs" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "K1d6Q52s4WP", + "name": "Animation Degree" + } + ] + }, + { + "creativeSetId": "c1c02f0f-c8bb-4ef8-b432-5f50b01d301e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "211d7a95-768c-4ba0-95fc-3ec3c6613bf1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Climbing Job - 53 urgent openings. Apply now | us.jobrapido.com", + "title": "Us.jobrapido", + "targetUrl": "us.jobrapido.com/Climbing Job/Jobs" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "zJrrQvnmCnp", + "name": "Climbing Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1b7e742b-ff91-4c6d-8470-424fd31f412d", + "name": "general", + "startAt": "2017-09-24T19:46:22.878Z", + "endAt": "2019-09-24T19:46:22.878Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a44173b0-20e2-4966-9abc-fc3c9190bba3", + "creativeSets": [ + { + "creativeSetId": "4f819512-c795-4570-9a8d-7c13c78e402d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d5f0e032-55b1-4d79-9086-f17b61902b76", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy a Range Of Shakes - Best Flavours", + "title": "Us.myprotein", + "targetUrl": "us.myprotein.com/Protein" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "2SU6dGfT9-t", + "name": "Protein Shakes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1e752bb1-e010-49e6-ab85-2ee4d4d52b79", + "name": "general", + "startAt": "2017-09-24T19:46:23.489Z", + "endAt": "2019-09-24T19:46:23.489Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "21632713-0dfa-483f-b61a-8dce6d625b63", + "creativeSets": [ + { + "creativeSetId": "364d3547-593c-4d15-ac8b-5698b680f5e3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b00f2197-7d02-4758-a529-30bd06ff9ae3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Treating Your Depression - Information for Patients", + "title": "Us.trintellix", + "targetUrl": "us.trintellix.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "ZYCLaYR2JuLH", + "name": "Depression Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ec6daf94-c9ef-4127-9e83-56cb98977583", + "name": "general", + "startAt": "2017-09-24T19:46:24.085Z", + "endAt": "2019-09-24T19:46:24.085Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2e8fa98d-36be-4708-85c6-d28fa8ecda13", + "creativeSets": [ + { + "creativeSetId": "bdc9bcf3-a281-4b37-9982-ebd3078d0779", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "27ca85b8-ce30-48c3-b253-8fb6732ba552", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "USA Online Sports Books. - USA Online Sports Books.", + "title": "USA Online Sports Books", + "targetUrl": "https://www.sportsbetting.ag/?btag=_fW72xBMJ728XIJWtvBUrmNd7ZgqdRLk&affid=83564" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "7-iT49QxMXvc", + "name": "gambling" + } + ] + }, + { + "creativeSetId": "da435fa9-0a2c-4fb2-bee9-99db8df5a3a0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0462a53b-32ba-4aa5-8c27-b1b1f5a6abc5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "2017 USA Online Sports Books. - 2017 USA Online Sports Books", + "title": "USA Online Sports Books", + "targetUrl": "https://www.betonline.ag/?btag=T38SlcGWZjqq3otXONIE32Nd7ZgqdRLk&affid=83564" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "uPbBQk5tdcda", + "name": "sports" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "98f2f8f8-994f-4411-a186-dd71a3e4ee4f", + "name": "general", + "startAt": "2017-09-24T19:46:24.928Z", + "endAt": "2019-09-24T19:46:24.929Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "20d88817-a475-41e8-b70a-dcdae39a2f0e", + "creativeSets": [ + { + "creativeSetId": "27a694a4-00a2-4389-a60d-47ac455516e8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1a16001b-49b1-438f-aecb-6660b65c4838", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Green Card Lottery - Register Now! | USA-Green-Card.com", + "title": "USA-Green-Card", + "targetUrl": "www.USA-Green-Card.com/Green-Card/Lottery" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "A7Bk9uyA2zgj", + "name": "Green Card Application" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "407d82dc-e338-4623-8313-29ea8fbcbaea", + "name": "general", + "startAt": "2017-09-24T19:46:25.525Z", + "endAt": "2019-09-24T19:46:25.525Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "be92ba36-10c3-451f-9277-d2e0028df917", + "creativeSets": [ + { + "creativeSetId": "43586b50-6d31-4cf2-8480-6bf0a6756b0f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "82a130f0-6496-4ce7-9425-5cbdd65e21e8", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Settle Your IRS Tax Debts - Pay Just A Fraction", + "title": "Usa-tax-relief", + "targetUrl": "www.usa-tax-relief.com/SaveMoney" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "mxelJ0wSaYe-", + "name": "E-Tax" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b4f175bf-cc86-4921-a76b-2179dd7ecdeb", + "name": "general", + "startAt": "2017-09-24T19:46:26.131Z", + "endAt": "2019-09-24T19:46:26.131Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f2a90847-8aed-4e7b-bed8-283a45ee3034", + "creativeSets": [ + { + "creativeSetId": "f5cf801e-423e-4395-abc3-a1ba166c1675", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4e3393fc-10d2-46d2-91b0-98b3c55fc88d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Barbecue Grill - Top 5 - Barbecue Grill | usablackfriday.com", + "title": "Usablackfriday", + "targetUrl": "usablackfriday.com/Black-Friday/Deals" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "w2RZcyzoMxq", + "name": "Barbecues" + } + ] + }, + { + "creativeSetId": "aabd494a-54f3-428b-bb31-a53c4452e073", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "aa106f95-2b2d-444c-ada0-3fc4c2303317", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Laptop - Top Rated Products - Compare Prices & Save More", + "title": "Usablackfriday", + "targetUrl": "usablackfriday.com/Laptop-Computer" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "r-ofzMLNsK8", + "name": "Dell Computers" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e1672c9a-31e3-43b8-873f-d6815c59fa0c", + "name": "general", + "startAt": "2017-09-24T19:46:27.004Z", + "endAt": "2019-09-24T19:46:27.004Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "efbe93a6-0fab-4312-a818-5dc5df357e94", + "creativeSets": [ + { + "creativeSetId": "a970ebca-7e2a-4e58-96a0-26b5c0078b39", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "deaf9a23-3f78-46c8-bd00-f8dd101c96ed", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "USA Green Card Lottery - Live & Work in the USA", + "title": "Usagreencardlottery", + "targetUrl": "www.usagreencardlottery.org/Diversity/Visa" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "A7Bk9uyA2zgj", + "name": "Green Card Application" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e55090ce-09f3-4689-bfc0-4903b8371e5f", + "name": "general", + "startAt": "2017-09-24T19:46:27.597Z", + "endAt": "2019-09-24T19:46:27.598Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "58083edd-e19c-49c2-8f4d-971479ef4565", + "creativeSets": [ + { + "creativeSetId": "bd3f8d07-4ed4-4cf0-b3ca-9833242ab62c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9383eb4c-1838-4c14-86e5-7a927a48f628", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "USAopoly® Board Games - Beloved Games With A Twist", + "title": "Usaopoly", + "targetUrl": "usaopoly.com/Board_Games" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "y-dD1TIXfNn", + "name": "Board Games" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b1e52e67-76ed-4661-b79c-11e5e0d45d65", + "name": "general", + "startAt": "2017-09-24T19:46:28.170Z", + "endAt": "2019-09-24T19:46:28.170Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "220f15dc-7bf9-495d-9348-88d518786e11", + "creativeSets": [ + { + "creativeSetId": "03726b73-44b1-42a7-99a9-f479b8bf6631", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a89428be-6a03-45f2-b5a3-307e53a8848d", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Coins & Currency Auctions - Browse Our Inventory Today", + "title": "Usauctionbrokers", + "targetUrl": "www.usauctionbrokers.com/Auction-Brokers/Coins-Currency" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "K24r-df9CcZ", + "name": "Rare Coins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "61af327d-7618-4400-894b-295a776291b8", + "name": "general", + "startAt": "2017-09-24T19:46:28.910Z", + "endAt": "2019-09-24T19:46:28.910Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "db091288-f096-45d7-89d6-fda547f05ed6", + "creativeSets": [ + { + "creativeSetId": "fdd336a9-9460-4f23-9e54-17ba3496d576", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bc8c1fc3-3af4-473f-a6e6-605a4847cf54", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Police Auction: Jewelry | Bids Start at $1 - Sign Up Now‎", + "title": "Usauctiononline", + "targetUrl": "www.usauctiononline.com/Jewelry/Gold-Diamonds ‎" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "25bb452a-bbe3-4643-9035-a3b623bf42b0", + "name": "general", + "startAt": "2017-09-24T19:46:29.596Z", + "endAt": "2019-09-24T19:46:29.597Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c87a0833-e64d-4387-8d6e-875db3413f12", + "creativeSets": [ + { + "creativeSetId": "c7898f0c-a5e6-4fc4-a44e-ef55c172c597", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "92d55163-6a66-4902-91ee-75f4897c9bde", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pharmaceutical MBA Progr. - Get More Info", + "title": "USciences", + "targetUrl": "USciences.edu/PharmaMBA" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "vPlAftFRlgO", + "name": "Biotech Business" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "77de96e3-d8b6-42bb-8ca3-0fa2786d84ff", + "name": "general", + "startAt": "2017-09-24T19:46:30.205Z", + "endAt": "2019-09-24T19:46:30.205Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ead6ccca-317c-470e-bc22-c4786fc4ee8a", + "creativeSets": [ + { + "creativeSetId": "7bce6afa-1a6c-428f-bd60-0a9d79eba6fa", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cf50e22a-2c9d-4156-bbfc-642eb3185ac1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Dot Drug Test - Order Online +20,000 Locations", + "title": "Usdrugtestcenters", + "targetUrl": "www.usdrugtestcenters.com/DOT" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "ZFoOZxsAWHI", + "name": "Drug Tests" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "61ef285a-3650-41a9-bc8d-fc0eec6fbad9", + "name": "general", + "startAt": "2017-09-24T19:46:30.784Z", + "endAt": "2019-09-24T19:46:30.785Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d6f9cc2a-97b7-4393-95ef-37680cd9e94b", + "creativeSets": [ + { + "creativeSetId": "993d7f4f-cbb8-45b6-a083-c39fac202b63", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "07f8105a-ae11-4c28-a0e2-28763b65137f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Find Your Used Used heavy duty trucks - Search 3,000+ Sites", + "title": "Usedequipmen", + "targetUrl": "usedequipmentguide.com/trucks" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "TrWA-UI4zhY", + "name": "Pickup Trucks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b988cca3-fbc4-4f2f-88c8-c496934c0fc1", + "name": "general", + "startAt": "2017-09-24T19:46:31.435Z", + "endAt": "2019-09-24T19:46:31.435Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5ad52d36-bab1-489b-ba82-8a919f091aca", + "creativeSets": [ + { + "creativeSetId": "a8e4ce99-83c6-49fe-a007-379d94f0a63d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9823f7f1-f9be-43eb-b1cd-461a71c611f7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Proof Sets - From the Official U.S. Mint", + "title": "Usmint.gov", + "targetUrl": "www.usmint.gov" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "K24r-df9CcZ", + "name": "Rare Coins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "dd256999-e88b-4ead-9045-a3bbe5174763", + "name": "general", + "startAt": "2017-09-24T19:46:32.033Z", + "endAt": "2019-09-24T19:46:32.033Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9b549537-e9f1-4b9f-937d-80e09943527c", + "creativeSets": [ + { + "creativeSetId": "f4a6433d-abdc-432c-b5da-d4396b474b26", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "caa9aa89-127f-4253-8f52-ae6765fe7867", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "USPS® Online Shipping - The Official Website of USPS®", + "title": "Usps", + "targetUrl": "www.usps.com/Shipping" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "L6d8TFZSNbmS", + "name": "Online Shipping" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "afa959b1-63c0-46f7-ac4d-a5b0929c93c4", + "name": "general", + "startAt": "2017-09-24T19:46:32.652Z", + "endAt": "2019-09-24T19:46:32.652Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "234ae508-ac93-40a4-b7f2-d5d36e6137ab", + "creativeSets": [ + { + "creativeSetId": "b90391f8-2f62-4191-a9f3-8391b65652f1", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "859d4056-552c-4121-9295-a903c48136d7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop 2018 Trendy Women Clothes - 15% Off First Order-Shein.com", + "title": "Usshein", + "targetUrl": "us.shein.com/Trendy-Clothes/Women-Clothes" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "obV7ryiIRW4", + "name": "beauty" + } + ] + }, + { + "creativeSetId": "88991e87-51fa-46f1-9902-b45a118c3abb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b2bd9f2b-78c5-4266-b829-df834c1eea2e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop 2018 Trendy Women Clothes - 15% Off First Order-Shein.com", + "title": "Usshein", + "targetUrl": "us.shein.com/Trendy-Clothes/Women-Clothes" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "cKE--V39Tbj", + "name": "clothing" + } + ] + }, + { + "creativeSetId": "ac788486-ad38-4dad-8ea1-f474f7c3717a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d8e5fe0a-a2a8-40b3-9f4a-1f4adab59813", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop Trendy Clothes - Up to 85% Off,Free Shipping", + "title": "Usshein", + "targetUrl": "us.shein.com/Trendy-Clothes/Women-Clothes" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "mDuvMtm0102", + "name": "fashion" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "dcdc42db-4236-47e4-adaa-18179661207f", + "name": "general", + "startAt": "2017-09-24T19:46:33.748Z", + "endAt": "2019-09-24T19:46:33.748Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3129da31-935e-4fa7-b6c6-6ba4f8ede98b", + "creativeSets": [ + { + "creativeSetId": "fcfdbaa6-9adf-403a-ad34-94f984a82104", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2757a4cb-e4e8-4cfe-a353-d2579c2f2191", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Rc Vehicles", + "title": "USStoreSavers", + "targetUrl": "USStoreSavers.com/Rc Vehicles" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "eJu7bz6XQx4", + "name": "RC Vehicles" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "450878e2-08da-4102-bb10-bce9fd231ed8", + "name": "general", + "startAt": "2017-09-24T19:46:34.336Z", + "endAt": "2019-09-24T19:46:34.337Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "03a0ad41-7ebe-47e0-8173-655f43827e08", + "creativeSets": [ + { + "creativeSetId": "aef319ec-b916-43d2-8382-8e2636425a02", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "47228cfe-8ec3-4e72-810f-f724a2ad23f7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cruise Vacations 82% Off - Save up to 82% on cruises", + "title": "VacationsToGo", + "targetUrl": "VacationsToGo.com" + } + }, + { + "creativeInstanceId": "51cdd340-a1d2-42ec-85c0-d17256fd1471", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cheap Cruises 82% Off - Find Huge Deals on all Cruises", + "title": "VacationsToGo", + "targetUrl": "www.vacationstogo.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "xrH2KKuKBDm", + "name": "Cruise Vacations" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "24605a45-7def-435d-bf30-be92c6008a34", + "name": "general", + "startAt": "2017-09-24T19:46:35.079Z", + "endAt": "2019-09-24T19:46:35.079Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3f7eeb73-416d-4871-9a4a-8c2aac47edea", + "creativeSets": [ + { + "creativeSetId": "098bda65-7f4b-490b-8fd5-ca762b6a0482", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9ef02011-dae4-4630-9154-cd9f8e4cde8f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Value City Furniture® - Storewide Clearance Event", + "title": "Valuecityfurniture", + "targetUrl": "www.valuecityfurniture.com/Home-Furniture" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "JdIppC2dyV9", + "name": "Home Furniture" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c8697d33-412a-478d-b3e8-c15f92602b18", + "name": "general", + "startAt": "2017-09-24T19:46:35.691Z", + "endAt": "2019-09-24T19:46:35.691Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "18b5ae22-56e6-43ce-b1b4-4e0abf0a4fa2", + "creativeSets": [ + { + "creativeSetId": "35487aee-6883-4ca3-aabf-5f4a6d6e86eb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ba2f3fff-431c-48ad-98e5-2fb5f2508794", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Guided Hiking Tours - VBT?? Adventure. Your Way.??", + "title": "Vbt", + "targetUrl": "www.vbt.com/tours/hiking" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "lvYt-vwY0ml", + "name": "Travel Tours" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1b375cad-7a84-425f-81e3-00422c5d57db", + "name": "general", + "startAt": "2017-09-24T19:46:36.277Z", + "endAt": "2019-09-24T19:46:36.278Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3e350a06-9271-421e-8794-1565a7d22a2a", + "creativeSets": [ + { + "creativeSetId": "37fe23c5-e974-4256-885a-2a4e3b6deec6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2a2d0eb2-b114-4533-8631-0d56f792d699", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Fleet Management Software - Easily Dispatch Field Workers.", + "title": "Verizo", + "targetUrl": "www.verizonconnect.com/Verizon/Connect" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "P9Lfpxf-FV6", + "name": "Management Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "240303e2-595f-43c5-9f7a-a62da6945462", + "name": "general", + "startAt": "2017-09-24T19:46:36.903Z", + "endAt": "2019-09-24T19:46:36.903Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0474f052-2c99-45d6-9e4d-61ecc99e2da6", + "creativeSets": [ + { + "creativeSetId": "5491d89f-4be0-4e6a-9a6a-8408254e7f46", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b976ba94-c150-4258-971a-ee1941dbe176", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Verizon Unlimited Mix & Match | Get the Plan You Need‎", + "title": "Verizonwireless", + "targetUrl": "www.verizonwireless.com/ ‎" + } + } + ], + "segments": [ + { + "code": "05KGovyhnUj", + "name": "cell phones" + }, + { + "code": "PDcNk9LToal", + "name": "cell phones" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3e359ffb-f7d4-4ac0-a4b1-991854dfbffd", + "name": "general", + "startAt": "2017-09-24T19:46:37.516Z", + "endAt": "2019-09-24T19:46:37.516Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3751db69-3d63-4bb1-b6d7-e2de45fbad03", + "creativeSets": [ + { + "creativeSetId": "54acfacd-1976-4578-ace3-93ac706f91a6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "af4f244f-c061-4550-a1fb-605fb87aecbc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Your Ideal HR Experts - 100% FCRA Compliant", + "title": "Viablehrs", + "targetUrl": "www.viablehrs.com" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "ZFoOZxsAWHI", + "name": "Drug Tests" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "45612217-e8fa-4437-964b-73e695f1771c", + "name": "general", + "startAt": "2017-09-24T19:46:38.189Z", + "endAt": "2019-09-24T19:46:38.189Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "fb6ec276-cc80-447d-a670-abfb52310be0", + "creativeSets": [ + { + "creativeSetId": "18c1a5ad-1839-44e9-833f-913b1ab3f4c2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e68805ec-0cbe-4a5b-8ce2-6d4bb94900a3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Free International Dating - Meet Real And Honest Women", + "title": "Victoriahearts", + "targetUrl": "victoriahearts.com/Ukraine/Women" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "tEYym_TVzMg", + "name": "Christian Meet" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8b46f144-c945-47d6-856a-d265c8c7197e", + "name": "general", + "startAt": "2017-09-24T19:46:38.769Z", + "endAt": "2019-09-24T19:46:38.770Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4561c211-173d-4693-8fd6-84a1a27b5740", + "creativeSets": [ + { + "creativeSetId": "bd59e7e4-7bf4-4101-a828-996cad804706", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c01c04c5-e534-4108-9eb3-690c7a75dd5e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Viking® River Cruises - Exploring the World in Comfort", + "title": "Viking River Cruises", + "targetUrl": "https://www.vikingrivercruises.com/promotions.html?utm_id=sem:Upper-Funnel-Cruises-Search-USA-Exact-SP&gclid=COHZgujKidkCFSyXxQIdcrQNvQ&gclsrc=ds&dclid=CJ2HiOjKidkCFY3JZAodSlYF5g" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "xrH2KKuKBDm", + "name": "Cruise Vacations" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8fc1bdb9-62d4-4532-a81b-daaf88dbe983", + "name": "general", + "startAt": "2017-09-24T19:46:39.348Z", + "endAt": "2019-09-24T19:46:39.348Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "671c1f8d-f7d6-4c1a-8257-b2727a8e70ac", + "creativeSets": [ + { + "creativeSetId": "1bb6cfb3-34aa-47b2-b4a7-a48440fe45b3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "28bc7e02-8f5d-4892-876e-102a20d59c36", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Viking Cruises® - Exploring the World in Comfort", + "title": "Vikingcruises", + "targetUrl": "www.vikingcruises.com" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "yXU5RmIdCDsD", + "name": "Celebrity News" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "92ed58f9-b750-4e7d-9ace-ac08020be985", + "name": "general", + "startAt": "2017-09-24T19:46:39.938Z", + "endAt": "2019-09-24T19:46:39.938Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "47e00bbc-ab1b-4f2a-a2c0-83df32d26e68", + "creativeSets": [ + { + "creativeSetId": "e90cc007-edcd-49e5-9243-5991feaf844e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "766a1e8e-6f1e-4e04-a75e-3e146a38eeb6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Viking® River Cruises - Exploring the World in Comfort", + "title": "Vikingrivercruises", + "targetUrl": "www.vikingrivercruises.com/Voyages" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "xrH2KKuKBDm", + "name": "Cruise Vacations" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "41967688-533f-4d3e-9b4e-b8ecdf5ab292", + "name": "general", + "startAt": "2017-09-24T19:46:40.524Z", + "endAt": "2019-09-24T19:46:40.525Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "49929fd9-9e50-4e01-b030-378fad0332de", + "creativeSets": [ + { + "creativeSetId": "0bbd4693-395c-4070-ac99-2d367bff88b8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "85bf3760-4fd8-4372-91df-e97eb3cce067", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Sleeve Surgery Expertise | virginiabariatric.com", + "title": "Virginiabariatric", + "targetUrl": "www.virginiabariatric.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4f14d2a5-6fd4-40da-8b63-2bd2fc7020e8", + "name": "general", + "startAt": "2017-09-24T19:46:41.097Z", + "endAt": "2019-09-24T19:46:41.097Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d2b052c8-cefc-4ca8-b618-1b47a234e284", + "creativeSets": [ + { + "creativeSetId": "0651e38f-de07-4573-a240-f504502756d6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4c95b247-de27-44b5-a6f9-f6dce647c7b5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Don't File Bankruptcy - Qualify for Hardship Relief", + "title": "Virginiadebtrelief", + "targetUrl": "www.virginiadebtrelief.org/Hardship_Assist" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "3kVpCcrPlDrA", + "name": "Legal Help" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f792dc65-d9bc-430d-95ab-b6ec72948817", + "name": "general", + "startAt": "2017-09-24T19:46:41.667Z", + "endAt": "2019-09-24T19:46:41.667Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "f044f717-32c4-4223-bcf5-e596ae7c0d46", + "creativeSets": [ + { + "creativeSetId": "632fbc68-498f-481b-9c01-644fe904e528", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b6d29097-3e0a-4ca9-adaa-43ac7b193fc7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Loan to Payoff Debt? | VirginiaDebtRelief.org", + "title": "VirginiaDebtRelief", + "targetUrl": "VirginiaDebtRelief.org/Online" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "BwhnRpkM8sF", + "name": "Personal Loans" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "09f3c30c-ffef-417f-95f1-03f5070364f6", + "name": "general", + "startAt": "2017-09-24T19:46:42.264Z", + "endAt": "2019-09-24T19:46:42.264Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "46b7967c-4c69-4fc2-9527-316cf76e2e73", + "creativeSets": [ + { + "creativeSetId": "0332df91-df18-4898-b2d7-422d39f88b0b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0f065292-40a7-4af8-9deb-407451addfcb", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "No Money to Pay the IRS? - Owe back tax $10K-$200K?", + "title": "Virginiataxrelief", + "targetUrl": "www.virginiataxrelief.org/BBB-A+Rated" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "mxelJ0wSaYe-", + "name": "E-Tax" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e4c382e6-c765-45c9-b24e-8cd1374d7937", + "name": "general", + "startAt": "2017-09-24T19:46:42.867Z", + "endAt": "2019-09-24T19:46:42.867Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "dc9b69ae-33c4-41d6-a988-435ed47d51e6", + "creativeSets": [ + { + "creativeSetId": "aa05dc99-c970-4cd0-ab0a-57d08a20cf92", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8a75d50c-70d5-44af-b3b5-9aeba2355590", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Visible Official Site | It’s Phone Service. In an App.‎", + "title": "Visible", + "targetUrl": "www.visible.com/ ‎" + } + } + ], + "segments": [ + { + "code": "05KGovyhnUj", + "name": "cell phones" + }, + { + "code": "PDcNk9LToal", + "name": "cell phones" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "2f9377ab-ceef-4536-a3fc-4cdbd533b9cc", + "name": "general", + "startAt": "2017-09-24T19:46:43.457Z", + "endAt": "2019-09-24T19:46:43.458Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d5ba9d5c-3b78-4698-af54-247f1fef696e", + "creativeSets": [ + { + "creativeSetId": "72c3faa5-0575-466a-8e19-095707dbefa8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "011d02d3-bfdb-4105-ad0d-e28ef2e3e652", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Visitbritain | visitbritainshop.com", + "title": "Visitbritainshop", + "targetUrl": "www.visitbritainshop.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "lvYt-vwY0ml", + "name": "Travel Tours" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a0504473-ab3c-42dd-bf82-ac36433fd56f", + "name": "general", + "startAt": "2017-09-24T19:46:44.060Z", + "endAt": "2019-09-24T19:46:44.060Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9b529619-b5db-4922-8586-5bc1c5090651", + "creativeSets": [ + { + "creativeSetId": "999d1fe6-5524-49a9-9c09-18de5af90522", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ccfcf883-1ccb-4351-97a3-1d4827da362a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Weekend Getaway Deal - Plan Your Next Trip", + "title": "Visitmyrtlebeach", + "targetUrl": "www.visitmyrtlebeach.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6gRfXQJbCmu", + "name": "Vacation Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "eb665a3b-7590-4b6c-855e-f2a84b03ff22", + "name": "general", + "startAt": "2017-09-24T19:46:44.706Z", + "endAt": "2019-09-24T19:46:44.706Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "fd0aa2a9-d86c-45f7-a2a2-597c5c65e8f8", + "creativeSets": [ + { + "creativeSetId": "a93af41c-e975-4488-be55-e557c3b139f6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e097a29c-35a9-4a83-9f87-8b8f61185a3a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Vitamins Sale Today - Everyday Free Shipping", + "title": "Vit", + "targetUrl": "www.vitacost.com/OrganicBeauty/Free Shipping" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "5Ry6TcY_ODM", + "name": "Buy Vitamins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c62aa97b-6374-47cf-aff9-31afb43c3d6d", + "name": "general", + "startAt": "2017-09-24T19:46:45.307Z", + "endAt": "2019-09-24T19:46:45.308Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "00cf31e4-bdf2-4aba-b07b-e369019dfcf3", + "creativeSets": [ + { + "creativeSetId": "006573f2-1382-4584-9145-c272dde0cb68", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d76cc5d9-5bbb-4882-a440-2571e33e47be", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Vitamins Sale Today - Everyday Free Shipping", + "title": "VitaCost", + "targetUrl": "www.vitacost.com/OrganicBeauty/Free Shipping" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "5Ry6TcY_ODM", + "name": "Buy Vitamins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "224febe8-ea54-46e5-90d6-2465bfc0a7d9", + "name": "general", + "startAt": "2017-09-24T19:46:45.881Z", + "endAt": "2019-09-24T19:46:45.881Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "690a8929-69e2-433f-ab72-ce442830bfe5", + "creativeSets": [ + { + "creativeSetId": "b47d0840-72ca-418d-a93d-68b2232b8e3a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "81a6ce67-c244-4670-a25f-df5d3e01a977", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "VitaCup.com - Official Site | vitacup.com", + "title": "Vitacup", + "targetUrl": "www.vitacup.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "5Ry6TcY_ODM", + "name": "Buy Vitamins" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "cc0c1932-4452-49ec-89ad-58078c4ed470", + "name": "general", + "startAt": "2017-09-24T19:46:46.448Z", + "endAt": "2019-09-24T19:46:46.448Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "37cd104a-e567-4f25-a5ac-8f8c8b730937", + "creativeSets": [ + { + "creativeSetId": "33768fb5-9a50-4c90-afd8-cdb52fc0f066", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8e2fdee1-f8f4-4eae-8b64-4631ef1b3005", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Boxing Tickets - Order Online - 100% Guarantee", + "title": "Vividseats", + "targetUrl": "www.vividseats.com/BoxingTickets" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "mqSw-gRLA7p", + "name": "Boxing Tickets" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0676261d-c692-4659-b8a1-de722316fb1d", + "name": "general", + "startAt": "2017-09-24T19:46:47.027Z", + "endAt": "2019-09-24T19:46:47.027Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bfad154b-f386-4027-a48b-bd8402ce233b", + "creativeSets": [ + { + "creativeSetId": "f6eab99c-d723-4f39-9b0d-e0d36c00dd2d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "de851950-9b0d-47ed-93d1-67b0d1b6312c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Start Your eCommerce Business - Get Your Website & Store Today | volusion.com", + "title": "Volusion", + "targetUrl": "https://www.volusion.com/lp/sem/h-ecommerce/v2?adGroup=EM%7CPRO-PL1.ecommerce%7CMOD-ADJ_Business.business&matchType=e&class=EM%7CPRO-PL1.ecommerce%7CMOD-ADJ_Business.business&utm_source=bing&utm_medium=cpc&utm_campaign=BI-DT1-ATN-SER-NBR-GNC-EN-USA-2L-EM-PL1-ADJ_Business-ECO&utm_term=business%20eCommerce&utm_content=EM%7CPRO-PL1.ecommerce%7CMOD-ADJ_Business.business" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "CYqxZRecHRfh", + "name": "commerce" + } + ] + }, + { + "creativeSetId": "cb3341e1-a9e1-44d6-b6ec-8eb75d58250f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "13825b07-b771-4496-a9b4-23ae29c3dae1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best eCommerce Website Builder - Get Your Website & Store Today", + "title": "Volusion", + "targetUrl": "www.volusion.com/eCommerce/Platform" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "zgMSYI-gfMo", + "name": "eCommerce Websites" + } + ] + }, + { + "creativeSetId": "9ea5f453-8f70-4926-afd0-d3df1acc6f2c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ebdfcd14-1213-49bb-b69d-2b52acb17026", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Online Shipping - Get Your Website & Store Today", + "title": "Volusion", + "targetUrl": "www.volusion.com/BestECommerce/Solution" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "L6d8TFZSNbmS", + "name": "Online Shipping" + } + ] + }, + { + "creativeSetId": "2184f164-7772-4ceb-87eb-e61ed152ce0c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7c8abe3b-2906-4fc8-9139-1f521dc9d982", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Drop Shipping Made Simple - Get Your 14 Day Free Trial Now | volusion.com", + "title": "Volusion", + "targetUrl": "https://www.volusion.com/lp/sem/ecommerce-platforms/?class=BM|PRO-PL6.dropshipping|MOD-ADJ_BUSINESS.business&class=BM%7CPRO-PL6.dropshipping%7CMOD-ADJ_BUSINESS.business&utm_source=bing&utm_medium=cpc&utm_campaign=BI-DT1-ATN-SER-NBR-GNC-EN-USA-2L-BM-PL6-ADJ_BUSINESS-DRO&utm_term=%2Bdropshipping%20%2Bbusiness&utm_content=BM%7CPRO-PL6.dropshipping%7CMOD-ADJ_BUSINESS.business" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "geL6LlPzs7MK", + "name": "shipping" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ba521b2b-8a75-4cdd-9648-aa4428d26b4b", + "name": "general", + "startAt": "2017-09-24T19:46:48.375Z", + "endAt": "2019-09-24T19:46:48.375Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2330eba1-cd66-49c3-851e-daf286f4df4c", + "creativeSets": [ + { + "creativeSetId": "36909151-b82b-43d7-b4ab-ee4b828ab072", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b2472d78-e34d-4088-b2ec-f8a5111003e3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "All-New V90 Cross Country - Adventure that Knows No Limits", + "title": "Volvo", + "targetUrl": "https://www.volvocars.com/us/cars/new-models/v90-cross-country?utm_source=bing&utm_medium=cpc&utm_campaign=Volvo_V90_NB_Phrase&utm_term=wagons&utm_source=bing&utm_medium=cpc&utm_campaign=Volvo_V90_NB_Phrase&utm_term=wagons&utm_content=Wagon" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "L0zOm4kqoYdK", + "name": "wagons" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b6976b7b-9090-4981-8302-319e20175117", + "name": "general", + "startAt": "2017-09-24T19:46:48.938Z", + "endAt": "2019-09-24T19:46:48.938Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "fb89f5e9-524d-46a9-9e80-8a1badbc0d1a", + "creativeSets": [ + { + "creativeSetId": "f7e5b6b1-642f-4690-acc2-58cb164da12c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cb1b9fe3-8aa8-42f6-9454-eb7a997646ef", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "The All New 2019 Jetta - An Evolution in Design - vw.com", + "title": "VW", + "targetUrl": "www.vw.com/2019_Jetta" + } + } + ], + "segments": [ + { + "code": "feK1OBJhjdd", + "name": "Automotive" + }, + { + "code": "tGlEpkd2UFQ", + "name": "New Cars" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "649d7cbd-954f-4323-8e13-0a60708f65a3", + "name": "general", + "startAt": "2017-09-24T19:46:49.548Z", + "endAt": "2019-09-24T19:46:49.548Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c157f639-4c4a-4564-8d83-e9c797ef31e6", + "creativeSets": [ + { + "creativeSetId": "0dbb9893-44f5-4a3c-8142-994254e7d4a5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e6613172-1048-46a1-8b28-df572ce86869", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Mid-Day Dog Walkers | WaggyWalkys.com", + "title": "WaggyWalkys", + "targetUrl": "www.WaggyWalkys.com" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "cJeWKlUNo4Y", + "name": "Dog Store" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1c92e487-7103-4e9a-adaf-1f6d84fd842d", + "name": "general", + "startAt": "2017-09-24T19:46:50.204Z", + "endAt": "2019-09-24T19:46:50.204Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c30c4ab1-923f-4b02-91ea-a5d3b3fbf98c", + "creativeSets": [ + { + "creativeSetId": "e2aab874-5325-44b4-bb52-e31654c7d972", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a635683e-40d9-4edf-aeb5-efba943cc600", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "PhD in Education Degree - Advance Your Career", + "title": "Walden University", + "targetUrl": "https://info.waldenu.edu/walden-programs/education/doctoral-and-post-masters/ph-d-in-education?comm_code=4243400&infinity=ict2~net~mac~ar~%7bcreative%7d~kw~phd%20degrees%20in%20education~mt~b~cmp~SPROG%2BCollege+of+Education+and+Leadership%2BPRTNR%2BUS%2BENG%2BPHD%2BEDU~ag~EDU%2BNON%2BPSF%2BPHD%2BEducation+PHD+Degree%2BBROAD&utm_source=bing&utm_medium=CPC&utm_campaign=SPROG%2BCollege+of+Education+and+Leadership%2BPRTNR%2BUS%2BENG%2BPHD%2BEDU&utm_adgroup=EDU%2BNON%2BPSF%2BPHD%2BEducation+PHD+Degree%2BBROAD&utm_term=phd%20degrees%20in%20education&utm_matchtype=b&utm_content=%7bcreative%7d&msclkid=94018d189bba140e24b4d76aa156d4c6&dskwid=43700006219486817&ds_rl=1245253&gclid=CKnF25yYg9kCFYY-fwod2p8HTg&gclsrc=ds&dclid=CN2f35yYg9kCFQzgZAodGAYIOw" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "ypSZfvvT0RzU", + "name": "homeschooling" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "10222861-6d02-4af5-9ab0-53810d8d9945", + "name": "general", + "startAt": "2017-09-24T19:46:50.771Z", + "endAt": "2019-09-24T19:46:50.772Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "fe53cd0a-ff64-4540-9d28-7746a708b430", + "creativeSets": [ + { + "creativeSetId": "e88f3417-539b-4910-94bb-bab022a6ebfc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "02ebf182-f826-4ff6-a557-03106380a394", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Information Technology Courses – Explore Our Programs Today", + "title": "WaldenuEdu", + "targetUrl": "info.waldenu.edu/Information" + } + } + ], + "segments": [ + { + "code": "6krD5tk28FS", + "name": "Education" + }, + { + "code": "w5KTA-1-lyt", + "name": "Online Education" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e986df9a-e9a7-400c-8539-dc55ee0bb114", + "name": "pharm", + "startAt": "2017-09-24T19:46:51.345Z", + "endAt": "2019-09-24T19:46:51.346Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0997c961-ebac-482f-8c2e-e2e0f3f22974", + "creativeSets": [ + { + "creativeSetId": "79f45847-9417-4369-9ad3-2cb6b0346ff3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "af1f8c4f-afe1-428d-888e-a6a8a9ca5b95", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Walgreens Online Pharmacy‎", + "title": "Walgreens", + "targetUrl": "www.walgreens.com/ ‎" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "sOqbf6PQ3c-", + "name": "Online Pharmacy" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "da62490f-09fc-42cc-b00b-47bf1ae49c42", + "name": "health", + "startAt": "2017-09-24T19:46:51.740Z", + "endAt": "2019-09-24T19:46:51.740Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0997c961-ebac-482f-8c2e-e2e0f3f22974", + "creativeSets": [ + { + "creativeSetId": "4f2aad12-cf35-4b20-9e35-bbc45ceda73b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "822ed82b-8748-4142-9c1d-6b804d504bd7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Walgreens Health Care Products - Shop Walgreens.com Today", + "title": "Walgreens", + "targetUrl": "www.walgreens.com/HealthCare" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "FFlMXuImzk5", + "name": "Asthma Treatment" + } + ] + }, + { + "creativeSetId": "694f4fce-47b9-43d6-92fe-4a6f373b5e98", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8b115e98-90a5-41bf-bea8-8d771337c891", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Walgreens Vitamins Sale - Save Up To 50% Off Vitamins", + "title": "Walgreens", + "targetUrl": "www.walgreens.com/Vitamins" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "5Ry6TcY_ODM", + "name": "Buy Vitamins" + } + ] + }, + { + "creativeSetId": "23c3a84f-9501-4cce-b500-a1c26f979f58", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "695404d0-9ff5-4bf4-bea8-7d7edd58e33a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Walgreens Find Care Now - For Common Illnesses And More", + "title": "Walgreens", + "targetUrl": "www.walgreens.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "ZYCLaYR2JuLH", + "name": "Depression Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8cd9c296-56ac-42de-8a38-0e9df5ad812f", + "name": "entertainment", + "startAt": "2017-09-24T19:46:52.870Z", + "endAt": "2019-09-24T19:46:52.870Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7f3cd979-ba81-4a50-8bdf-32256ad6eaef", + "creativeSets": [ + { + "creativeSetId": "88e6cb37-efe3-447f-ac36-e73c20866460", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "da31f9ac-e782-497f-ba65-dd4dd67a3f00", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Craig Radios at Walmart?? - Save On Quality Craig Radios", + "title": "Walmart", + "targetUrl": "www.walmart.com/Portable_Audio/Radios" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "fRsTAYO2C1M", + "name": "Radio Streaming" + } + ] + }, + { + "creativeSetId": "bfa00dfb-714d-4bbd-81cd-46e5bc83ea85", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "841df8a8-dbe4-4e2a-865b-e1149b4494be", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Televisions at Walmart | walmart.com", + "title": "Walmart", + "targetUrl": "https://www.walmart.com/search/search-ng.do?search_query=Television&adid=22222222284218085640&wmlspartner=wmtlabs&wl0=e&wl1=s&wl2=c&wl3=30682087724&veh=sem" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "UyQaJmfIH-LC", + "name": "television" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9d4c9c81-9512-4944-8d92-c6cbb6f1b5cc", + "name": "tech", + "startAt": "2017-09-24T19:46:54.597Z", + "endAt": "2019-09-24T19:46:54.598Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7f3cd979-ba81-4a50-8bdf-32256ad6eaef", + "creativeSets": [ + { + "creativeSetId": "201f0e53-5f6c-4501-bf8b-1d6170f3d6b0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b30da90e-3cc0-4b98-b6e4-c7bee95d2bf7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cell Phones And Plans - Walmart.com", + "title": "Walmart", + "targetUrl": "walmart.com/Walmart-Family-Mobile" + } + } + ], + "segments": [ + { + "code": "05KGovyhnUj", + "name": "cell phones" + }, + { + "code": "PDcNk9LToal", + "name": "cell phones" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "061d0aa5-1c54-404d-ae93-363cf3e705b4", + "name": "food", + "startAt": "2017-09-24T19:46:54.919Z", + "endAt": "2019-09-24T19:46:54.919Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7f3cd979-ba81-4a50-8bdf-32256ad6eaef", + "creativeSets": [ + { + "creativeSetId": "4359c8f0-6d45-4869-998f-841e603a33d8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c9858d36-f9a0-4704-af1e-9347d51da829", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Cocktails at Walmart - Save On Cocktails at Walmart", + "title": "Walmart", + "targetUrl": "https://www.walmart.com/search/?query=cocktails&&adid=22222222284310928458&wmlspartner=wmtlabs&wl0=e&wl1=s&wl2=c&wl3=32579055414&veh=sem" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "8gTGwAzRV3NE", + "name": "cocktails" + } + ] + }, + { + "creativeSetId": "0cd3dc64-13a7-4389-8d18-eedbe652606a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "34c1ee86-e755-4dfb-8bef-eac99b92927a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Juice at Walmart® – Save On Quality Juice - Walmart.com", + "title": "Walmart", + "targetUrl": "www.walmart.com/Grocery" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "lFMT5ZDQdjc", + "name": "Juice Drinks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "450e5bb6-e5a7-407e-8a97-86b363f4a918", + "name": "beauty", + "startAt": "2017-09-24T19:46:55.523Z", + "endAt": "2019-09-24T19:46:55.523Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7f3cd979-ba81-4a50-8bdf-32256ad6eaef", + "creativeSets": [ + { + "creativeSetId": "95586124-02a3-485e-8029-c81800f3aadc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f615437e-5dfe-45e6-a7ec-27cb0124bea0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Ceramics & Pottery at Walmart® - Save On Ceramics & Pottery", + "title": "Walmart", + "targetUrl": "www.walmart.com/Crafts/Ceramics" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "HXyi8S4OgtE", + "name": "Pottery Tools" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "315c765d-d682-485e-a214-f9f2ba1f6e7c", + "name": "finance", + "startAt": "2017-09-24T19:46:55.839Z", + "endAt": "2019-09-24T19:46:55.840Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7f3cd979-ba81-4a50-8bdf-32256ad6eaef", + "creativeSets": [ + { + "creativeSetId": "c164db78-e197-4f7a-9ee1-d620900bb1c3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "98ecdc23-d4a5-4f21-a22c-4ec6aca618f4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Financing at Walmart - Save On Financing at Walmart", + "title": "Walmart", + "targetUrl": "www.walmart.com/Financing" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "KclHbUft33H", + "name": "Personal Finance" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f16ff761-1daf-4710-a81d-c07fcc8cb25e", + "name": "religion", + "startAt": "2017-09-24T19:46:56.175Z", + "endAt": "2019-09-24T19:46:56.175Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7f3cd979-ba81-4a50-8bdf-32256ad6eaef", + "creativeSets": [ + { + "creativeSetId": "ad18d273-8ad1-49d4-bf01-aec23c9d9be3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5ce67200-6ee1-4e6c-a57c-f2be817f3d7f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Wicca At Walmart", + "title": "Walmart", + "targetUrl": "https://www.walmart.com/search/search-ng.do?search_query=wicca&adid=22222222284217893364&wmlspartner=wmtlabs&wl0=e&wl1=s&wl2=c&wl3=30681902770&veh=sem" + } + } + ], + "segments": [ + { + "code": "bMC__3IU9A", + "name": "Religion" + }, + { + "code": "NdbDcJk-9xoO", + "name": "Wicca" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "afe77a15-59f0-42d5-92d0-f4215deb2f2d", + "name": "sports", + "startAt": "2017-09-24T19:46:56.542Z", + "endAt": "2019-09-24T19:46:56.542Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7f3cd979-ba81-4a50-8bdf-32256ad6eaef", + "creativeSets": [ + { + "creativeSetId": "2bb60f06-0c47-4cf9-883f-3397a58e0105", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7d573c82-97b1-4110-a81b-960db4b89de0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Basketball at Walmart?? - Save On Quality Basketball", + "title": "Walmart", + "targetUrl": "www.walmart.com/Team_Sports/Basketball" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FiDfXRZJaDS", + "name": "Basketball Training" + } + ] + }, + { + "creativeSetId": "743427e8-4dd5-4d74-bbb9-7d8586c45e5a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "4b1ba115-de9d-40fa-b75a-58b95ba1c0ac", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Climbing at Walmart® - Save on Climbing", + "title": "Walmart", + "targetUrl": "https://www.walmart.com/search/?query=climbing&&adid=22222222284310618628&wmlspartner=wmtlabs&wl0=e&wl1=s&wl2=c&wl3=32578634176&veh=sem" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "3iQLT0a89t2C", + "name": "climbing" + } + ] + }, + { + "creativeSetId": "0dbf0971-0ffe-4b94-91ef-b3621cb164a3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dea0aa42-2c6a-418e-b998-16f6473d0bf4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Outdoor Sports at Walmart® - Save On Quality Outdoor Sports", + "title": "Walmart", + "targetUrl": "www.walmart.com/Sports_Outdoors" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "zJrrQvnmCnp", + "name": "Climbing Gear" + } + ] + }, + { + "creativeSetId": "549f24f1-836b-45f9-890f-2bdf78134273", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "eaa4057c-f3fb-4620-8ddb-8dfd8788a4ef", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Hunting Gear & Supplies", + "title": "Walmart", + "targetUrl": "www.walmart.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "5rrqOyiLvSS", + "name": "Hunting Supplies" + } + ] + }, + { + "creativeSetId": "34f4ce9b-7dc3-4b42-9e11-9e6a1caa1a12", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0c615335-3b49-4ebd-8de5-c86a4a65de07", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Outdoor Sports at Walmart® – Save On Quality Outdoor Sports", + "title": "Walmart", + "targetUrl": "https://www.walmart.com/search/?query=kayak+sports&&adid=22222222284311240930&wmlspartner=wmtlabs&wl0=e&wl1=s&wl2=c&wl3=32581032621&veh=sem" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "0tVXN3CtaV0B", + "name": "kayaking" + } + ] + }, + { + "creativeSetId": "edf571f4-0475-4481-b43c-3370ca601d37", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ca962fe9-cba7-414d-a8b6-b6e7ed18ee3c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Canoes, Kayaks & Boats - Save On Canoes, Kayaks & Boats", + "title": "Walmart", + "targetUrl": "www.walmart.com/Sports_Outdoors/CanoeKayakBoat" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "5nUrFtckCYM", + "name": "Kayaking Supplies" + } + ] + }, + { + "creativeSetId": "29b0afbd-9368-46bc-a4f6-0332a1d35e9c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d4ceba90-ec37-4f2c-9d82-056d57e10363", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Skateboards at Walmart - Save On Skateboards at Walmart", + "title": "Walmart", + "targetUrl": "walmart.com/Skateboarding" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FWG6gM9kOij", + "name": "Skateboards" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e5318620-0c52-4774-9aa0-36be01888ce4", + "name": "health", + "startAt": "2017-09-24T19:46:58.533Z", + "endAt": "2019-09-24T19:46:58.534Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7f3cd979-ba81-4a50-8bdf-32256ad6eaef", + "creativeSets": [ + { + "creativeSetId": "a8e58549-d6f1-41cd-a8a9-7183e3e381ab", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "25869d30-b3c4-4856-9b43-694e6de5db28", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Moisturizers at Walmart®", + "title": "Walmart", + "targetUrl": "www.walmart.com/Moisturizers" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "FeUOoTDKpRGk", + "name": "Sports Live" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e2afde7b-f870-494d-8490-8cb206401110", + "name": "food", + "startAt": "2017-09-24T19:46:59.179Z", + "endAt": "2019-09-24T19:46:59.180Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e5a0c717-da4f-4172-8663-7ecfa69a9eea", + "creativeSets": [ + { + "creativeSetId": "5418c04e-55d7-4537-a853-bb2181fd96a5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5f288ce0-2784-4ebd-a332-aceabddece0a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Old Fashioned Cocktail Recipes - Check For Best Offers", + "title": "Wantbargain", + "targetUrl": "wantbargain.com/Cocktail+Recipe" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "EpjpWnjpgxV", + "name": "Drink Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c518e00e-0995-40d1-8863-4cd4bbe81075", + "name": "general", + "startAt": "2017-09-24T19:46:59.762Z", + "endAt": "2019-09-24T19:46:59.763Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5d165d04-116c-4890-9682-ce12393edad0", + "creativeSets": [ + { + "creativeSetId": "059902f8-8d70-4696-a6a1-71ed8af109bc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "331ef002-64dd-46a9-8f3a-7bd641f5765a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "How to Swing Trade Stocks | warriortrading.com", + "title": "Warriortrading", + "targetUrl": "warriortrading.com/swing-trading" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "_PEMAp6RE_k9", + "name": "Learn Stocks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0a5cb4e4-1e76-4c98-8fca-e9e01c8b6528", + "name": "general", + "startAt": "2017-09-24T19:47:00.342Z", + "endAt": "2019-09-24T19:47:00.343Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "54241ccf-80e3-4289-9c7d-6c2f26e73944", + "creativeSets": [ + { + "creativeSetId": "92064024-1350-4cd8-a636-d73318e87aac", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d14215dd-734c-480f-9e3a-7e5b175b7188", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Honda CR-V vs Forester - Compare And Shop", + "title": "Washingtonareahondadealers", + "targetUrl": "www.washingtonareahondadealers.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "A7P6uoAIgzo", + "name": "Forestry Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "103f6a83-fac6-4216-ae8a-5d7d47035fdc", + "name": "general", + "startAt": "2017-09-24T19:47:00.936Z", + "endAt": "2019-09-24T19:47:00.937Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "10afee9d-1dc1-482c-9b87-6d91d364704b", + "creativeSets": [ + { + "creativeSetId": "a05f2881-3471-4896-be75-780a6aaa6eb3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ad4452bc-09ab-429f-a5f4-d5e90fc6507e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Stream 1000s of Movies Free - Anytime, Anywhere On-Demand", + "title": "Watchvudu", + "targetUrl": "watchvudu.com" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "mRgPV84LYAT", + "name": "Stream Movies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1ba50258-7b7b-4efe-ade6-ae57e6cc9088", + "name": "home", + "startAt": "2017-09-24T19:47:01.552Z", + "endAt": "2019-09-24T19:47:01.552Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3ff347a6-a243-45e6-929b-423d01c1cc3e", + "creativeSets": [ + { + "creativeSetId": "7a35d21d-4aee-46da-ae00-122ea5d0135a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "093b622f-961b-4c11-a8d2-a232a6523f5f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Wayfair Home Goods Sale - Furniture, Lighting & More", + "title": "Wayfair", + "targetUrl": "www.wayfair.com/Home-Goods/Free-Shipping" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "JdIppC2dyV9", + "name": "Home Furniture" + } + ] + }, + { + "creativeSetId": "a1819a62-1d76-4a49-96fc-fa83b6a11e32", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "55d97250-1f0c-4cd1-a662-fa9e94bfeee5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Coffee Makers Wayfair®", + "title": "Wayfair", + "targetUrl": "www.wayfair.com/Coffee-Makers" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "6mVbUr4iL4O", + "name": "Coffee Cups" + } + ] + }, + { + "creativeSetId": "18266076-1802-419f-977b-c798ca9ced18", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3dae328d-208c-4a04-b770-c963de37775b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Decorative Objects at Wayfair® - Up to 70% Off Top Selections", + "title": "Wayfair", + "targetUrl": "https://www.wayfair.com/decor-pillows/sb1/food-drink-decorative-objects-c215465-a9431~31438.html" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "D21i4-0UZjZO", + "name": "food & drink" + } + ] + }, + { + "creativeSetId": "9d161578-7c6b-4704-aa15-2f46b0bff5e6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "64663c9a-afa8-4e03-b358-6eebd2b603ad", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Wayfair Furniture & Home Décor - Save Up To 70% Off Top Brands", + "title": "Wayfair", + "targetUrl": "www.wayfair.com/Furniture-Sale/Free-Shipping" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "T4rhcMPPBhp", + "name": "Home Décor" + } + ] + }, + { + "creativeSetId": "c1198fac-cd29-4a47-9428-170cd754bc8d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bcc64c0c-7c73-4fab-ac4f-93f51c61436f", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Terra Cotta Planters", + "title": "Wayfair", + "targetUrl": "www.wayfair.com/Terra-Cotta-Planter" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "HXyi8S4OgtE", + "name": "Pottery Tools" + } + ] + }, + { + "creativeSetId": "00007a72-c207-49a7-863a-f14e8bee41e2", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "f8c8ef7f-ab8a-4725-abbf-540c70434f58", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Quality Artificial Grass", + "title": "Wayfair", + "targetUrl": "www.Wayfair.com/Indoor-Plants" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "u3b4RF02Ctr", + "name": "Artificial Lawns" + } + ] + }, + { + "creativeSetId": "62abe288-baa7-4fbe-a242-6ad04d01f340", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fcc4d2b7-fbc5-4ec7-bcdd-5165030ead90", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Wayfair Home Decorating - Wayfair.com", + "title": "Wayfair", + "targetUrl": "www.Wayfair.com" + } + } + ], + "segments": [ + { + "code": "u9Q6PNpWqbW", + "name": "Home" + }, + { + "code": "iOSOYZ7Fm9M", + "name": "Home Decorating" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c70b310e-424f-4eb4-ac7a-8741a470bbdb", + "name": "pets", + "startAt": "2017-09-24T19:47:03.480Z", + "endAt": "2019-09-24T19:47:03.480Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3ff347a6-a243-45e6-929b-423d01c1cc3e", + "creativeSets": [ + { + "creativeSetId": "911b6393-3bdd-4c9d-86d4-bfc9c7c72ffb", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d4273c20-a54d-45ec-ae6b-a6e0807dcb84", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "American Aquariums", + "title": "Wayfair", + "targetUrl": "www.wayfair.com/Pets" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "T2fnJ3M0GxS", + "name": "Aquarium Supplies" + } + ] + }, + { + "creativeSetId": "79b917dd-3cd4-4251-bc0f-c7a550ae570f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ada44e9e-b778-415d-933d-33b73b226212", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Wayfair® Cat Condos", + "title": "Wayfair", + "targetUrl": "www.Wayfair.com/FutonMattress.com" + } + } + ], + "segments": [ + { + "code": "SGRi7HWJK3", + "name": "Pets" + }, + { + "code": "6BRJuRThFS_", + "name": "Cat Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "d120a84a-2e20-4a50-ae4d-7906b706fe80", + "name": "sports", + "startAt": "2017-09-24T19:47:04.130Z", + "endAt": "2019-09-24T19:47:04.130Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3ff347a6-a243-45e6-929b-423d01c1cc3e", + "creativeSets": [ + { + "creativeSetId": "ac2d5a8f-aac1-424a-8ffa-e5628925152b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "851db159-7586-4472-8c78-4af2e7464867", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Wayfair Electronic Dartboards - All Orders Over $49 Ship Free", + "title": "Wayfair", + "targetUrl": "www.wayfair.com/Dartboards/Free-Shipping" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "gxL4h38VZWH", + "name": "Darts Supplies" + } + ] + }, + { + "creativeSetId": "0a5a7817-2bc9-4434-89ff-024949c1b763", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9a197b4a-3380-46f2-9326-54abf96482e0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Clearance Rowing Machine", + "title": "Wayfair", + "targetUrl": "www.Wayfair.com/Rowing-Machines" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "YGCofQVxBiL", + "name": "Rowing Gear" + } + ] + }, + { + "creativeSetId": "b30b81fb-bd4c-4c1e-abe1-a19efa982dcd", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "76d952a6-d43a-4857-92c2-b617deb80592", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Wayfair Dartboards - All Orders Over $49 Ship Free", + "title": "Wayfair", + "targetUrl": "www.wayfair.com/Dartboards/Free-Shipping" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "3D-SZ1qdKFCP", + "name": "Sports News" + } + ] + }, + { + "creativeSetId": "ea2dab7f-6407-4e36-a302-8149c6d6a1c5", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ce8605cc-9021-432c-899c-94db0707ecc0", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Swimming Pools at Wayfair - Great Swimming Pools", + "title": "Wayfair", + "targetUrl": "https://www.wayfair.com/outdoor/cat/hot-tubs-saunas-c435141.html" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "vyq0Fk0NhyFP", + "name": "swimming" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b37d5760-6f04-4fd4-a8b1-fe6cf3c1613d", + "name": "finance", + "startAt": "2017-09-24T19:47:05.588Z", + "endAt": "2019-09-24T19:47:05.589Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "435212db-3ca2-45e3-802b-0b4d0e0613f0", + "creativeSets": [ + { + "creativeSetId": "1a0bb91d-d9f8-49e5-9792-8011b5ddddaf", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "469504a0-c138-4a3f-a6bc-a3fb5799b292", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Webinar- Learn To Swing Trade - Warrior Trading??? Official Site", + "title": "Webinar.warriortrading", + "targetUrl": "webinar.warriortrading.com/Webinar/Swing_Trading" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "_PEMAp6RE_k9", + "name": "Learn Stocks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "be527427-1e22-4884-87ae-1ec39b6c81fe", + "name": "health", + "startAt": "2017-09-24T19:47:06.178Z", + "endAt": "2019-09-24T19:47:06.179Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2d26c916-f9dd-4fd8-9ce9-6335bdaa86f0", + "creativeSets": [ + { + "creativeSetId": "bac5e80f-0f93-46ea-9296-b91165593a8f", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "830d8f70-aa89-4f18-8efc-acb1b367333c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Best Epilepsy Treatments – Find More Information - Webmd.com", + "title": "WebMD", + "targetUrl": "http://topics.webmd.com/topic/4/Best+Epilepsy+Treatments/?utm_campaign=5XT60N4&utm_term=epilepsy&utm_medium=b&g_ti=kwd-303850403607&g_de=c&g_ci=363306711&g_ai=9671070986&utm_content=1" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "sDeMzpcpEbK0", + "name": "epilepsy" + } + ] + }, + { + "creativeSetId": "eff4e64d-7503-4d61-b540-e49627e6fed0", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3a2ced42-0a69-42b7-90a2-1b6831637bf1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "10 Surprising Health Benefits of Sex - WebMD", + "title": "WebMD", + "targetUrl": "https://www.webmd.com/sex-relationships/guide/sex-and-health#1" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "9kLut8pNXlej", + "name": "sex" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a7639f73-14c6-46c5-8c1d-8de11fe5da52", + "name": "food", + "startAt": "2017-09-24T19:47:07.072Z", + "endAt": "2019-09-24T19:47:07.073Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6346d8b5-4373-4bc4-a594-0f61a3226297", + "creativeSets": [ + { + "creativeSetId": "4a3daa65-3efe-45b5-b5dc-faeb358f08c3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9f0d20ea-38cb-4e9a-9676-188a818aaeea", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Coffee Cups – No Wait, No Hassle, Save Big", + "title": "Webstauran", + "targetUrl": "www.webstaurantstore.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "6mVbUr4iL4O", + "name": "Coffee Cups" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f964621f-d2e6-427b-8bdd-d6c5ed52771f", + "name": "finance", + "startAt": "2017-09-24T19:47:07.665Z", + "endAt": "2019-09-24T19:47:07.666Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1d851254-0d21-4b80-8b1b-de3a636ccb68", + "creativeSets": [ + { + "creativeSetId": "dfad0798-9ea9-4e6a-87f8-73f55504934d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a8a3c35d-ae11-4dab-baa5-5e8714c276ae", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Wells Fargo Mobile Banking - Open a Wells Fargo Account", + "title": "Wee.wf", + "targetUrl": "welcome.wf.com/checking" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "7MiD5IH1W6t", + "name": "Bank Accounts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "123ff85a-e985-42c8-8547-16ac0ca75b46", + "name": "general", + "startAt": "2017-09-24T19:47:08.307Z", + "endAt": "2019-09-24T19:47:08.308Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d7f732a7-6664-4853-a609-d5cf3606e401", + "creativeSets": [ + { + "creativeSetId": "06843c34-1e05-49d3-a468-aa6335b180ee", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8111451c-34f7-48d8-94b3-346ec19c7d6a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Wegmans Memphis BBQ Ribs | Easy Weeknight Meals‎", + "title": "Wegmans", + "targetUrl": "www.wegmans.com/summercooking ‎" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "9Roh9lJ0tSd", + "name": "Cooking Recipes" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "11e2ea30-b780-4d26-9331-4bde292586a1", + "name": "general", + "startAt": "2017-09-24T19:47:08.903Z", + "endAt": "2019-09-24T19:47:08.903Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ee778cd0-7461-441d-8618-ea1956e083d8", + "creativeSets": [ + { + "creativeSetId": "9e15aa55-1528-4e87-a388-cbd3f053f4bc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6c741e0d-4cd5-4038-925b-9f8603512ab5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Weisco Signs & Awards, Inc | Medal Companies‎", + "title": "Wei", + "targetUrl": "www.weiscoinc.com/ ‎" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "GElRy07ca5jr", + "name": "Cricket Medals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "3962ba06-2564-4cde-ab23-ec742154794c", + "name": "general", + "startAt": "2017-09-24T19:47:09.524Z", + "endAt": "2019-09-24T19:47:09.524Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d1599467-83e4-4a1f-a16a-b217e1ed7fd2", + "creativeSets": [ + { + "creativeSetId": "0e803973-3523-4f6a-a574-42da7356cf77", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "665cea5f-0f25-4e71-b105-e0970a3cc4e5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Weight Loss Tablets. - Custom Weight Loss Plans‎", + "title": "Weightlossandvitality", + "targetUrl": "www.weightlossandvitality.com/ ‎" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "c447c11d-7bb0-433f-b4ae-07229f270264", + "name": "general", + "startAt": "2017-09-24T19:47:10.152Z", + "endAt": "2019-09-24T19:47:10.153Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4a1cc845-c189-4f3b-a780-f36567d14c10", + "creativeSets": [ + { + "creativeSetId": "f4821b40-a508-4f51-b903-8e1fba08d57e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "24fa396a-16de-462d-8369-6b4ca8518b68", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Heal Stress Fractures", + "title": "Weimusculoskeletalinstitute", + "targetUrl": "weimusculoskeletalinstitute.org" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "3p24XjIze4TV", + "name": "Stress Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "868aba00-0a1d-4a93-b32a-64e357367784", + "name": "general", + "startAt": "2017-09-24T19:47:10.819Z", + "endAt": "2019-09-24T19:47:10.819Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "9f755ef9-ac72-42d5-b7f6-71c088c3abd6", + "creativeSets": [ + { + "creativeSetId": "b4ccb740-052f-451b-977d-1d0a8d1854b4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "fab9b9cf-31a4-4c1c-8437-b622cfd7020a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop for funny wine gifts | for that special person‎", + "title": "Wellhungvineyard", + "targetUrl": "www.wellhungvineyard.com/ ‎" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "REQQSgV4UzG", + "name": "Wine" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5d061182-d0cd-4698-99d7-4b131f06a469", + "name": "general", + "startAt": "2017-09-24T19:47:11.502Z", + "endAt": "2019-09-24T19:47:11.503Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a8bd6a91-32c3-4673-b129-192789c436c1", + "creativeSets": [ + { + "creativeSetId": "6a575283-8717-4e3f-8620-b6348275c785", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "735b2e43-3474-4810-8885-14fd0a68cfa1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Publish A Christian Book", + "title": "WestbowPress", + "targetUrl": "www.WestbowPress.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "KjrAF8XxEDc", + "name": "Book Publishing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "7658bfac-a7b9-4e7f-ae5d-a0c0e388c270", + "name": "general", + "startAt": "2017-09-24T19:47:12.093Z", + "endAt": "2019-09-24T19:47:12.094Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c1a0e83f-1392-4cf1-9455-ebc1d392d97e", + "creativeSets": [ + { + "creativeSetId": "c6b98a56-e828-4142-a8f7-7ad7a2cc2ea4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5ccc388b-a39f-49e3-a200-cdc99e5c66c6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Westgate Resorts Specials - Orlando, FL - 3 Days From $59", + "title": "Westgatereservations", + "targetUrl": "www.westgatereservations.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "6gRfXQJbCmu", + "name": "Vacation Deals" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b5bd34f5-395a-4985-b7a6-583e24113024", + "name": "general", + "startAt": "2017-09-24T19:47:12.681Z", + "endAt": "2019-09-24T19:47:12.682Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "ae716803-0c96-4910-a4ee-cd952b360129", + "creativeSets": [ + { + "creativeSetId": "14bace41-16bf-4964-8765-25cf4663d214", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a536384e-494a-4bd7-ad3d-b881581ac9c9", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Kayak Accessories - Shop at West Marine", + "title": "Westmarine", + "targetUrl": "www.westmarine.com" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "5nUrFtckCYM", + "name": "Kayaking Supplies" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "922df557-4bc6-4d7a-83f4-e8c05d299dd1", + "name": "general", + "startAt": "2017-09-24T19:47:13.301Z", + "endAt": "2019-09-24T19:47:13.302Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4f6acace-df8d-42ab-8aec-166aad215f9e", + "creativeSets": [ + { + "creativeSetId": "9f92cf4c-de88-440c-b2e0-f8af06e0124b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "2df4f523-e448-4da9-aac6-534d062527cc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Whisky and Bourbon experts - Buy now and have delivered", + "title": "Whiskyliquo", + "targetUrl": "www.whiskyliquorstore.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "unFLrtorUoq", + "name": "Alcohol Delivery" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "eb4e4a85-ab59-40dd-aa81-6efcc117d8eb", + "name": "general", + "startAt": "2017-09-24T19:47:13.879Z", + "endAt": "2019-09-24T19:47:13.879Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "09b8c915-99cd-404d-b39d-f7807f9d43c8", + "creativeSets": [ + { + "creativeSetId": "6f7f16e8-3dc0-43c8-b700-591567a3da26", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1cf2d9f3-4a09-408d-ae44-77c7ab4d6c24", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Compare Cell Phone Plans - Free plan comparison, no sign up", + "title": "WhistleOut", + "targetUrl": "WhistleOut.com/CellPhones" + } + } + ], + "segments": [ + { + "code": "05KGovyhnUj", + "name": "cell phones" + }, + { + "code": "PDcNk9LToal", + "name": "cell phones" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "99ed43eb-2660-425d-893c-538c7e59005f", + "name": "general", + "startAt": "2017-09-24T19:47:14.470Z", + "endAt": "2019-09-24T19:47:14.470Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "3a55a55a-98a1-4fdc-b1ad-9e8f1a159fee", + "creativeSets": [ + { + "creativeSetId": "d97be386-888a-4b74-afd9-4b2e18abcece", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "23a43375-5be0-4cb4-92f1-d57f99161838", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Shop for Barbecue Grills - (Recommended Online Store) | wholesalepatiostore.com", + "title": "Wholesale Patio Store", + "targetUrl": "http://www.wholesalepatiostore.com/Outdoor-Cooking/BBQ-Grills/?msclkid=cf08bace7fbf181c402ae09b76695c48&utm_source=bing&utm_medium=cpc&utm_campaign=BBQ%20Grills%20-%20Categories%20-%20JF&utm_term=barbecue%20grills&utm_content=Barbecue%20Grill%20-%20Only" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "Bv9AP2BjUIiv", + "name": "barbecues & grilling" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f48ea2ee-1656-49ef-af88-a931cb319007", + "name": "general", + "startAt": "2017-09-24T19:47:15.062Z", + "endAt": "2019-09-24T19:47:15.062Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "5a4e90ce-c6d6-4149-805d-120d4cf00caf", + "creativeSets": [ + { + "creativeSetId": "f2bec765-ff34-42d6-8d07-3bbb16641531", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c40e8104-e9f8-4a9a-b10d-4745d0604d10", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Searching For Wine?", + "title": "Winc", + "targetUrl": "www.Winc.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "REQQSgV4UzG", + "name": "Wine" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a20ae38f-f007-4253-916a-0d9997dd8afd", + "name": "general", + "startAt": "2017-09-24T19:47:15.632Z", + "endAt": "2019-09-24T19:47:15.634Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "369758a1-2983-4f6f-b0ac-b3b57d0956cc", + "creativeSets": [ + { + "creativeSetId": "e10c3923-5123-4522-ae15-ca51900bf7ca", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a45cbd4e-9b3f-4a13-9cee-dd8a5949c15b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Wine.com - Wine Online - The #1 Rated Online Wine Store", + "title": "Wine", + "targetUrl": "www.Wine.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "REQQSgV4UzG", + "name": "Wine" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8f483967-bc0c-45d7-bf2a-e857ea81b379", + "name": "general", + "startAt": "2017-09-24T19:47:16.229Z", + "endAt": "2019-09-24T19:47:16.230Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4bdbb913-0fab-4b43-8c14-120a0cfdd341", + "creativeSets": [ + { + "creativeSetId": "c0c94318-8628-4c35-b27b-2755d4a02510", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8155c58e-e40d-4819-be18-d1d06ca0bd6b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online IT Degree From UW - 100% Online. Self-Paced Program", + "title": "WisconsinEdu", + "targetUrl": "flex.wisconsin.edu/it-degree" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "rNd-q2umuLA", + "name": "IT Online Courses" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "fdfdd3ef-2535-45e4-8ec5-b40b8a9523da", + "name": "general", + "startAt": "2017-09-24T19:47:16.886Z", + "endAt": "2019-09-24T19:47:16.886Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4766fc49-26a5-44a9-b211-bab46e35c70d", + "creativeSets": [ + { + "creativeSetId": "e753b617-d423-4493-b1f3-0f703ab584c8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7a9a173c-ab4b-40dc-a77b-bc538ca87333", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Make an eCommerce Website - Wix Makes it so Easy. - wix.com", + "title": "Wix", + "targetUrl": "www.wix.com/Make-Ecomm/Site" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "zgMSYI-gfMo", + "name": "eCommerce Websites" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "bf6ae9d6-7a9b-4bb8-9985-f1251ee0ceab", + "name": "general", + "startAt": "2017-09-24T19:47:17.485Z", + "endAt": "2019-09-24T19:47:17.486Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "47c8b078-01ab-4340-b429-e11c7b7857b7", + "creativeSets": [ + { + "creativeSetId": "997b684f-9d3b-4b14-a3b9-eb8e53bb2f0e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d7f10125-eddd-4c36-8ebc-823acc0145c6", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Start Making $550-$650 at Home - Working 4hr/Week Typing Online", + "title": "Wizooo", + "targetUrl": "wizooo.com" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "2YtFT0-MFv1", + "name": "Job Search" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5d9ae035-a16f-4d0e-8cb9-5ffc4422ef3f", + "name": "general", + "startAt": "2017-09-24T19:47:18.063Z", + "endAt": "2019-09-24T19:47:18.063Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "6cd49fb4-5daa-41d7-8486-a04cfa4e1350", + "creativeSets": [ + { + "creativeSetId": "3abecbfd-e2fa-4f7f-989f-7e3d5cc71156", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "a7a277a8-5a3f-42b6-94d1-12a9eebd2c93", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Woman Within Fashion - In Sizes 12W And Up | womanwithin.com", + "title": "Womanwithin", + "targetUrl": "www.womanwithin.com/Fashion" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "cKE--V39Tbj", + "name": "clothing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0f11b110-2b53-4aa2-babe-afd657076b42", + "name": "general", + "startAt": "2017-09-24T19:47:18.692Z", + "endAt": "2019-09-24T19:47:18.693Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "7df6d18b-50d6-4c2a-804f-007a3ec68e3e", + "creativeSets": [ + { + "creativeSetId": "27195828-ac9d-4341-aad8-7a477bb16804", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9d755254-7baa-4766-b6ad-226929cffaf1", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Natural Thyroid Supplement - Iodine, Selenium & Vital Herbs", + "title": "Womenshealt", + "targetUrl": "www.womenshealthnetwork.com" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "Q9F_XhEg8W_", + "name": "Thyroid Books" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "083532b5-782c-47f1-b827-de94623f6090", + "name": "general", + "startAt": "2017-09-24T19:47:19.317Z", + "endAt": "2019-09-24T19:47:19.317Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "4c48ddef-3a5d-4c35-808d-9ec75d7d8e1a", + "creativeSets": [ + { + "creativeSetId": "5de46773-62c2-4c20-a5c0-92bdafc4b931", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "719b5c8a-7db7-4c48-86ce-89879227d7cc", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Woodworking Profits - Start Your Home Based Business", + "title": "Woodprofits", + "targetUrl": "www.woodprofits.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "sa6bkvlxwxQ", + "name": "Woodworking Projects" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "4dd8a250-ad9f-4594-a866-71b9ec05d774", + "name": "general", + "startAt": "2017-09-24T19:47:19.916Z", + "endAt": "2019-09-24T19:47:19.916Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "448d30a7-bddb-49b7-9344-67ab4d0f38eb", + "creativeSets": [ + { + "creativeSetId": "66908ae1-db1d-4401-a5c7-6a6081c44f02", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9c879b8d-9f0f-4925-b793-53659823d28e", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "PicoBrew Craft Beer Appliances - Shop Now At Woody's Home Brew", + "title": "Woodyshomebrew", + "targetUrl": "woodyshomebrew.com/PicoBrew/Appliances" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "sSHTp7EuwPZ", + "name": "Brewery Kits" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8133dfcf-7e99-4dae-b6e1-1c36a0eb6ed8", + "name": "general", + "startAt": "2017-09-24T19:47:20.490Z", + "endAt": "2019-09-24T19:47:20.490Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b30e31b6-b9ec-4f9a-88df-25f411f27051", + "creativeSets": [ + { + "creativeSetId": "fb7032a4-b630-4df1-ae7b-3d7b3d5cdc1c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3d80c6a0-a50f-4720-a52d-74753c7658f7", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Online Game World of Tanks - Fight players across the world", + "title": "Worldoftanks", + "targetUrl": "worldoftanks.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "o7Q1hjps7Vm", + "name": "Online PC Games" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "97b6f049-d225-418a-aa56-0d5a9414ca55", + "name": "general", + "startAt": "2017-09-24T19:47:21.100Z", + "endAt": "2019-09-24T19:47:21.100Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "48e386de-b8f8-4ce5-b498-4de5176b5e00", + "creativeSets": [ + { + "creativeSetId": "5a4ae2c0-4718-4b02-ad10-0a2cbac64073", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "71256f62-e079-4c8c-95cb-6ac2cf8e3d43", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "World Rugby Shop - Huge selection of rugby gear", + "title": "Worldrugbyshop", + "targetUrl": "www.worldrugbyshop.com/rugby/store" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "kQoevuYFc0X", + "name": "Rugby News" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "79436657-f1dd-4e94-8318-b67202a49b75", + "name": "general", + "startAt": "2017-09-24T19:47:21.688Z", + "endAt": "2019-09-24T19:47:21.689Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "1738bcaf-3cfa-42f4-b144-ba4e4d17abef", + "creativeSets": [ + { + "creativeSetId": "2799cbab-1fa1-4f15-bbc9-c92381dbfc57", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9f27d258-f9d5-4b19-9f70-291eb9cbab51", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Weather - Check the Weather Now - Weather", + "title": "Worldwide Forecasts", + "targetUrl": "http://www.worldwideforecasts.com/b/index.html?aff_sub=NL01R15178755321634q5X2zHqXo1976US&utm_term=weather&utm_campaign=bing&utm_content=new-weather%20-%20Weather%20-%202&utm_medium=Search_SEM&utm_source=7&nlhash=BR6et8ISl5dCdAHF&requestId=NL01R15178755321634q5X2zHqXo1976US" + } + } + ], + "segments": [ + { + "code": "NyvxD7vSUHM", + "name": "weather" + }, + { + "code": "AhWSY7eBxRvU", + "name": "weather" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "617f639b-27fa-4a8e-8b0b-f30e2dfca2b7", + "name": "general", + "startAt": "2017-09-24T19:47:22.269Z", + "endAt": "2019-09-24T19:47:22.269Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "15f6760a-711f-4372-a415-9d4d04564488", + "creativeSets": [ + { + "creativeSetId": "75ef1b80-fdec-49aa-9d33-ff412b43dc7a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3bb3a5bc-5100-4bfb-ae9d-10b2124946aa", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Quality Woodworking Projects - Best Projects For Woodworking", + "title": "Wouvu", + "targetUrl": "wouvu.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "sa6bkvlxwxQ", + "name": "Woodworking Projects" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "779c8c2a-0cfb-4969-8431-52d8b9551f50", + "name": "general", + "startAt": "2017-09-24T19:47:22.851Z", + "endAt": "2019-09-24T19:47:22.851Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "818748ee-282f-448d-aaab-c09a02bc6dd8", + "creativeSets": [ + { + "creativeSetId": "593721a2-df60-49f9-ad18-ad54ce095046", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "822eb6ee-c327-4e98-80f5-94db4f4e2575", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Wrongful Death Attorneys | WrongfulDeathLawFirms.com", + "title": "WrongfulDeathLawFirms", + "targetUrl": "WrongfulDeathLawFirms.com" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "E_MEtpVexy1", + "name": "Find a Lawyer" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "f4061ae2-133b-4402-85f5-6a613e49e261", + "name": "general", + "startAt": "2017-09-24T19:47:23.441Z", + "endAt": "2019-09-24T19:47:23.441Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d1331f2b-bdd9-4c91-99a5-721374fdfcb3", + "creativeSets": [ + { + "creativeSetId": "e275cbc5-48d0-4f54-aeb9-a39570ce7b50", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "82e6ccc8-b9bd-49ea-b6c9-90a2c09e17ad", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Noom: Weight Loss Program - Improve Your Health With Noom", + "title": "Ww1.noom", + "targetUrl": "ww1.noom.com/weight-loss" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "86afb9f1-6b79-4b44-8808-faa9e92582ed", + "name": "general", + "startAt": "2017-09-24T19:47:24.015Z", + "endAt": "2019-09-24T19:47:24.015Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8d81d9af-dfc9-46d3-90d9-7b5aaf853018", + "creativeSets": [ + { + "creativeSetId": "eab4a20f-1f9a-4ea6-a899-d7097896d516", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b6c33562-a52c-4624-ab4d-741186829dae", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Self-Publishing Company - Learn How To Self-Publish Your Book", + "title": "XLibris", + "targetUrl": "https://www.xlibris.com/LP02F10C007.aspx?cat=ppc&ls=search+engine&src=sal&gkw=Self+Publishing+A0Y0A0&kw=Self+Publishing+BYSP" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "bjDDA0AkPgKh", + "name": "publishing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e6fc8ab8-a3a9-45bd-9fe3-650cc3a0dcf1", + "name": "general", + "startAt": "2017-09-24T19:47:24.588Z", + "endAt": "2019-09-24T19:47:24.588Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "706d1b9b-06a5-4d92-bbcb-a5a1f08381bf", + "creativeSets": [ + { + "creativeSetId": "f7e9a517-ab56-4085-8060-7caa882aa939", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "e164b26f-3388-46e2-8289-c666ad881878", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Buy Real Estate on Xome® - Search 1000s Of Properties", + "title": "Xome", + "targetUrl": "xome.com" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "UCZ9mWvmOvyi", + "name": "Buy Real Estate" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "0a5de3d7-e49e-4e34-b13a-f64e92c30d1b", + "name": "general", + "startAt": "2017-09-24T19:47:25.167Z", + "endAt": "2019-09-24T19:47:25.168Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e9dc5b7f-603f-4f8c-923a-b3e8f97fdeab", + "creativeSets": [ + { + "creativeSetId": "b2bfc03c-d4bf-4f1b-b071-c19e7be29e82", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "67a1ed75-38b7-4b03-8fea-84ae410a7abe", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Xstamper Online Store - Lifetime Guarantee Included", + "title": "Xstamperonline", + "targetUrl": "www.xstamperonline.com" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "12wGC9Ye4QL", + "name": "Rare Stamps" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "13896682-9904-41d6-8265-15fd8459555a", + "name": "general", + "startAt": "2017-09-24T19:47:25.752Z", + "endAt": "2019-09-24T19:47:25.753Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "656c3827-a82c-4b1e-8938-494f415ddc20", + "creativeSets": [ + { + "creativeSetId": "0e8bd6b3-1238-45b0-b42e-407addf2bca3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "53ab9341-e9db-49da-bf2c-a0b1f9dff323", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "How To Write A Book - Free Self-Publishing Guide", + "title": "Xulon Press", + "targetUrl": "http://getmyguide.xulonpress.com/bing/?utm_source=bing&utm_medium=cpc&utm_campaign=Keywords&utm_term=write&utm_content=Writers" + } + } + ], + "segments": [ + { + "code": "N6AX5kDbww", + "name": "Hobbies & Interests" + }, + { + "code": "J13c26Ztep3t", + "name": "writing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "36fe8a7c-3576-4f6c-b90f-12fca8a2a487", + "name": "general", + "startAt": "2017-09-24T19:47:26.303Z", + "endAt": "2019-09-24T19:47:26.303Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "fd082dfe-0d50-4864-8295-a67adc8d3281", + "creativeSets": [ + { + "creativeSetId": "5939369d-c65d-45b9-a423-56e6f72c572c", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "63367bb5-c190-4209-863e-7bc1cae81537", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Chronic Pain Treatment - Signs, Causes & Natural Cure", + "title": "Yearend.di", + "targetUrl": "yearend.discount/Pain-Management/Doctors" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "RhUDc8iP5Xa", + "name": "Chronic Pain Treatment" + } + ] + }, + { + "creativeSetId": "95d6ec62-4f0a-489b-87cf-9e98f39467c7", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3e55aa38-99a3-43d9-8bb7-2afb563e55f4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Automation Software - Get Best Recommendations", + "title": "Yearend.di", + "targetUrl": "yearend.discount/Email-Software/Automated" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "mAWzKREQPg8", + "name": "Automation Software" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "e383f7cc-bfcc-4ba9-9613-9c1fc701e2f7", + "name": "general", + "startAt": "2017-09-24T19:47:27.124Z", + "endAt": "2019-09-24T19:47:27.124Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c151b38c-61bd-498f-8be3-5d6c890a91f6", + "creativeSets": [ + { + "creativeSetId": "f319d240-baec-4def-82b6-f76bb36bd416", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "24cd91f3-d867-46c7-a8ed-f114696f447b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Yellow Pages Local Listings - Develop Your Brand Image", + "title": "Yellowpages", + "targetUrl": "www.yellowpages.com/Business/Listings" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "8BeGmq3KFPtE", + "name": "Local Listings" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6d2beaa1-3051-460e-838d-b03a3d5e1a02", + "name": "general", + "startAt": "2017-09-24T19:47:27.718Z", + "endAt": "2019-09-24T19:47:27.719Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bd1676c2-6e2f-49e9-9d99-dfc986642d33", + "creativeSets": [ + { + "creativeSetId": "ad8e1600-4456-4c73-abbf-fd670140a49b", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "cc955bf8-6561-482b-8d1f-d061335bc904", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Luxury African Safaris - Bespoke Vacations From $4500pp", + "title": "Yellowzebrasafaris", + "targetUrl": "www.yellowzebrasafaris.com" + } + } + ], + "segments": [ + { + "code": "dS-79RcGen", + "name": "Travel" + }, + { + "code": "lvYt-vwY0ml", + "name": "Travel Tours" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "1c22c66b-7d50-4ff7-ac28-71a47f36bb79", + "name": "general", + "startAt": "2017-09-24T19:47:28.690Z", + "endAt": "2019-09-24T19:47:28.691Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "bbc1943a-60c6-4815-8ca1-1442ec25ec7b", + "creativeSets": [ + { + "creativeSetId": "595e481a-a595-424f-870e-58d28604dc26", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "bc148004-011b-459e-b60c-05b409c1bfb5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Advertise Your Business - Get your business listed", + "title": "Yext", + "targetUrl": "http://www.yext.com/pl/adc-businessadvertising-e/index.html?kw=business%20advertising&ad=%7Bcreative%7D&mt=e&pos=%7Badposition%7D&network=s&msclkid=2045e96e39ea1d0489e6b316d0ab0564" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "pSSfzbZ-yBBp", + "name": "advertising" + } + ] + }, + { + "creativeSetId": "219dc4f4-0a88-4a5b-84c1-a1faabd17e5d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "6ecc9255-4e62-4332-9a0b-85ea984c0917", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "List Your Business Here - You. In Control. Everywhere.", + "title": "Yext", + "targetUrl": "yext.com/Local_Listings" + } + } + ], + "segments": [ + { + "code": "3UMfANcU0I", + "name": "Business" + }, + { + "code": "8BeGmq3KFPtE", + "name": "Local Listings" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "ddfe1465-c65e-4d21-a027-37a710d7620c", + "name": "general", + "startAt": "2017-09-24T19:47:29.717Z", + "endAt": "2019-09-24T19:47:29.717Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "c9f375f1-d4bc-4570-94f5-dc587280c5eb", + "creativeSets": [ + { + "creativeSetId": "8339a915-0ade-4b9a-bab6-8c0c2354c2fc", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "c3171e2c-a7be-4332-bcc8-9af0fe5c21e4", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Watch Radio - Full Movies Online", + "title": "Yidio", + "targetUrl": "www.yidio.com/Radio" + } + } + ], + "segments": [ + { + "code": "elchqV0qNh", + "name": "Arts & Entertainment" + }, + { + "code": "fRsTAYO2C1M", + "name": "Radio Streaming" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b4667797-6030-415f-b5eb-bbc29019a544", + "name": "general", + "startAt": "2017-09-24T19:47:30.282Z", + "endAt": "2019-09-24T19:47:30.282Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "054765d5-5f94-4b7b-a8e2-19d1fcd61b17", + "creativeSets": [ + { + "creativeSetId": "8c72d96c-0732-4fa0-8558-f747f1f7d7e3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "8e4f1742-07e9-4f2a-b1d4-2b354fb26677", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Saiontz & Kirk Lawyers - Get A Free Case Evaluation", + "title": "Youhavealawyer", + "targetUrl": "www.youhavealawyer.com" + } + } + ], + "segments": [ + { + "code": "O2dUCD8gwve", + "name": "Law" + }, + { + "code": "3kVpCcrPlDrA", + "name": "Legal Help" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "20b0fb58-6ac8-4ba6-8a64-e0f5e56aa227", + "name": "general", + "startAt": "2017-09-24T19:47:30.853Z", + "endAt": "2019-09-24T19:47:30.853Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "8854ce0e-c037-4fa4-bde4-29f6d27a683f", + "creativeSets": [ + { + "creativeSetId": "bc6977c8-62d2-41cd-8e46-1fa0c5ff45ed", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "1d0758d5-7502-4914-8a74-874883682593", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Quality Leather Ranger Belts - Handmade In The USA", + "title": "Yourtack", + "targetUrl": "www.yourtack.com/Ranger/Belts" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "J5bdxnl4xfj", + "name": "Wrestling Belts" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b35cfd88-a641-495c-aaf6-3c6a1c1eab91", + "name": "general", + "startAt": "2017-09-24T19:47:31.509Z", + "endAt": "2019-09-24T19:47:31.509Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "92bcf48e-0ff6-45ed-a57f-407431a1bfde", + "creativeSets": [ + { + "creativeSetId": "3430a3b2-7255-4f7c-8e12-bc281c873b75", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "701bb21c-f072-4ff8-9b13-f6d93cf8b896", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Irritable bowel syndrome treatment - 18 Foods to Avoid with IBS", + "title": "Yourwellness", + "targetUrl": "yourwellness.guide" + } + } + ], + "segments": [ + { + "code": "7VQ1tulGSD", + "name": "Health & Fitness" + }, + { + "code": "2COuQqpVPYdA", + "name": "Bowel Treatment" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "123b0424-8d1c-415e-800e-55fdb28c62e8", + "name": "general", + "startAt": "2017-09-24T19:47:32.160Z", + "endAt": "2019-09-24T19:47:32.161Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "e1bbfb38-aa9c-47e3-8063-07adecd27688", + "creativeSets": [ + { + "creativeSetId": "aa6922c5-5561-454f-b733-9e623bcd23e4", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5eaee2ae-84ad-4cae-9d8a-0ae31f7aeadd", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "CrossFire 2.0 is Here", + "title": "Z8Games", + "targetUrl": "crossfire.z8games.com" + } + } + ], + "segments": [ + { + "code": "yNl0N-ers2", + "name": "Technology & Computing" + }, + { + "code": "o7Q1hjps7Vm", + "name": "Online PC Games" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "5814ce0b-9598-456b-afaf-1183251a42b2", + "name": "general", + "startAt": "2017-09-24T19:47:32.767Z", + "endAt": "2019-09-24T19:47:32.767Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "0fecef14-88e2-4dc7-97c1-b66255547f35", + "creativeSets": [ + { + "creativeSetId": "1af2ab84-a5f3-4d71-a8d6-fa0adb51afa8", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0a961aa3-7352-4fc2-88b8-5576399713aa", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Zaful Official Site - New Member 10%Off+Free Points | zaful.com", + "title": "Zaful", + "targetUrl": "www.zaful.com/Clothes/Accessories" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "mDuvMtm0102", + "name": "fashion" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "b2647b2c-0f11-4912-a6f8-023725c7e019", + "name": "general", + "startAt": "2017-09-24T19:47:33.360Z", + "endAt": "2019-09-24T19:47:33.360Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "57fbfc07-a87e-416d-86e0-0641c5402f07", + "creativeSets": [ + { + "creativeSetId": "dd077523-d496-4195-9810-cc4731a14ee6", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "9dc06414-18d2-4710-a7e4-65c06fa7f4ff", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Pharmacys Online - Search Pharmacys Online", + "title": "Zapmetasearch", + "targetUrl": "www.zapmetasearch.com/Pharmacys Online" + } + } + ], + "segments": [ + { + "code": "aLTyrLTa_", + "name": "Drugs" + }, + { + "code": "sOqbf6PQ3c-", + "name": "Online Pharmacy" + } + ] + }, + { + "creativeSetId": "393ce828-eacd-4e2a-a459-56c4203ce305", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "789aef6f-517d-4443-81b3-6dc0f0bd6f7a", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Learn Stock - Search Learn Stock", + "title": "Zapmetasearch", + "targetUrl": "www.zapmetasearch.com/Learn Stock" + } + } + ], + "segments": [ + { + "code": "F6B46w9iJd", + "name": "Personal Finance" + }, + { + "code": "_PEMAp6RE_k9", + "name": "Learn Stocks" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "373770d4-9531-494a-94f6-cfac96e0b3b3", + "name": "general", + "startAt": "2017-09-24T19:47:34.220Z", + "endAt": "2019-09-24T19:47:34.221Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "2983a549-bc6f-4d0b-bac3-5cd54a67bdb5", + "creativeSets": [ + { + "creativeSetId": "9e99882d-b70b-49cd-bebe-fb17df01be22", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5ebadfcd-ced9-45e9-9628-60f6bd66ef7b", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Jewelry Pearls - Search Jewelry Pearls - Search Jewelry Pearls", + "title": "Zapmetauk", + "targetUrl": "www.zapmeta.uk/Jewelry Pearls/Now" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "lzfSZRfWL9d", + "name": "jewelry" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "6f1de8b2-3990-43d1-8622-e7d24f067e33", + "name": "women", + "startAt": "2017-09-24T19:47:34.816Z", + "endAt": "2019-09-24T19:47:34.817Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cbb88a19-2fc1-4bbe-a0f8-c69d60b7a939", + "creativeSets": [ + { + "creativeSetId": "46bc5f13-69bd-4f94-b0cd-6cac65a8f6c3", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "17e2adc5-ebbf-4f3d-8db3-d478fd0361b3", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Vaneli For Women at Zappos - Fast & Free Shipping on Vaneli", + "title": "Zappos", + "targetUrl": "www.zappos.com/Vaneli" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "obV7ryiIRW4", + "name": "beauty" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a0b03e25-b166-43c9-b501-9471395498b1", + "name": "general", + "startAt": "2017-09-24T19:47:35.173Z", + "endAt": "2019-09-24T19:47:35.173Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cbb88a19-2fc1-4bbe-a0f8-c69d60b7a939", + "creativeSets": [ + { + "creativeSetId": "e0381c19-32c5-4dc6-a3c0-cb4b2599139d", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "dd8b7b57-9018-4213-a196-d3f1ebb7fd58", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Columbia Athletic Clothes", + "title": "Zappos", + "targetUrl": "www.Zappos.com/Columbia" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wRnrM16xXmY", + "name": "Athletic Clothing" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "69888748-7295-4d6b-832e-943dc6969483", + "name": "kids", + "startAt": "2017-09-24T19:47:35.509Z", + "endAt": "2019-09-24T19:47:35.509Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cbb88a19-2fc1-4bbe-a0f8-c69d60b7a939", + "creativeSets": [ + { + "creativeSetId": "3dfc9872-51e9-4883-8f1b-49b27fd5e847", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "3aff07a7-2d3f-489f-ab2c-8153199ae967", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Kids' Nike Soccer Clothes", + "title": "Zappos", + "targetUrl": "Zappos.com/Kids-Nike-Soccer-Clothes" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "wnYgEl7cckf", + "name": "Soccer Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "53951668-cd67-48af-8d8f-fddd1b85bfe5", + "name": "men", + "startAt": "2017-09-24T19:47:35.858Z", + "endAt": "2019-09-24T19:47:35.859Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "cbb88a19-2fc1-4bbe-a0f8-c69d60b7a939", + "creativeSets": [ + { + "creativeSetId": "6a5bc11d-e75a-4643-bbf0-90d619a20f91", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "d09812e0-999a-4097-91b0-9476e06d8a6c", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Swimsuits For Men", + "title": "Zappos", + "targetUrl": "www.Zappos.com/Swimsuits-For-Men" + } + } + ], + "segments": [ + { + "code": "b6O0KdkEyr", + "name": "Sports" + }, + { + "code": "BgfSFihlac8", + "name": "Swimming Gear" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "15e0fee0-05b2-44bb-a439-d627b0109263", + "name": "general", + "startAt": "2017-09-24T19:47:36.429Z", + "endAt": "2019-09-24T19:47:36.429Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "a3b18a06-5ca2-4f94-a3e8-0c5b1fc452c0", + "creativeSets": [ + { + "creativeSetId": "cffebd5e-c260-479e-8226-bd3f46ce6396", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "ac552377-7ad1-4f09-934b-a741e983b6c5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "ZDNet For Science News - All New Updates | search.zdnet.com", + "title": "ZDNet", + "targetUrl": "https://search.zdnet.com/web?q=current%20science%20news&src=iv&qsrc=0&qm=__iv_m_b_c_77859182188667_k_77859215772541_g_1245746740625811_p_2_b_bb_d_c_vi__&tt=T0026708&au=11681272&msclkid=fc8a8cc2e6141fad6afad6ba17d659c6" + } + } + ], + "segments": [ + { + "code": "LJUyM2m95H", + "name": "Science" + }, + { + "code": "JhJNZv_v5KwL", + "name": "science" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "9453be37-12e7-4975-8d62-b879046d6642", + "name": "general", + "startAt": "2017-09-24T19:47:37.026Z", + "endAt": "2019-09-24T19:47:37.027Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "242d08ec-04ca-452e-8a0d-6ff21cf988ee", + "creativeSets": [ + { + "creativeSetId": "77a58958-b904-4042-b1a6-7a1aba9f7e5a", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "b338a52a-e559-4569-8051-62647d9b9710", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "#1 Shark Tank Diet - 2018 - Lose Up To 23 Lbs In 3 Weeks", + "title": "Zerobellydiets", + "targetUrl": "zerobellydiets.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "BE9zmpv-zhc", + "name": "Lose Weight" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "8a45d7f8-049e-4a8d-9bf5-671ab47e76fc", + "name": "general", + "startAt": "2017-09-24T19:47:37.613Z", + "endAt": "2019-09-24T19:47:37.614Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "b1210e2d-58f9-4218-b493-ad02a76ade9f", + "creativeSets": [ + { + "creativeSetId": "b15a4e14-23a2-4bd0-8710-ad9ade07a482", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "10bb6e01-5ef1-4fd9-a674-f2b01aac4250", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Home Buyer Leads in Your ZIPs - Become a Zillow Premier Agent®", + "title": "Zillow", + "targetUrl": "agents.zillow.com/Buyer-Leads" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "UCZ9mWvmOvyi", + "name": "Buy Real Estate" + } + ] + }, + { + "creativeSetId": "d145018b-b581-4117-910c-05be8cf08491", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "7efe1221-a32b-4033-8e8b-a7fad9b02e96", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Zillow: Real Estate, Apartments, Mortgages & Home Values", + "title": "Zillow", + "targetUrl": "https://www.zillow.com/" + } + } + ], + "segments": [ + { + "code": "zApObehz_ZR", + "name": "Real Estate" + }, + { + "code": "ETZEeMEozyzo", + "name": "real estate" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "dca65dfd-e501-423a-9623-0413a8ecbcca", + "name": "general", + "startAt": "2017-09-24T19:47:38.509Z", + "endAt": "2019-09-24T19:47:38.510Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "29091954-b92b-4c36-b1bd-5eaf2ac1a298", + "creativeSets": [ + { + "creativeSetId": "8b124bae-3fb9-46f4-bb44-c34e36237906", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "5b9f209d-51e5-486a-b922-932cd934caf5", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Zingerman’s Food Gifts - Traditional, Gourmet Food Gifts", + "title": "Zingermans", + "targetUrl": "www.zingermans.com" + } + } + ], + "segments": [ + { + "code": "QFHjRnvPUs", + "name": "food & drink" + }, + { + "code": "RjX-wPWa8Z_f", + "name": "Meal Deliveries" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "78109b3a-994e-4d4d-9252-d8f741b06d14", + "name": "general", + "startAt": "2017-09-24T19:47:39.108Z", + "endAt": "2019-09-24T19:47:39.108Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "07bf7fc6-5da7-4d67-bb94-adc4129d094c", + "creativeSets": [ + { + "creativeSetId": "76029017-ff21-49e3-8b84-af52d7e83891", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "babc0047-eb1b-4458-b30f-b7f136aad599", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Zoosk® Online Dating Site - The #1 Dating App", + "title": "Zoosk", + "targetUrl": "www.zoosk.com/BrowseFree" + } + } + ], + "segments": [ + { + "code": "v9pnUI1SKd", + "name": "Society" + }, + { + "code": "MHIWE-lPdQmA", + "name": "Dating" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + }, + { + "campaignId": "a87d41ec-44ac-49af-b397-51ddda8cee5a", + "name": "general", + "startAt": "2017-09-24T19:47:39.704Z", + "endAt": "2019-09-24T19:47:39.704Z", + "dailyCap": 1, + "budget": 1, + "advertiserId": "d48273b2-13cc-4f49-9130-b3f2be31cfc1", + "creativeSets": [ + { + "creativeSetId": "3cfe734f-6cdf-4c01-ab28-a3b0c205cb6e", + "execution": "per_click", + "perDay": 1, + "totalMax": 1, + "creatives": [ + { + "creativeInstanceId": "0205cc89-ec94-4d9b-ad4c-c36f1e535225", + "type": { + "code": "notification_all_v1", + "name": "notification", + "platform": "all", + "version": 1 + }, + "payload": { + "body": "Trendy Fashions - Shop Exclusive Deals on Zulily | zulily.com", + "title": "Zulily", + "targetUrl": "https://www.zulily.com/women" + } + } + ], + "segments": [ + { + "code": "v3xSIFo82w", + "name": "fashion" + }, + { + "code": "mDuvMtm0102", + "name": "fashion" + } + ] + } + ], + "geoTargets": [ + { + "code": "US", + "name": "United States" + } + ] + } + ], + "issuers": [ + { + "name": "confirmation", + "publicKey": "BI5i6wAueQuVqi8k7i4SdRkwLVzBPqWvWS5HuZMlkoh7AIggZd5bt2HmJRDjTTVYmSMYevO5lJQWM2ggylgL6lQ=" + }, + { + "name": "payment", + "publicKey": "BLdGsFrY/F3rmg1HWFV9a6t0qVxRJNtY+rQgxoCXBmpLusNEjSA0dStClnS4xpacOzbX11V5O/GL4N5HNFfwjwA=" + }, + { + "name": "0.10BAT", + "publicKey": "BBQx5mijw8shWtP3e3mwSv6wFo9niMsPJnP87oe1969zmTW4uo7xd0SLX9DWxiydL5iWWeeWJ6MGqTvf8HXqTcg=" + }, + { + "name": "0.20BAT", + "publicKey": "BA1sYidgJ56m8JEgnMX7TwprkLWXfPl+4VTHpM43fDWSI3AQpZCA0QgpQTXvPzf4woob6lagdk7Xdh7mlXxLvXw=" + } + ], + "catalogId": "a3cd25e99647957ca54c18cb52e0784e1dd6584d" +} \ No newline at end of file