POST api/Customer/SendLoyaltyEligibleToCustomerChangeEvent

Request Information

URI Parameters

None.

Body Parameters

CustomerLoyaltyEligibleRequest
NameDescriptionTypeAdditional 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": "a63dbc9e-7c68-4126-8c60-252e3203a536",
  "LoyaltySubscriptionDate": "2025-05-24T00:01:58.648079+03:00",
  "LoyaltySubscriptionEndDate": "2025-05-24T00:01:58.648079+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-05-24T00:01:58.648079+03:00</LoyaltySubscriptionDate>
  <LoyaltySubscriptionEndDate>2025-05-24T00:01:58.648079+03:00</LoyaltySubscriptionEndDate>
  <Source>sample string 5</Source>
  <UserId>a63dbc9e-7c68-4126-8c60-252e3203a536</UserId>
</CustomerLoyaltyEligibleRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CustomerLoyaltyEligibleResponse
NameDescriptionTypeAdditional 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>