プレースメントの作成 create-placement

Offer Library API に POST リクエストを実行することで、プレースメントを作成できます。

Accept ヘッダーと Content-Type ヘッダー accept-and-content-type-headers

次の表に、リクエストヘッダーの「Content-Type」フィールドを構成する有効な値を示します。

ヘッダー名
Content-Type
application/json

API 形式

POST /{ENDPOINT_PATH}/placements
パラメーター
説明
{ENDPOINT_PATH}
永続性 API のエンドポイントパス。
https://platform.adobe.io/data/core/dps/

リクエスト

curl -X POST 'https://platform.adobe.io/data/core/dps/placements' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {IMS_ORG}' \
-H 'x-sandbox-name: {SANDBOX_NAME}' \
-d '{
    "name": "New placement",
    "description": "Placement description",
    "componentType": "html",
    "channel": "https://ns.adobe.com/xdm/channel-types/email",
    "itemCount": 1,
    "allowDuplicatePlacements": false,
    "returnContent": true,
    "returnMetaData": {
        "decisionName": false,
        "offerName": false,
        "offerAttributes": false,
        "offerPriority": false,
        "placementName": false,
        "channelType": false,
        "contentType": false
    }
}'

応答

応答が成功すると、新しく作成されたプレースメントとプレースメント id の詳細が返されます。後の手順を使用して、プレースメントを更新または削除できます。後のチュートリアルでは独自のプレースメント id を使用して、アクティビティ、決定ルール、フォールバックオファーを作成できます。

{
    "etag": 1,
    "createdBy": "{CREATED_BY}",
    "lastModifiedBy": "{MODIFIED_BY}",
    "id": "{ID}",
    "sandboxId": "{SANDBOX_ID}",
    "createdDate": "2023-05-31T15:09:11.771Z",
    "lastModifiedDate": "2023-05-31T15:09:11.771Z",
    "createdByClientId": "{CREATED_CLIENT_ID}",
    "lastModifiedByClientId": "{MODIFIED_CLIENT_ID}"
}
recommendation-more-help
b22c9c5d-9208-48f4-b874-1cefb8df4d76