v1

latestOpenAPI 3.0.2EULA2026-07-143221521.2 MB
Point reservation

Create point reservation

This endpoint allows you to reserve customer points. It is usually used when you are not sure if a customer will really use the point or when you waiting for his confirmation of the point usage. It prevents point frauds.

post/point-reservations/actions/reserve-points

Headers

Accept-Languagestring

The unique ID of the language code by ISO 639-1.

Request body

external_idstring required

The external unique ID of the point reservation. You can use your own ID (could be an order ID or reservation ID from your system/application) that will help you identify and filter the point reservation later.

customer_idstring required

The unique ID of the customer.

amountnumber float required

The number of reserved points.

expiration_timestring

Date and time of the point reservation expiration. (YYYY-MM-DD HH:MM:SS)

Example request

{
  "external_id": "123459",
  "customer_id": "8ea2591121e636086a4a9c0992",
  "amount": 11,
  "expiration_time": "2023-10-31 00:00:00"
}

Response

No Content