マーケティング履歴とのやり取り interacting-with-marketing-history
履歴 エンドポイントを使用すると、プロファイルのマーケティング履歴を操作できます。
これにより、例えば、プロファイルに送信された配信のミラーページを簡単に取得できます。 これを行うには、次の手順に従います。
- history エンドポイントとプロファイルのプライマリキーを使用してGETを実行します。
- 返された events href に対してGETリクエストを実行します。
- mirrorPage ノード内のミラーページへのリンクを含む、プロファイルのイベントのリストを返します。
リクエストのサンプル
GETリクエストでプロファイルのマーケティング履歴を取得します。
-X GET https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/history/"<PKEY>" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
-H 'Cache-Control: no-cache' \
-H 'X-Api-Key: <API_KEY>'
「events」ノードは、プロファイル上のイベントにアクセスできる URL を返します。
{
"PKey": "<PKEY>",
"firstName": "John",
"lastName":"Doe",
"birthDate": "1980-10-24",
"events": {
"href": "https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/history/<PKEY>/events/",
"metadata": "subHisto"
},
}
返されたイベント href でGETリクエストを実行します。
-X GET https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/history/<PKEY>/events \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
-H 'Cache-Control: no-cache' \
-H 'X-Api-Key: <API_KEY>'
「mirrorPage」ノードにミラーページへのリンクを含む、プロファイルのイベントのリストを返します。
{
"PKey": "<PKEY>",
"category": "email",
"date": "2018-05-17 08:44:49.366Z",
"href": "https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/history/<PKEY>/events/<PKEY>",
"label": "Send via email",
"mirrorPage": {
"href": "https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/history/<PKEY>/events/<PKEY>/mirrorPage/"
},
"type": "outbound"
}
recommendation-more-help
3ef63344-7f3d-48f9-85ed-02bf569c4fff