This API is used to issue multiple rewards to the user based on mobile number/ email Id.
While issuing bulk rewards,
-
The intouch points required to purchase the rewards are summed up and isRedeemable call checks if the customer has enough points or not.
- If the customer has enough points, then all the rewards in the issue bulk call are issued in a single shot
- If the customer doesn't have enough points, then the issue bulk call is failed and no reward is issued.
-
If the isRedeemable call is successful, then the system will issue the rewards to the user.
- Let's say, one reward is coupon, another is cart promotion in the request payload. Coupon is issued but cart promotion issual failed, this can happen and the coupon will be issued. Here in this case, partial issual will be successful.
Issuing reward that was created for a customer segment
If you want to issue a reward created for a specific customer segment, the user receiving the reward must belong to the segment or partition to which the reward is attached.
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 .
If either of the user_group2_primary_user_id or user_group2_id or user_group2_external_id is not null, the transaction will be treated as group loyalty redemption and GROUP_LOYALTY_REDEMPTION will be set to true for transaction
Prerequisites
- Authentication: Basic or OAuth authentication
- Default access group
Resource information
URI | /api_gateway/rewards/core/v1/user/rewards/issue?username={store}&skip_validation=true |
HTTP Method | POST |
Pagination | No |
Batch support | No |
Rate limit information | None |
API endpoint example
https://eucrm.cc.capillarytech.com/api_gateway/rewards/core/v1/user/rewards/issue?username=swati&skip_validation=true
Request query parameters
Parameter | Data Type | Description |
---|---|---|
Username* | String | Username name of the store. |
skip_validation | Boolean | A validation code is used to redeem points for the transaction. skip_validation is set to true as brands configured in Marvel bypass validation code. |
Request body parameters
Parameter | Data Type | Description |
---|---|---|
mobile\ | String | Mobile phone number of the customer. Any of the identifiers is mandatory. |
Email ID | String | Email ID of the customer. Any of the identifiers is mandatory. |
External ID | String | External ID of the customer. Any of the identifiers is mandatory. |
brand | String | Brand associated with the transaction. |
transactionNumber | String | Unique identifier for the transaction. |
programId | Integer | The ID of the program associated with the promotion. |
notes | String | A string used to store or represent additional information. |
quantity* | Integer | Quantity of the specified reward. This is applicable for rewards with payment config CONV_RATIO only and should have a value greater than one. For more information and various examples, refer to the documentation here. Note: If the quantity is entered with decimals, the system will not consider the decimal part. For example, if you enter the value 1.56, the system will disregard the .56, and the value will be treated as 1. |
rewards | Array | Array of rewards associated with the transaction. |
rewardId | Integer | Unique identifier for a reward. |
params | String | Params acts as a key that holds additional information or configuration details as a JSON object. |
paymentConfig | Object | Payment configuration details for the reward. Note: The payment config ID is mandatory if rewards are created with a payment configuration block. This applies when multiple payment configurations are defined for a single reward.. It is not recommended to use Payment Config for single payment config as it will break the flow when rewards need to be issued from loyalty workflows/ loyalty promotions/ journeys/ campaigns. |
id | Integer | Unique identifier for the payment configuration. (id can be obtained from this API) |
customFields | Object | The list of custom fields associated with the reward issued to the customer. A custom field allows you to add extra information related to the reward. You can add the custom field in the issue reward call once the custom field is created using the create custom field API . |
fulfillmentDetails | Object | The list of fulfillment details associated with the reward. There can be multiple stages that the reward undergoes, such as BOOKED, ON THE WAY, DELIVERED. For example, A brand can have a fulfillment status as the Reward is SHIPPED before delivering the reward to the customer. You can create a fulfillment status using the Create fulfillment status API and use it in the issue reward call. |
user_group2_primary_user_id | String | Unique user ID of the primary member of the group associated with the rewards to be issued. Customer ID (user_group2_id ) or User ID (user_group2_primary_user_id ) or External ID (user_group2_external_id ) ,any one of these three can be used. If any one of these is null, the transaction won't be considered a Group Loyalty Redemption. |
{
"mobile": "11223569865",
"brand": "BUKL",
"transactionNumber": 107,
"programId": "626",
"notes": "This is notes",
"rewards": [
{
"rewardId": 239433,
"quantity": 1,
"customFields": {
"issue-reward-1": "issue-reward-values"
},
"paymentConfig": {
"id": 700
},
"fulfillmentDetails": {
"status": "Order confirmed"
}
},
{
"rewardId": 239434,
"quantity": 1,
"paymentConfig": {
"id": 701
},
"fulfillmentDetails": {
"status": "Order confirmed"
}
}
],
"userGroup2PrimaryUserId": 890
}
{
"mobile": "919886022338",
"brand": "marvel_automation",
"transactionNumber": "Transaction-1716621508000",
"rewards": [
{
"rewardId": 13649,
"quantity": 40,
"paymentConfig": {
"id": 307,
"points": 500
}
}
]
}
{
"brand": "lekhanaBrand",
"transactionNumber": "123456789",
"rewards": [
{
"rewardId": 9252,
"quantity": 1,
"customFields": {
"issue-reward-1": "issue-reward-values"
},
"fulfillmentDetails": {
"status": "SHIPPED"
}
}
],
"mobile": "916677777777"
}
{
"mobile": "11223569865",
"brand": "BUKL",
"transactionNumber": "107",
"rewards": [
{
"rewardId": 221441,
"quantity": 2,
"paymentConfig": {
"id": 456
}
}
],
"user_group2_primary_user_id":"11223569865"
}
{
"mobile": "162651476021",
"brand": "BUKL",
"transactionNumber": 1719466915,
"rewards": [
{
"rewardId": 153873,
"quantity": 1,
"paymentConfig": {
"id": 34
},
"params": {
"test": "test"
}
},
{
"rewardId": 225087,
"quantity": 1
}
]
}
{
"mobile": "9988776655",
"brand": "BUKL",
"transactionNumber": "NeeTesttr11",
"params": {
"denomination": 100,
"quantity": 1
},
"rewards": [
{
"rewardId": 225086,
"quantity": 1
},
{
"rewardId": 225087,
"quantity": 1
}
]
}
Response parameters
Parameter | Data Type | Description |
---|---|---|
status | Object | General status of the response. |
success | Boolean | Indicates success status. |
code | Integer | Status code of the API call. |
message | String | Message describing the status. |
rewards | Array | Array of rewards details. |
status | Object | Status of each individual reward. |
success | Boolean | Indicates success status of the reward. |
code | Integer | Status code for the reward. |
message | String | Message describing the status of the reward. |
rewardId | Integer | Unique identifier for the reward. |
requestedQuantity | Integer | Quantity of the reward requested. |
pointsReferenceId | String | Reference ID for points used. |
intouch | Array | Array of intouch details. |
pointsRedeemed | String | Number of points redeemed. |
couponCode | String | Coupon code provided. |
codeExpiry | String | Expiry date and time for the coupon code. |
promotions | Array | Array of associated promotions. |
vendor | Array | Array of associated vendors. |
params | Object | This is a set of parameters assigned to a reward. |
{
"status": {
"success": true,
"code": 200,
"message": "Reward issued successfully"
},
"rewards": [
{
"status": {
"success": true,
"code": 200,
"message": "Reward issued successfully"
},
"transactionId": 257735,
"rewardId": 239433,
"requestedQuantity": 1,
"pointsReferenceId": null,
"intouch": null,
"promotions": [],
"vendor": [
{}
],
"restrictions": null,
"paymentConfig": {
"paymentMode": "FREE",
"id": 700
},
"fulfillmentDetails": {
"status": "Order confirmed"
},
"customFields": null
},
{
"status": {
"success": true,
"code": 200,
"message": "Reward issued successfully"
},
"transactionId": 257736,
"rewardId": 239434,
"requestedQuantity": 1,
"pointsReferenceId": null,
"intouch": null,
"promotions": [],
"vendor": [
{}
],
"restrictions": null,
"paymentConfig": {
"paymentMode": "FREE",
"id": 701
},
"fulfillmentDetails": {
"status": "Order confirmed"
},
"customFields": null
}
]
}
{
"status": {
"success": false,
"code": 8010,
"message": "Reward issued partially"
},
"rewards": [
{
"status": {
"success": true,
"code": 200,
"message": "Reward issued successfully"
},
"rewardId": 13649,
"requestedQuantity": 1,
"pointsReferenceId": "jDgoKj",
"intouch": null,
"promotions": [],
"vendor": [
{
"voucher": "1510791",
"pointsRedeemed": "114"
}
],
"restrictions": null,
"paymentConfig": {
"paymentMode": "CONV_RATIO",
"id": 307,
"conversionRatio": 0.3500
},
"fulfillmentDetails": null,
"customFields": null
},
{
"status": {
"success": false,
"code": 12035,
"message": "Payment Mode needs to be passed when multiple payment Payment Config Exists"
},
"rewardId": 14746,
"requestedQuantity": 1,
"pointsReferenceId": null,
"intouch": null,
"promotions": null,
"vendor": null,
"restrictions": null,
"paymentConfig": null,
"fulfillmentDetails": null,
"customFields": null
}
]
}
{
"status": {
"success": false,
"code": 12016,
"message": "Invalid payment mode passed."
},
"intouch": null,
"promotion": null,
"vendor": null,
"paymentConfig": null,
"fulfillmentDetails": null,
"customFields": null
}
{
"status": {
"success": false,
"code": 400,
"message": "Invalid payment mode passed.,Payment configuration id is mandatory"
}
}
{
"status": {
"success": false,
"code": 8004,
"message": "fail to issue reward as user 373971337 does not belong to group 124",
"partnerError": {
"codes": [
"1620"
],
"messages": [
"user 373971337 does not belong to group 124"
]
}
},
"rewards":null
}
{
"status": {
"success": false,
"code": 8004,
"message": "fail to issue reward as points are not redeemable",
"partnerError": {
"codes": [
"828"
],
"messages": [
"points redemption rules/configuration not allowing redemption"
]
}
},
"intouch": null,
"promotion": null,
"vendor": null
}
{
"status": {
"success": false,
"code": 8004,
"message": "fail to issue reward as points are not redeemable",
"partnerError": {
"codes": [
"1632"
],
"messages": [
"group id/externalId/primary userId 381751178 passed is not valid"
]
}
},
"intouch": null,
"promotion": null,
"vendor": null
}
Example: Issuing reward created for customer segment
Consider the following scenario:
Reward | Segments and Partitions |
---|---|
r1 | {s1, p1}, {s2, p2} |
r2 | {s1, p2}, {s2, p1} |
r3 | {s1, p1}, {s3, p1} |
r4 | No segments or partitions |
User Segments and Partitions:
User | Belongs to Segments and Partitions | Reward details |
---|---|---|
user1 | {s2, p1}, {s3, p2} | Does not contain r1, r3; contains r2, r4 |
user2 | {s1, p1} | Contains r1, r3, r4; does not contain r2 |
user3 | No segments or partitions | Contains r4 |
Bulk Issuance Results:
User | Bulk Issuance (r1, r2, r3, r4) | Success/Failure |
---|---|---|
user1 | r1, r2, r3, r4 | r1 and r3 fail; r2 and r4 are issued |
user2 | r1, r2, r3, r4 | r2 fails; r1, r3, and r4 pass |
user3 | r1, r2, r3, r4 | r1, r2, and r3 fail; r4 passes |
API-specific error codes
Error code | Description |
---|---|
400 | Invalid payment mode passed. Payment configuration ID is mandatory. Invalid payment mode passed. Payment configuration ID is mandatory. if the paymentConfig block is defined in the body, then paymentId is mandatory. |
3004 | Brand not found |
8003 | fail to issue reward as Reward is disabled or not started yet or expired |
8004 | fail to issue reward as points are not redeemable |
8010 | Reward issued partially. This occurs when one of the rewards has multiple payment configurations mapped to it. For more information, refer to the documentation here. |
12005 | Reward constraint evaluation failed. Request failed. Max limit for the DAYS is reached. Allowed limit is 15 For Level CUSTOMER |
12016 | Invalid payment mode passed. Invalid payment mode passed. Whatever paymentId is passed in this API, the same should be mapped for the reward created. |
12034 | User Doesn't Belong To Segment Partition Defined For Reward Segment |