You can create a placement by making a POST request to the Offer Library API.
The following table shows the valid values which comprise the Content-Type field in the request header:
Header name | Value |
---|---|
Content-Type | application/json |
API format
POST /{ENDPOINT_PATH}/placements
Parameter | Description | Example |
---|---|---|
{ENDPOINT_PATH} |
The endpoint path for persistence APIs. | https://platform.adobe.io/data/core/dps/ |
Request
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
}
}'
Response
A successful response returns the details of the newly created placement, and placement id
. You can use the it later steps to update or delete your placement. You can use your unique placement id
in later tutorials to create decisions, decision rules, and fallback offers.
{
"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}"
}