---
title: "Charge a specific voucher reservation"
method: POST
path: "/reservations/{id}/charge"
tags: ["Reservations"]
---

# Charge a specific voucher reservation

`POST /reservations/{id}/charge`

Charges the previously created temporary reservation on a voucher.

## Path parameters

- `id` string, required

## Request body

- object
  - `order_number` string, required — Order or invoice number of the transaction for this usage

## Response `201`

OK

- object
  - `id` string — Primary identification key - will be used in voucher-charge calls
  - `voucher_id` string — Voucher primary identification key (see voucher -> id)
  - `client_id` string — Client primary identification key (see client -> id)
  - `type` 'charge' | 'recharge' | 'refund' — Type of this charge. Can either be "charge", "recharge" or "refund"
  - `amount` string — Amount in the currency of this voucher. Must be send as string in the following pattern: * Up to five digits before the decimal point * The decimal point (.) * Exactly two digits after the decimal point
  - `order_number` string — Order or invoice number of the transaction
  - `created_at` string, RFC3339 — created_at - datetime in RFC3339 format, see https://tools.ietf.org/html/rfc3339
  - `updated_at` string, RFC3339 — updated_at - datetime in RFC3339 format, see https://tools.ietf.org/html/rfc3339

## Other responses

- `403` — The request contained valid data and was understood by the server, but the server is refusing action.
- `404` — The requested resource could not be found but may be available in the future. Subsequent requests by the client are permissible.
- `422` — The request was well-formed but was unable to be followed due to semantic errors.

---

[API](https://skmtc.net/jtl-software/apis/scx-authentication-api.md) · [All operations](https://skmtc.net/jtl-software/apis/scx-authentication-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/jtl-software/scx-authentication-api/revisions/f979b1ea6951/schema)
