Create catalog promotion

This API is used to create catalog promotions and link it to a reward.

📘

Note

  • A reward can be linked to only one active- running or scheduled promotion.
  • Promotion can be disabled but cannot be re-enabled.

👍

Note

  • For detailed information about our APIs and for hands-on testing, refer documentation in API overview and step-by-step guide on making your first API call in Make your first API call .
  • Start time and end time are in UTC zone.

Prerequisites

  • Basic Authentication
  • Default access group

Resource information

URI/api_gateway/rewards/core/v1/promotion/create
HTTP MethodPOST
PaginationNo
Batch supportNo
Rate limit informationNone

API endpoint example

https://eucrm.cc.capillarytech.com/api_gateway/rewards/core/v1/promotion/create

Request body parameters

ParameterData TypeDescription
startTime*StringStart date and time of the catalog promotion. Ex: 2024-05-04T20:58:49.000Z
endTime*StringEnd date and time of the catalog promotion. Ex: 2025-10-25T05:46Z
discountType*EnumType of discount being applied. Supported values: ABSOLUTE, PERCENTAGE, FIXED
discountValue*IntegerValue of the discount. Ex: 1
brandId*StringUnique identifier for the brand Ex: 1
enabledBooleanIndicates if the entry is enabled
languageSpecificInfo*ArrayArray containing language-specific information
languageCode*StringLanguage code
name*StringName in the specified language
description*StringDescription in the specified language
enabled*BooleanIndicates if the language entry is enabled
rewardIds*Array of IntegersReward IDs on which catalog promotion will be applied. Ex: 112295
{
    "startTime": "2024-05-04T20:58:49.000Z",
    "endTime": "2025-10-25T05:46Z",
    "discountType": "ABSOLUTE",
    "discountValue": 1,
    "brandId": "1",
    "enabled": true,
    "languageSpecificInfo":
    [
        {
            "languageCode": "en",
            "name": "test1",
            "description": "description",
            "enabled": true
        }
    ],
    "rewardIds":
    [
        112295
    ]
}

Response parameters

ParameterData TypeDescription
statusObjectStatus of the operation
successBooleanIndicates if the operation was successful
codeIntegerCode representing the operation's status
messageStringDescription of the operation's status
catalogPromotionObjectContains information about the catalog promotion
idIntegerUnique identifier for the catalog promotion
failedRewardsArrayAn array of failed rewards.
{
    "status": {
        "success": true,
        "code": 11002,
        "message": "Catalog promotion created successfully."
    },
    "catalogPromotion": {
        "id": 8
    },
    "failedRewards": []
}

API-specific error codes

Error codeDescription
11015Reward expired or disabled or free. Cannot apply for catalog promotion.
11004Reward already linked to active catalog promotion.
Language
Authorization
Basic
base64
:
URL
Click Try It! to start a request and see the response here!