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": "ec6888ea-b048-410c-add3-818232cffcc7",
"clubRuleId": "fa5e51d0-1f21-4b10-aba5-a061fb94177e",
"points": 3.0,
"type": 0,
"purchaseId": "7aafb7d6-be9f-4a13-9085-53335b57bb03",
"purchaseItemId": "c5c6324a-3228-4175-9812-4e1190c3f5cb",
"mkActionParticipationId": "893c4d84-419b-472b-bff0-cf4cfd16d962",
"mmServiceParticipationId": "2428ef25-2d33-4696-ac6a-ad47b7760664",
"usedCouponCodeId": "a7a76040-9974-4d7a-ac36-e1e931bcc00f",
"couponCodeId": "7c0c5903-75e8-4c05-9f14-97b1bef80f9d",
"promotionId": "a76b6df4-9f75-4862-8e1f-b95aee17ae38",
"deviceId": "c0717181-64b4-4f51-b85f-9bf9639bc34d",
"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>ec6888ea-b048-410c-add3-818232cffcc7</ClubMemberId> <ClubRuleId>fa5e51d0-1f21-4b10-aba5-a061fb94177e</ClubRuleId> <CouponCodeId>7c0c5903-75e8-4c05-9f14-97b1bef80f9d</CouponCodeId> <DeviceId>c0717181-64b4-4f51-b85f-9bf9639bc34d</DeviceId> <MkActionParticipationId>893c4d84-419b-472b-bff0-cf4cfd16d962</MkActionParticipationId> <MmServiceParticipationId>2428ef25-2d33-4696-ac6a-ad47b7760664</MmServiceParticipationId> <OrganizationCode>sample string 1</OrganizationCode> <Points>3</Points> <PromotionId>a76b6df4-9f75-4862-8e1f-b95aee17ae38</PromotionId> <PurchaseId>7aafb7d6-be9f-4a13-9085-53335b57bb03</PurchaseId> <PurchaseItemId>c5c6324a-3228-4175-9812-4e1190c3f5cb</PurchaseItemId> <Type>MkactionParticipation</Type> <UsedCouponCodeId>a7a76040-9974-4d7a-ac36-e1e931bcc00f</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.