You can create a decision by making a POST request to the Offer Library API.
The following table shows the valid values which comprise the Content-Type and Accept fields in the request header:
Header name | Value |
---|---|
Content-Type | application/json |
API format
POST /{ENDPOINT_PATH}/offer-decisions
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/offer-decisions' \
-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": "Test Offer Decision",
"description": "Offer Decision description",
"status": "live",
"startDate": "2021-08-23T07:00:00.000+00:00",
"endDate": "2021-08-25T07:00:00.000+00:00",
"fallback": "fallbackOffer1234",
"criteria": [
{
"placements": [
"offerPlacement1234",
"offerPlacement5678"
],
"rank": {
"priority": 0,
"order": {
"orderEvaluationType": "ranking-strategy",
"rankingStrategy": "123456789123"
}
},
"profileConstraint": {
"profileConstraintType": "none"
},
"optionSelection": {
"filter": "offerCollection1234"
}
}
]
}'
Response
A successful response returns information on the newly created decision, including its unique id
. You can use the id
in later steps to update or delete your decision.
{
"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}"
}