POST api/Customer/SendLoyaltyEligibleToCustomerChangeEvent
Request Information
URI Parameters
None.
Body Parameters
CustomerLoyaltyEligibleRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
None. |
|
| LoyaltySubscriptionDate | date |
None. |
|
| LoyaltySubscriptionEndDate | date |
None. |
|
| CountOfSubscribtionToProgramme | integer |
None. |
|
| Source | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": "82420879-4b94-43b3-b1ec-2f5348c894a4",
"LoyaltySubscriptionDate": "2025-10-30T21:00:35.8518145+03:00",
"LoyaltySubscriptionEndDate": "2025-10-30T21:00:35.8518145+03:00",
"CountOfSubscribtionToProgramme": 4,
"Source": "sample string 5"
}
application/xml, text/xml
Sample:
<CustomerLoyaltyEligibleRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <CountOfSubscribtionToProgramme>4</CountOfSubscribtionToProgramme> <LoyaltySubscriptionDate>2025-10-30T21:00:35.8518145+03:00</LoyaltySubscriptionDate> <LoyaltySubscriptionEndDate>2025-10-30T21:00:35.8518145+03:00</LoyaltySubscriptionEndDate> <Source>sample string 5</Source> <UserId>82420879-4b94-43b3-b1ec-2f5348c894a4</UserId> </CustomerLoyaltyEligibleRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CustomerLoyaltyEligibleResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| ErrorMessages | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"ErrorMessages": "sample string 2"
}
application/xml, text/xml
Sample:
<CustomerLoyaltyEligibleResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <ErrorMessages>sample string 2</ErrorMessages> <Success>true</Success> </CustomerLoyaltyEligibleResponse>