{"templateId":"markdown","sharedDataIds":{"sidebar":"sidebar-@l10n/ja/sidebars.yaml"},"props":{"metadata":{"markdoc":{"tagList":[]},"type":"markdown"},"seo":{"title":"Salesforce DMP Krux インポート連携","description":"Salesforce DMP Krux から Treasure AI へのデータインポート方法と、Cookie 同期の技術的な手順を解説する連携ガイドです。データエンリッチメントとセグメントマッピングに役立つ技術情報を提供します。","siteUrl":"https://docs.treasure.ai","lang":"en-US","jsonLd":{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://www.treasure.ai/","name":"Treasure AI","url":"https://www.treasure.ai/","logo":"https://www.treasure.ai/hubfs/assets/images/logos/primary-logo.svg"},{"@type":"WebSite","@id":"https://docs.treasure.ai/#website","name":"Treasure AI Documentation","url":"https://docs.treasure.ai/","inLanguage":["en","ja"],"publisher":{"@id":"https://www.treasure.ai/"}}]},"llmstxt":{"hide":false,"sections":[{"title":"Table of contents","includeFiles":["**/*"],"excludeFiles":[]}],"excludeFiles":[]}},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"salesforce-dmp-krux-インポート連携","__idx":0},"children":["Salesforce DMP Krux インポート連携"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Salesforce DMP (Krux) から、メディアキャンペーン、ペイドサーチキャンペーン、サイトキャンペーン、ユーザーオーディエンスセグメントマップ、セグメントマッピングファイル、または不同意リストを Treasure Data にインポートできます。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"前提条件","__idx":1},"children":["前提条件"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Treasure Data の基礎知識(",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://toolbelt.treasuredata.com/"},"children":["Toolbelt"]}," および ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://docs.treasuredata.com/smart/project-product-documentation/getting-started-with-website-tracking"},"children":["JavaScript SDK"]}," を含む)"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["アクセスキーIDとシークレットアクセスキーを持つS3認証情報"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Salesforce DMP のクライアント名"]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"連携の概要","__idx":2},"children":["連携の概要"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["この連携には2つのパートがあります:"]},{"$$mdtype":"Tag","name":"ol","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Salesforce DMP と Treasure Data CDP 間の Cookie 同期"]},": Salesforce DMP ID と Treasure Data ID の td_global_id および td_client_id 間のマッピングを作成するために必要です"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Salesforce DMP から Treasure Data CDP へのデータインポート:"]}," 取り込み可能な様々なデータフィードがあります。データエンリッチメントの目的では、セグメントIDとその名前のマッピングが重要なファイルです。"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"img","attributes":{"src":"/assets/image-20190923-192248.037c2a6dff6b3b60c8a7538021bc396756b5712ea081e6ab29c40c4415cfd243.d081385e.png","alt":""},"children":[]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"cookie-同期タグの実装","__idx":3},"children":["Cookie 同期タグの実装"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["まず、",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/products/customer-data-platform/integration-hub/streaming/td-javascript-sdk/getting-started-with-tracking-and-the-td-javascript-sdk"},"children":["ウェブサイトトラッキングの開始"]}," の「ウェブサイトトラッキングの設定と Treasure Data JavaScript SDK のインストール」に記載されているように、Treasure Data の JavaScript タグを設定する必要があります。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["次に、Salesforce DMP のタグが既にインストールされているウェブサイトに、以下のコードを追加します。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"javascript","header":{"controls":{"copy":{}}},"source":"(function(window, document, td){\n\nvar kruxProperties = {};\nfor ( var k in window.localStorage ) {\n    if ( k.startsWith('YOUR KRUX PREFIX HERE') ) {\n        kruxProperties[k] = window.localStorage.getItem(k)\n    }\n}\ntd.trackEvent('<TD TABLE NAME FOR TRACKING KRUX ID/TD ID map>', kruxProperties);\n\nvar successCb = function(tdGlobalId) {\n  // This is createImage in TDWrapper\n  var el = document.createElement('img');\n  el.src = '//beacon.krxd.net/usermatch.gif?partner=treasuredata&partner_uid=' + tdGlobalId;\n  el.width=1;\n  el.height=1;\n  el.style.display='none';\n  document.body.appendChild(el);\n}\n\nfunction isSafari() {\n  var ua = window.navigator.userAgent.toLowerCase();\n  return ua.indexOf('safari') !== -1 && ua.indexOf('chrome') === -1 && ua.indexOf('edge') === -1;\n}\n\nif (isSafari() ) {\n  // TODO: Safari-specific handling due to ITP 2.1\n} else {\n  td.fetchGlobalID(successCb, function(err) { console.log(err) });\n}\n\n})(window, document, td);\n","lang":"javascript"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["上記のコードサンプルには、Safari ブラウザ向けの Cookie 同期は含まれていません。Safari の Intelligent Tracking Prevention (ITP) 機能により、サードパーティドメインの Cookie ベースの訪問者識別の信頼性が低下しています。私たちはこの問題に対するソリューションを積極的に計画しています。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"treasure-コンソールを使用して接続を作成","__idx":4},"children":["Treasure コンソールを使用して接続を作成"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"新しい接続の作成","__idx":5},"children":["新しい接続の作成"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Integrations Hub > Catalog に移動し、Salesforce DMP を検索して選択します。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"img","attributes":{"src":"/assets/image-20190923-192557.6c99bd10dd317889671b412d06bdef80e38689e2d74d8cda7c505eaee34c2546.d081385e.png","alt":""},"children":[]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Create"]}," を選択します。認証済み接続を作成しています。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["以下のダイアログが開きます。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"img","attributes":{"src":"/assets/image-20190923-192618.915080c94fa2666ffba006e78f7878c8775d6adc8a6b76fc702ea352866e68d9.d081385e.png","alt":""},"children":[]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Salesforce DMP から取得したクライアント名、アクセスキーID、およびシークレットアクセスキーを編集します。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Continue"]}," を選択します。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"img","attributes":{"src":"/assets/image-20190923-192703.fa238aa47270a321506bdf6ca59a252c45aa7e208dc8c0db8f819840eb983743.d081385e.png","alt":""},"children":[]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["新しい Salesforce DMP 接続に名前を付けます。",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Done"]}," を選択します。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"treasure-data-へのデータ転送","__idx":6},"children":["Treasure Data へのデータ転送"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["認証済み接続を作成すると、自動的に Authentications タブに移動します。作成した接続を探して ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["New Source"]}," を選択します。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["インポートするデータを指定します:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["セグメントマッピングファイル"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["ユーザーオーディエンスセグメントマップ"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["メディアキャンペーン、ペイドサーチキャンペーン、サイトキャンペーン、または不同意リスト"]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"セグメントマッピングファイルのインポート","__idx":7},"children":["セグメントマッピングファイルのインポート"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Source には、セグメントマッピングファイルを選択します。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"img","attributes":{"src":"/assets/mceclip6.84539345d3104f7ba8fea0da416cd42e52159467ee6af627c19f4cbad1f6b790.d081385e.png","alt":""},"children":[]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"ユーザーオーディエンスセグメントマップのインポート","__idx":8},"children":["ユーザーオーディエンスセグメントマップのインポート"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["Source"]}," には、ユーザーオーディエンスセグメントマップを選択します。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"img","attributes":{"src":"/assets/image-20190923-192736.c4342b0d6c3059d373e070f6b1af33c0d8c2f149e0e694956f1fc310f81b8a04.d081385e.png","alt":""},"children":[]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["パラメータ:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Import Date"]},": この日付から作成されたデータをインポートします。"]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"メディアキャンペーンペイドサーチキャンペーンサイトキャンペーン不同意リストのインポート","__idx":9},"children":["メディアキャンペーン、ペイドサーチキャンペーン、サイトキャンペーン、不同意リストのインポート"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["Source"]}," には、メディアキャンペーン、ペイドサーチキャンペーン、サイトキャンペーン、または不同意リストを選択します。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"img","attributes":{"src":"/assets/image-20190923-192809.d9c6a496fcb11e4e13a5dd38d791e513dbbd0bc06240d160c38a1d3374bed22f.d081385e.png","alt":""},"children":[]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["パラメータ:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Start Date"]},": この日付以降に作成されたデータをインポートします。"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["End Date"]},": この日付までに作成されたデータをインポートします。"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Incremental Loading"]},": スケジュールに基づいてデータをインポートする場合、取得されるデータの時間枠は実行ごとに自動的に前進します。例えば、初期の開始日を1月1日、終了日を1月10日に指定した場合、最初の実行では1月1日から1月10日までのデータを取得し、2回目の実行では1月11日から1月20日までのデータを取得するといった具合です。"]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"プレビュー","__idx":10},"children":["プレビュー"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["データプレビューはオプションであり、必要に応じて ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Next"]}," をクリックしてダイアログの次のページに進むことができます。"]},{"$$mdtype":"Tag","name":"ol","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["インポートを実行する前に、",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Generate Preview"]}," を選択してデータのプレビューを表示します。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["データプレビューに表示されるデータは、ソースから近似されたものです。実際にインポートされるデータではありません。"]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["データが期待通りであることを確認します。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"img","attributes":{"src":"/assets/snippet-data-preview-2024-02-09.27dc5fd8772fca4f7f44ab28c00476ae1894744fe1e75d06932628929cc7bff1.4e139be3.png","alt":""},"children":[]}]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Next"]}," を選択します。"]}]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"詳細設定","__idx":11},"children":["詳細設定"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"img","attributes":{"src":"/assets/image-20190923-193141.27f12a027e6398552418665e03dcf3532cab2158f3e260d642ab6f38d7d47b61.d081385e.png","alt":""},"children":[]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["以下のパラメータを指定できます:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Maximum retry times. 各APIコールの最大リトライ回数を指定します。",{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["型: number"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["デフォルト: 7"]}]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Initial retry interval millisecond. 最初のリトライの待機時間を指定します。",{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["型: number"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["デフォルト: 1000"]}]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Maximum retry interval milliseconds. リトライ間の最大待機時間を指定します。",{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["型: number"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["デフォルト: 120000"]}]}]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"ターゲットデータベースとテーブルの選択","__idx":12},"children":["ターゲットデータベースとテーブルの選択"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["既存のものを選択するか、新しいデータベースとテーブルを作成します。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"img","attributes":{"src":"/assets/image-20190923-193250.c96b094df49f14d2621028c14175a20717b9a6d70bf6fdadb7cfb3f936aa4f96.d081385e.png","alt":""},"children":[]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["新しいデータベースを作成し、データベース名を付けます。",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Create new table"]}," についても同様の手順を実行します。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["既存のテーブルにレコードを ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["append"]},"(追加)するか、既存のテーブルを ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["replace"]},"(置換)するかを選択します。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["デフォルトキーではなく、異なる ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["partition key seed"]}," を設定したい場合は、ポップアップメニューを使用して指定できます。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"スケジューリング","__idx":13},"children":["スケジューリング"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["When"]}," タブでは、1回限りの転送を指定するか、自動的に繰り返される転送をスケジュールすることができます。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["パラメータ"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Once now"]},": 1回限りのジョブを設定します。"]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Repeat…"]}]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Schedule"]},": ",{"$$mdtype":"Tag","name":"em","attributes":{},"children":["@hourly"]},"、",{"$$mdtype":"Tag","name":"em","attributes":{},"children":["@daily"]},"、",{"$$mdtype":"Tag","name":"em","attributes":{},"children":["@monthly"]}," の3つのオプションとカスタム ",{"$$mdtype":"Tag","name":"em","attributes":{},"children":["cron"]}," を使用できます。"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Delay Transfer"]},": 実行時間の遅延を追加します。"]}]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["TimeZone"]},": 'Asia/Tokyo' などの拡張タイムゾーン形式をサポートしています。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"img","attributes":{"src":"/assets/image-20190923-194054.e58d3768035b844efdc69f8fff99a48edcc931b40428fd406fbb3c2965274ffc.d081385e.png","alt":""},"children":[]}]}]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"details","__idx":14},"children":["Details"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Transfer に名前を付けて ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Done"]}," を選択して開始します。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"img","attributes":{"src":"/assets/mceclip13.5ca8bfbad25bde2c23b6bfbf04bbf8f9f368e270270b3390f08502f263c47fac.d081385e.png","alt":""},"children":[]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Transfer の実行後、",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Databases"]}," タブで Transfer の結果を確認できます。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"コマンドラインを使用して-salesforce-dmp-接続を作成する","__idx":15},"children":["コマンドラインを使用して Salesforce DMP 接続を作成する"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Treasure コンソール を使用して接続を設定できます。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"treasure-data-toolbelt-のインストール","__idx":16},"children":["Treasure Data Toolbelt のインストール"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["最新の ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://toolbelt.treasuredata.com/"},"children":["TD Toolbelt"]}," をインストールします。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"設定ファイル-loadyml-の作成","__idx":17},"children":["設定ファイル (load.yml) の作成"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["設定ファイルには、Salesforce DMP からコネクタに入力される内容を指定する in: セクションと、コネクタから Treasure Data のデータベースに出力される内容を指定する out: セクションが含まれます。利用可能な out モードの詳細については、付録を参照してください。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["次の例は、インクリメンタルスケジューリングなしで Media Campaign をインポートする方法を示しています。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"yaml","header":{"controls":{"copy":{}}},"source":"in:\n  type: krux_dmp\n  access_key_id: xxxxxxxxxxx\n  secret_access_key: xxxxxxxxxxx  client_name: xxxxxxxxxxx\n  target: mc\n  start_date: 2019-01-17\n  end_date: 2019-01-27\n  incremental: false\nout: mode: append\n","lang":"yaml"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["次の例は、インクリメンタルスケジューリングありで Media Campaign をインポートする方法を示しています。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"yaml","header":{"controls":{"copy":{}}},"source":"in:\n  type: krux_dmp\n  access_key_id: xxxxxxxxxxx\n  secret_access_key: xxxxxxxxxxx\n  client_name: xxxxxxxxxxx\n  target: mc\n  start_date: 2019-01-17\n  end_date: 2019-01-27\n  incremental: true\nout: mode: append\n","lang":"yaml"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["次の例は、インクリメンタルスケジューリングなしで Paid Search Campaign をインポートする方法を示しています。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"yaml","header":{"controls":{"copy":{}}},"source":"in:\n  type: krux_dmp\n  access_key_id: xxxxxxxxxxx\n  secret_access_key: xxxxxxxxxxx\n  client_name: xxxxxxxxxxx\n  target: psc\n  start_date: 2019-01-17\n  end_date: 2019-01-27\n  incremental: false\nout: mode: append\n","lang":"yaml"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["次の例は、インクリメンタルスケジューリングありで Paid Search Campaign をインポートする方法を示しています。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"yaml","header":{"controls":{"copy":{}}},"source":"in:\n  type: krux_dmp\n  access_key_id: xxxxxxxxxxx\n  secret_access_key: xxxxxxxxxxx\n  client_name: xxxxxxxxxxx\n  target: psc\n  start_date: 2019-01-17\n  end_date: 2019-01-27\n  incremental: true\nout: mode: append\n","lang":"yaml"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["次の例は、インクリメンタルスケジューリングなしで Site Campaign をインポートする方法を示しています。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"yaml","header":{"controls":{"copy":{}}},"source":"in:\n  type: krux_dmp\n  access_key_id: xxxxxxxxxxx\n  secret_access_key: xxxxxxxxxxx\n  client_name: xxxxxxxxxxx\n  target: sc\n  start_date: 2019-01-17\n  end_date: 2019-01-27\n  incremental: false\nout:\n  mode: append\n","lang":"yaml"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["次の例は、インクリメンタルスケジューリングありで Site Campaign をインポートする方法を示しています。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"yaml","header":{"controls":{"copy":{}}},"source":"in:\n  type: krux_dmp\n  access_key_id: xxxxxxxxxxx\n  secret_access_key: xxxxxxxxxxx\n  client_name: xxxxxxxxxxx\n  target: sc\n  start_date: 2019-01-17\n  end_date: 2019-01-27\n  incremental: true\nout:\n  mode: append\n","lang":"yaml"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["次の例は、インクリメンタルスケジューリングなしで Dissent Lists をインポートする方法を示しています。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"yaml","header":{"controls":{"copy":{}}},"source":"in:\n  type: krux_dmp\n  access_key_id: xxxxxxxxxxx\n  secret_access_key: xxxxxxxxxxx\n  client_name: xxxxxxxxxxx\n  target: dl\n  start_date: 2019-01-17\n  end_date: 2019-01-27\n  incremental: false\nout:\n  mode: append\n","lang":"yaml"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["次の例は、インクリメンタルスケジューリングありで Dissent Lists をインポートする方法を示しています。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"yaml","header":{"controls":{"copy":{}}},"source":"in:\n  type: krux_dmp\n  access_key_id: xxxxxxxxxxx\n  secret_access_key: xxxxxxxxxxx\n  client_name: xxxxxxxxxxx\n  target: dl\n  start_date: 2019-01-17\n  end_date: 2019-01-27\n  incremental: true\nout:\n  mode: append\n","lang":"yaml"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["次の例は、User Audience Segment Map をインポートする方法を示しています。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"yaml","header":{"controls":{"copy":{}}},"source":"in:\n  type: krux_dmp\n  access_key_id: xxxxxxxxxxx\n  secret_access_key: xxxxxxxxxxx\n  client_name: xxxxxxxxxxx\n  target: uasm\n  import_date: 2019-01-17\nout:\n  mode: append\n","lang":"yaml"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["次の例は、Segment Mapping File をインポートする方法を示しています。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"yaml","header":{"controls":{"copy":{}}},"source":"in:\n  type: krux_dmp\n  access_key_id: xxxxxxxxxxx\n  secret_access_key: xxxxxxxxxxx\n  client_name: xxxxxxxxxxx\n  target: smf\nout:\n  mode: append\n","lang":"yaml"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"インポートするデータのプレビューオプション","__idx":18},"children":["インポートするデータのプレビュー（オプション）"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["td connector:preview"]},"コマンドを使用して、インポートするデータをプレビューできます。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"$ td connector:preview load.yml\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"ロードジョブの実行","__idx":19},"children":["ロードジョブの実行"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["td connector:issue"]},"を使用してジョブを実行します。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["ロードジョブを実行する前に、データを保存するデータベースとテーブルを指定する必要があります。例：td_sample_db、td_sample_table"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"$ td connector:issue load.yml \\      --database td_sample_db \\      --table td_sample_table \\      --time-column date_time_column\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Treasure Dataのストレージは時間によってパーティション化されているため、--time-columnオプションを指定することを推奨します。このオプションが指定されていない場合、データコネクタは最初のlong型またはtimestamp型のカラムをパーティショニング時間として選択します。--time-columnで指定するカラムのタイプは、long型またはtimestamp型のいずれかである必要があります（使用可能なカラム名とタイプを確認するには、プレビュー結果を使用してください。一般的に、ほとんどのデータタイプにはlast_modified_dateカラムがあります）。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["データに時間カラムがない場合は、add_timeフィルタオプションを使用してカラムを追加できます。詳細については、",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://docs.treasuredata.com/smart/project-product-documentation/add_time-filter-function"},"children":["add_timeフィルタ"]},"プラグインを参照してください。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["td connector:issue"]},"は、データベース（sample_db）とテーブル（sample_table）がすでに作成されていることを前提としています。データベースまたはテーブルがTDに存在しない場合、",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["td connector:issue"]},"は失敗します。そのため、データベースとテーブルを手動で作成するか、",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["td connector:issue"]},"で--auto-create-tableを使用してデータベースとテーブルを自動的に作成する必要があります。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":" $ td connector:issue load.yml \\       --database td_sample_db \\       --table td_sample_table \\       --time-column date_time_column \\      --auto-create-table\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["コマンドラインから、ロードジョブを送信します。データサイズに応じて、処理に数時間かかる場合があります。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"統合のスケジュール実行","__idx":20},"children":["統合のスケジュール実行"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["定期的なMedia Campaign、Paid Search Campaign、Site Campaignのインポートのために、データコネクタの定期実行をスケジュールできます。高可用性を確保するために、スケジューラを慎重に構成しています。この機能を使用することで、ローカルデータセンターにcronデーモンを用意する必要がなくなります。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["スケジュール実行では、Salesforce DMPからデータを取得する際のデータコネクタの動作を制御する設定パラメータをサポートしています："]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["incremental"]}," この設定は、ロードモードを制御するために使用されます。これは、各オブジェクトに関連付けられたネイティブタイムスタンプフィールドの1つに基づいて、データコネクタがSalesforce DMPからデータを取得する方法を管理します。"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["columns"]}," この設定は、Treasure Dataにインポートされるデータのカスタムスキーマを定義するために使用されます。ここでは、関心のあるカラムのみを定義できますが、取得するオブジェクトに存在することを確認してください。そうでない場合、これらのカラムは結果に含まれません。"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["last_record"]}," この設定は、前回のロードジョブからの最後のレコードを制御するために使用されます。オブジェクトには、カラム名の",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["key"]},"とカラムの値の",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["value"]},"を含める必要があります。",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["key"]},"は、Salesforce DMPデータのカラム名と一致する必要があります。"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["詳細と例については、「インクリメンタルローディングの仕組み」を参照してください。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"スケジュールの作成","__idx":21},"children":["スケジュールの作成"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["td connector:create"]},"コマンドを使用して、新しいスケジュールを作成できます。スケジュールの名前、cron形式のスケジュール、データが保存されるデータベースとテーブル、およびデータコネクタ設定ファイルが必要です。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["cron"]},"パラメータは、次のオプションを受け入れます：",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["@hourly"]},"、",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["@daily"]},"、",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["@monthly"]},"。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["デフォルトでは、スケジュールはUTCタイムゾーンで設定されます。-tまたは--timezoneオプションを使用して、タイムゾーンでスケジュールを設定できます。",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["--timezone"]},"オプションは、'Asia/Tokyo'、'America/Los_Angeles'などの拡張タイムゾーン形式のみをサポートしています。PST、CSTなどのタイムゾーンの略語は*サポートされておらず*、予期しないスケジュールにつながる可能性があります。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"$ td connector:create \\\n    daily_import \\\n    \"10 0 * * *\" \\\n    td_sample_db \\\n    td_sample_table \\\n    load.yml\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Treasure Dataのストレージは時間によってパーティション化されているため、",{"$$mdtype":"Tag","name":"em","attributes":{},"children":["--time-column"]},"オプションを指定することも推奨されます。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"$ td connector:create \\\n    daily_import \\\n    \"10 0 * * *\" \\\n    td_sample_db \\\n    td_sample_table \\\n    load.yml \\\n    --time-column created_at\n"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"スケジュールのリスト表示","__idx":22},"children":["スケジュールのリスト表示"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["td connector:list"]},"コマンドを入力すると、スケジュールされたエントリのリストを表示できます。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"$ td connector:list\n"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"スケジュールの設定とスケジュール履歴の表示","__idx":23},"children":["スケジュールの設定とスケジュール履歴の表示"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["td connector:show"]},"は、スケジュールエントリの実行設定を表示します。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"td connector:show daily_import\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["td connector:history"]},"は、スケジュールエントリの実行履歴を表示します。個々の実行の結果を調査するには、",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["td job jobid"]},"を使用します。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"td connector:history daily_import\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"スケジュールの削除","__idx":24},"children":["スケジュールの削除"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["td connector:delete"]},"は、スケジュールを削除します。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"$ td connector:delete daily_import\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"インクリメンタルローディングの仕組み","__idx":25},"children":["インクリメンタルローディングの仕組み"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["インクリメンタルローディングは、ファイルの最後のインポート日を使用してレコードを単調にロードし、最新の実行後のファイルを挿入または更新します。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["最初の実行時、このコネクタは",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Filename Regex"]},"と",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Modified After"]},"に一致するすべてのファイルをロードします。",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["incremental"]},{"$$mdtype":"Tag","name":"code","attributes":{},"children":[": true"]},"が設定されている場合、最新の変更日時が新しい",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Modified After"]},"値として保存されます。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["例："]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["インポートフォルダに含まれるファイル："]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"+--------------+--------------------------+\n|   Filename   |     Last update          |\n+--------------+--------------------------+\n| File0001.csv | 2019-05-04T10:00:00.123Z |\n| File0011.csv | 2019-05-05T10:00:00.123Z |\n| File0012.csv | 2019-05-06T10:00:00.123Z |\n| File0013.csv | 2019-05-07T10:00:00.123Z |\n| File0014.csv | 2019-05-08T10:00:00.123Z |\n"},"children":[]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Filename Regex: File001.*.csv"]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Modified After: 2019-05-01T10:00:00.00Z"]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["この場合、",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["File0011.csv"]},"、",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["File0012.csv"]},"、",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["File0013.csv"]},"、",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["File0014.csv"]},"のファイルがインポートされます。これらはFilename Regexに一致し、すべて最終更新日 > 2019-05-01T10:00:00.00Zです。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["ジョブが終了すると、新しい",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Modified After = 2019-05-08T10:00:00.123Z"]},"が保存されます。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["次回の実行時には、最終更新日 > ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["2019-05-08T10:00:00.123Z"]},"のファイルのみがインポートされます。"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["例："]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["インポートフォルダに新しく更新および追加されたファイル："]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"+--------------+--------------------------+\n|   Filename   |     Last update          |\n+--------------+--------------------------+\n| File0001.csv | 2019-05-04T10:00:00.123Z |\n| File0011.csv | 2019-05-05T10:00:00.123Z |\n| File0012.csv | 2019-05-06T10:00:00.123Z |\n| File0013.csv | 2019-05-09T10:00:00.123Z |\n| File0014.csv | 2019-05-08T10:00:00.123Z |\n| File0015.csv | 2019-05-09T10:00:00.123Z |\n"},"children":[]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Filename Regex: File001.*.csv"]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Modified After: ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["2019-05-08T10:00:00.123Z"]}]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["この場合、",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["File0013.csv"]},"と",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["File0015.csv"]},"のファイルのみがインポートされます。"]}]},"headings":[{"value":"Salesforce DMP Krux インポート連携","id":"salesforce-dmp-krux-インポート連携","depth":1},{"value":"前提条件","id":"前提条件","depth":2},{"value":"連携の概要","id":"連携の概要","depth":2},{"value":"Cookie 同期タグの実装","id":"cookie-同期タグの実装","depth":2},{"value":"Treasure コンソールを使用して接続を作成","id":"treasure-コンソールを使用して接続を作成","depth":2},{"value":"新しい接続の作成","id":"新しい接続の作成","depth":3},{"value":"Treasure Data へのデータ転送","id":"treasure-data-へのデータ転送","depth":3},{"value":"セグメントマッピングファイルのインポート","id":"セグメントマッピングファイルのインポート","depth":3},{"value":"ユーザーオーディエンスセグメントマップのインポート","id":"ユーザーオーディエンスセグメントマップのインポート","depth":3},{"value":"メディアキャンペーン、ペイドサーチキャンペーン、サイトキャンペーン、不同意リストのインポート","id":"メディアキャンペーンペイドサーチキャンペーンサイトキャンペーン不同意リストのインポート","depth":3},{"value":"プレビュー","id":"プレビュー","depth":3},{"value":"詳細設定","id":"詳細設定","depth":3},{"value":"ターゲットデータベースとテーブルの選択","id":"ターゲットデータベースとテーブルの選択","depth":3},{"value":"スケジューリング","id":"スケジューリング","depth":3},{"value":"Details","id":"details","depth":3},{"value":"コマンドラインを使用して Salesforce DMP 接続を作成する","id":"コマンドラインを使用して-salesforce-dmp-接続を作成する","depth":2},{"value":"Treasure Data Toolbelt のインストール","id":"treasure-data-toolbelt-のインストール","depth":3},{"value":"設定ファイル (load.yml) の作成","id":"設定ファイル-loadyml-の作成","depth":3},{"value":"インポートするデータのプレビュー（オプション）","id":"インポートするデータのプレビューオプション","depth":3},{"value":"ロードジョブの実行","id":"ロードジョブの実行","depth":3},{"value":"統合のスケジュール実行","id":"統合のスケジュール実行","depth":3},{"value":"スケジュールの作成","id":"スケジュールの作成","depth":3},{"value":"スケジュールのリスト表示","id":"スケジュールのリスト表示","depth":3},{"value":"スケジュールの設定とスケジュール履歴の表示","id":"スケジュールの設定とスケジュール履歴の表示","depth":3},{"value":"スケジュールの削除","id":"スケジュールの削除","depth":3},{"value":"インクリメンタルローディングの仕組み","id":"インクリメンタルローディングの仕組み","depth":3}],"frontmatter":{"seo":{"title":"Salesforce DMP Krux インポート連携","description":"Salesforce DMP Krux から Treasure AI へのデータインポート方法と、Cookie 同期の技術的な手順を解説する連携ガイドです。データエンリッチメントとセグメントマッピングに役立つ技術情報を提供します。"}},"lastModified":"2026-06-17T07:22:53.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/ja/int/salesforce-dmp-krux-import-integration","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}