POST api/v1/clubmovements
Request Information
URI Parameters
None.
Body Parameters
AddMovementDto| Name | Description | Type | Additional information |
|---|---|---|---|
| OrganizationCode | string |
None. |
|
| ClubMemberId | globally unique identifier |
None. |
|
| ClubRuleId | globally unique identifier |
None. |
|
| Points | decimal number |
None. |
|
| Type | ClubMovementType |
None. |
|
| PurchaseId | globally unique identifier |
None. |
|
| PurchaseItemId | globally unique identifier |
None. |
|
| MkActionParticipationId | globally unique identifier |
None. |
|
| MmServiceParticipationId | globally unique identifier |
None. |
|
| UsedCouponCodeId | globally unique identifier |
None. |
|
| CouponCodeId | globally unique identifier |
None. |
|
| PromotionId | globally unique identifier |
None. |
|
| DeviceId | globally unique identifier |
None. |
|
| Annotations | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"organizationCode": "sample string 1",
"clubMemberId": "18fd9389-7c2c-494b-9e5d-b0cb61735aca",
"clubRuleId": "25724305-b049-4cbf-8bf2-64c1a6dc4f11",
"points": 3.0,
"type": 0,
"purchaseId": "ba0272b1-4034-4f63-9a12-047010d0f9e9",
"purchaseItemId": "2d1b9693-b6fa-4fa7-8aa4-9bbc2d2e743b",
"mkActionParticipationId": "fe1ff0a8-23d5-492a-b81b-6ee63b9e351b",
"mmServiceParticipationId": "2538dbcc-2855-4ec7-847f-81c133bc6a38",
"usedCouponCodeId": "c118314d-b234-419e-8ac3-aa0e0cec39a5",
"couponCodeId": "e91b8f72-e7bc-4db3-bd74-5f8f821328dd",
"promotionId": "6d252f4b-039c-4ad2-b9e9-8d00bd489471",
"deviceId": "3d5f7c56-6836-45d2-94c7-a1d13a5cd2ad",
"annotations": "sample string 4"
}
application/xml, text/xml
Sample:
<AddMovementDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Application.Services.Dtos"> <Annotations>sample string 4</Annotations> <ClubMemberId>18fd9389-7c2c-494b-9e5d-b0cb61735aca</ClubMemberId> <ClubRuleId>25724305-b049-4cbf-8bf2-64c1a6dc4f11</ClubRuleId> <CouponCodeId>e91b8f72-e7bc-4db3-bd74-5f8f821328dd</CouponCodeId> <DeviceId>3d5f7c56-6836-45d2-94c7-a1d13a5cd2ad</DeviceId> <MkActionParticipationId>fe1ff0a8-23d5-492a-b81b-6ee63b9e351b</MkActionParticipationId> <MmServiceParticipationId>2538dbcc-2855-4ec7-847f-81c133bc6a38</MmServiceParticipationId> <OrganizationCode>sample string 1</OrganizationCode> <Points>3</Points> <PromotionId>6d252f4b-039c-4ad2-b9e9-8d00bd489471</PromotionId> <PurchaseId>ba0272b1-4034-4f63-9a12-047010d0f9e9</PurchaseId> <PurchaseItemId>2d1b9693-b6fa-4fa7-8aa4-9bbc2d2e743b</PurchaseItemId> <Type>MkactionParticipation</Type> <UsedCouponCodeId>c118314d-b234-419e-8ac3-aa0e0cec39a5</UsedCouponCodeId> </AddMovementDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.