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": "6f920ba7-c1c6-4650-90a9-21b75af091f6",
"points": 3,
"annotations": "sample string 4",
"expirationDate": "2026-03-21T23:28:30.4519771+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>6f920ba7-c1c6-4650-90a9-21b75af091f6</CustomerId> <ExpirationDate>2026-03-21T23:28:30.4519771+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.