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": "95590ca1-81b2-4dd7-9da0-c9b9f711e814",
"UserID": "e7e9d7ac-af6e-4650-b4fe-9ed9d9f355a1",
"GeneratedDate": "2026-03-24T15:37:56.7984363-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>95590ca1-81b2-4dd7-9da0-c9b9f711e814</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": "e6aa0a4f-c00d-4ae9-81bb-9c3ff6d5ddce",
"Date": "2026-03-24T15:37:56.7984363-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>e6aa0a4f-c00d-4ae9-81bb-9c3ff6d5ddce</AuthorizationCode> <Date>2026-03-24T15:37:56.7984363-06:00</Date> <Status>AcceptTermsConditions</Status> </ApiReferralsDataModel.RedemptionResponse>