---
title: "Get a list of voucher charges"
method: GET
path: "/vouchers/{id}/charges"
tags: ["Vouchers"]
---

# Get a list of voucher charges

`GET /vouchers/{id}/charges`

This call will give you a paginated list of voucher charges.

## Path parameters

- `id` string, required

## Query parameters

- `page` integer
- `per_page` integer
- `filter[created_from]` string, RFC3339
- `filter[created_to]` string, RFC3339
- `filter[order_number]` string
- `filter[amount]` string

## Response `200`

OK

- object
  - `data` 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
  - `links` object
    - `first` string — First page link
    - `last` string — Last page link
    - `prev` string, nullable — Previous page link
    - `next` string, nullable — Next page link
  - `meta` object
    - `current_page` integer — Current page
    - `per_page` integer — Limit per page
    - `from` integer, nullable — Start of pagination
    - `to` integer, nullable — Start of pagination
    - `last_page` integer — Last page
    - `total` integer — Total pages count
    - `path` string — Current path link

---

[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)
