查找后备优惠

您可以通过向以下网站发出GET请求来查找特定的后备优惠: Offer Library 请求路径中包含后备优惠ID的API。

API格式

GET /{ENDPOINT_PATH}/offers/{ID}?offer-type=fallback
参数 描述 示例
{ENDPOINT_PATH} 持久性API的端点路径。 https://platform.adobe.io/data/core/dps/
{ID} 要查找的实体的ID。 fallbackOffer1234

请求

curl -X GET 'https://platform.adobe.io/data/core/dps/offers/fallbackOffer1234?offer-type=fallback' \
-H 'Accept: *,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}'

响应

成功的响应将返回后备优惠的详细信息,包括您的后备优惠和唯一的后备优惠ID。

{
    "created": "2023-06-08T14:04:41.011+00:00",
    "modified": "2023-06-08T14:04:41.011+00:00",
    "etag": 1,
    "schemas": [
        "https://ns.adobe.com/experience/offer-management/fallback-offer;version=0.8"
    ],
    "createdBy": "{CREATED_BY}",
    "lastModifiedBy": "{MODIFIED_BY}",
    "id": "fallbackOffer1234",
    "name": "Fallback Offer Web",
    "description": "Fallback Offer Web Description",
    "status": "draft",
    "representations": [
        {
            "channel": "https://ns.adobe.com/xdm/channel-types/web",
            "placement": "offerPlacement1234",
            "components": [
                {
                    "type": "imagelink",
                    "format": "image/png",
                    "deliveryURL": "https://mysite.com"
                }
            ]
        }
    ]
}

在此页面上