Skip to main content
Sitecore Documentation
  • Learn
  • Downloads
  • Changelog
  • Roadmap
PersonalizeCloud Portal
Sitecore Personalize developer documentation
  • 開発Sitecore Personalize
                • VIEWイベント
                • IDENTITYイベント
                • SEARCHイベント
                • カスタムイベント
            • Flowオブジェクト
        • トラブルシューティング
        • リリースノート
  1. Eventオブジェクト
  1. ストリームAPI
  2. オブジェクト
  3. Eventオブジェクト
  4. IDENTITY イベント

IDENTITYイベント

日本語翻訳に関する免責事項

このページの翻訳はAIによって自動的に行われました。可能な限り正確な翻訳を心掛けていますが、原文と異なる表現や解釈が含まれる場合があります。正確で公式な情報については、必ず英語の原文をご参照ください。

IDENTITYイベントのイベント・オブジェクトには、イベント・オブジェクトに必要なすべての属性 に加えて、次の属性が含まれている必要があります。

属性

種類

形容

例

必須/オプション

identifiers

オブジェクトの配列

アプリのユーザーを識別するために使用される識別子。

identifiers: [{
    "id": "123456",
    "provider": "BXLP"
}]

必須

オブジェクトのidentifiers配列:

属性

種類

形容

例

必須/オプション

id

糸

組織のIDシステム(顧客関係管理(CRM)システムなど)によって提供される一意のゲスト識別子。

"123456"

必須

provider

糸

一意のゲスト識別子を提供した組織のIDシステムの名前 ( Sitecore Personalizeの外部)。

"BXLP"

必須

expiry_date

文字列 (ISO 8601)

一意のゲスト識別子の有効期限が切れる日付。これは、組織のIDシステムによって決まります。

"2025-04-15T08:39:44.868Z"

随意

IDENTITYイベントのイベントオブジェクトには、オプションで個人を特定できる情報 (PII) を含めることができます。

属性

種類

形容

例

必須/オプション

email

string (小文字を推奨)

ゲストのメールアドレス。

"[email protected]"

随意

title

string (タイトルケース)

ゲストの肩書き。

"Br", "Brigadier", "Capt", "Colonel", "Dame", "Dr", "Elder", "Fr", "General", "Hon", "Judge", "Lord", "Master", "Miss", "Mr", "Mrs", "Ms", "Mstr", "Prof", "Rabbi", "Rev", "Shaikha", "Sheikh", "Sir", "Sister", "Sr"

随意

firstname

string (タイトルケースを推奨)

ゲストの名前。

"Jane"

随意

lastname

string (タイトルケースを推奨)

ゲストの姓。

"Doe"

随意

gender

糸

ゲストの性別。

"female"

随意

dob

文字列 (ISO 8601)

ゲストの生年月日。

"1983-04-15T08:39:44.868Z"

随意

mobile

糸

ゲストの携帯電話番号。

"+3531234567"

随意

phone

糸

ゲストの電話番号。

"+3531234567"

随意

street

文字列の配列 (タイトルケースを推奨)

ゲストの住所。

"Tara Street"

随意

city

string (タイトルケースを推奨)

ゲストの市区町村の住所。

"Dublin"

随意

state

string (タイトルケースを推奨)

ゲストの州の住所。

"Oregon"

随意

country

文字列 (大文字ISO 3166-1 alpha-2)

ゲストの国の住所。

"IE"

随意

postal_code

糸

ゲストの郵便番号。

"D2"

随意

例

この例では、Boxever JavaScript Libraryを使用するインテグレーションのIDENTITYイベントのイベントオブジェクトについて説明します。 browser_idは、Boxever.getID() 関数が返す値に設定されます。このイベント オブジェクトには、オブジェクトのidentifiers配列と、オプションのPII属性 ( email、firstname、lastnameが含まれます。

const identityEvent = {
    browser_id: Boxever.getID(),
    channel: "WEB",
    type: "IDENTITY",
    language: "EN",
    currency: "EUR",
    page: "home",
    pos: "myretailsite/ireland",
    identifiers: [
        {
            id: "123456",
            provider: "BXLP"
        }
    ],
    email: "[email protected]",
    firstname: "Jane",
    lastname: "Doe"
};
この記事を改善するための提案がある場合は、 お知らせください!

Documentation Assistant

This assistant uses AI to generate responses based on Sitecore documentation. While it has access to official sources, answers may be incomplete or inaccurate and should not be considered official advice or support.
Powered by
k
kapa.ai
Protected by reCAPTCHA

© Copyright 2026, Sitecore A/S or a Sitecore affiliated company.
All rights reserved.

Privacy policySitecore Trust CenterTerms of use