建立位置 create-placement
您可以向Offer Library API發出POST要求,以建立位置。
Accept和Content-Type標題 accept-and-content-type-headers
下表顯示請求標頭中包含 Content-Type 欄位的有效值:
標題名稱
            價值
          Content-Type
            application/jsonAPI格式
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