POST api/ReferralsRewardsRedemption
Permite generar un cargo al cliente
Request Information
URI Parameters
None.
Body Parameters
RedeemCredits| Name | Description | Type | Additional information |
|---|---|---|---|
| MemberAccount | string |
None. |
|
| ResortID | integer |
None. |
|
| TransactionCode | globally unique identifier |
None. |
|
| RegionID | integer |
None. |
|
| TransactionTypeID | integer |
None. |
|
| Concept | string |
None. |
|
| Amount | decimal number |
None. |
|
| Reference | string |
None. |
|
| PayMemberAccount | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"MemberAccount": "sample string 1",
"ResortID": 1,
"TransactionCode": "b8cb0dae-ed01-4870-8497-7cc3ff872590",
"UserID": "bc81fe69-53cf-49aa-9eb0-2ca739a4417e",
"GeneratedDate": "2025-12-15T13:44:56.8060726-06:00",
"PlaceID": 1,
"RegionID": 1,
"TransactionTypeID": 4,
"Concept": "sample string 5",
"Amount": 6.0,
"Reference": "sample string 7",
"PayMemberAccount": "sample string 8"
}
application/xml, text/xml
Sample:
<ApiReferralsViewModel.RedeemCredits xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ePlat.Models.ViewModels"> <Amount>6</Amount> <Concept>sample string 5</Concept> <PayMemberAccount>sample string 8</PayMemberAccount> <Reference>sample string 7</Reference> <RegionID>1</RegionID> <TransactionTypeID>4</TransactionTypeID> <MemberAccount>sample string 1</MemberAccount> <ResortID>1</ResortID> <TransactionCode>b8cb0dae-ed01-4870-8497-7cc3ff872590</TransactionCode> </ApiReferralsViewModel.RedeemCredits>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RedemptionResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | RedemptionStatus |
None. |
|
| Amount | decimal number |
None. |
|
| AuthorizationCode | globally unique identifier |
None. |
|
| Date | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 0,
"Amount": 1.0,
"AuthorizationCode": "8b4247da-6cc8-45bc-be05-b05fab32c441",
"Date": "2025-12-15T13:44:56.8060726-06:00"
}
application/xml, text/xml
Sample:
<ApiReferralsDataModel.RedemptionResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ePlat.Models.DataModels"> <Amount>1</Amount> <AuthorizationCode>8b4247da-6cc8-45bc-be05-b05fab32c441</AuthorizationCode> <Date>2025-12-15T13:44:56.8060726-06:00</Date> <Status>AcceptTermsConditions</Status> </ApiReferralsDataModel.RedemptionResponse>