您可以通過向PATCH請求修改或更新個性化優惠 Offer Library API
有關JSON修補程式(包括可用操作)的詳細資訊,請參閱 JSON修補程式文檔。
下表顯示了組成 內容類型 和 接受 請求標題中的欄位:
標題名稱 | 值 |
---|---|
Accept | application/vnd.adobe.platform.xcore.xdm.receipt+json; version=1 |
Content-Type | Content-Type: application/vnd.adobe.platform.xcore.patch.hal+json; version=1; schema="https://ns.adobe.com/experience/offer-management/personalized-offer;version=0.5" |
API格式
PATCH /{ENDPOINT_PATH}/{CONTAINER_ID}/instances/{INSTANCE_ID}
參數 | 說明 | 範例 |
---|---|---|
{ENDPOINT_PATH} |
儲存庫API的終結點路徑。 | https://platform.adobe.io/data/core/xcore/ |
{CONTAINER_ID} |
個性化優惠所在的容器。 | e0bd8463-0913-4ca1-bd84-6309134ca1f6 |
要求
curl -X PATCH \
'https://platform.adobe.io/data/core/xcore/e0bd8463-0913-4ca1-bd84-6309134ca1f6/instances/0f4bc230-13df-11eb-bc55-c11be7252432' \
-H 'Accept: application/vnd.adobe.platform.xcore.xdm.receipt+json; version=1' \
-H 'Content-Type: Content-Type: application/vnd.adobe.platform.xcore.patch.hal+json; version=1; schema="https://ns.adobe.com/experience/offer-management/personalized-offer;version=0.5"' \
-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 '[
{
"op": "add",
"path": "/_instance/xdm:representations/-",
"value": {
"xdm:placement": "xcore:offer-placement:124e0be5699743d3",
"xdm:components": [
{
"@type": "https://ns.adobe.com/experience/offer-management/content-component-text",
"dc:format": "text/plain",
"dc:language": ["en"],
"xdm:content": "Here is your first sale offer!"
}
]
}
}
]'
參數 | 說明 |
---|---|
op |
用於定義更新連接所需操作的操作調用。 操作包括: add 。 replace , remove 。 |
path |
要更新的參數的路徑。 |
value |
要用更新參數的新值。 |
回應
成功的響應返回個性化服務的更新詳細資訊,包括其唯一實例ID和個性化服務 @id
。
{
"instanceId": "0f4bc230-13df-11eb-bc55-c11be7252432",
"@id": "xcore:personalized-offer:124e181c8b0d7878",
"repo:etag": 1,
"repo:createdDate": "2020-10-21T20:50:32.018624Z",
"repo:lastModifiedDate": "2020-10-21T20:50:32.018624Z",
"repo:createdBy": "{CREATED_BY}",
"repo:lastModifiedBy": "{MODIFIED_BY}",
"repo:createdByClientId": "{CREATED_CLIENT_ID}",
"repo:lastModifiedByClientId": "{MODIFIED_CLIENT_ID}"
}