POST api/v1/clubmovements/manual
Request Information
URI Parameters
None.
Body Parameters
AddManualMovementDto| Name | Description | Type | Additional information |
|---|---|---|---|
| OrganizationCode | string |
None. |
|
| CustomerId | globally unique identifier |
None. |
|
| Points | integer |
None. |
|
| Annotations | string |
None. |
|
| ExpirationDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"organizationCode": "sample string 1",
"customerId": "ec337d17-5b3b-4a48-8b6d-1c1fe671fa5c",
"points": 3,
"annotations": "sample string 4",
"expirationDate": "2026-02-04T03:01:09.6627734+00:00"
}
application/xml, text/xml
Sample:
<AddManualMovementDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Application.Services.Dtos"> <Annotations>sample string 4</Annotations> <CustomerId>ec337d17-5b3b-4a48-8b6d-1c1fe671fa5c</CustomerId> <ExpirationDate>2026-02-04T03:01:09.6627734+00:00</ExpirationDate> <OrganizationCode>sample string 1</OrganizationCode> <Points>3</Points> </AddManualMovementDto>
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.