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": "6ac0bc85-ba5e-4648-a80e-c2e9907a4a4b",
"clubRuleId": "03e054d3-e03b-42b3-9bca-0f038c830659",
"points": 3.0,
"type": 0,
"purchaseId": "83c6be84-a9f1-4b90-b4cd-6620441cd4d1",
"purchaseItemId": "4f8d6e19-acab-4702-b177-d09a9c71bcce",
"mkActionParticipationId": "c6fa46d1-ef46-41d7-995e-0c7d5575b360",
"mmServiceParticipationId": "7e8dad13-ff29-4eaf-8e31-f88086f675f0",
"usedCouponCodeId": "57c5ff16-4f77-467c-9e64-c08523b1dfde",
"couponCodeId": "d93b0069-d252-49ac-9062-7919452da4c7",
"promotionId": "0cca0011-4ebd-4c84-a6e8-edb18cddb96e",
"deviceId": "ee4b35c6-3ce3-4ecd-8f77-b8686077a8b2",
"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>6ac0bc85-ba5e-4648-a80e-c2e9907a4a4b</ClubMemberId> <ClubRuleId>03e054d3-e03b-42b3-9bca-0f038c830659</ClubRuleId> <CouponCodeId>d93b0069-d252-49ac-9062-7919452da4c7</CouponCodeId> <DeviceId>ee4b35c6-3ce3-4ecd-8f77-b8686077a8b2</DeviceId> <MkActionParticipationId>c6fa46d1-ef46-41d7-995e-0c7d5575b360</MkActionParticipationId> <MmServiceParticipationId>7e8dad13-ff29-4eaf-8e31-f88086f675f0</MmServiceParticipationId> <OrganizationCode>sample string 1</OrganizationCode> <Points>3</Points> <PromotionId>0cca0011-4ebd-4c84-a6e8-edb18cddb96e</PromotionId> <PurchaseId>83c6be84-a9f1-4b90-b4cd-6620441cd4d1</PurchaseId> <PurchaseItemId>4f8d6e19-acab-4702-b177-d09a9c71bcce</PurchaseItemId> <Type>MkactionParticipation</Type> <UsedCouponCodeId>57c5ff16-4f77-467c-9e64-c08523b1dfde</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.