### Transfer a card id range

`POST /api/v1/card-batches/{id}/transfer-range`

Moves a contiguous range of card ids from the series, for the case where the physical cards handed over are a known block.

- Authentication: manager session (JWT) or API token
- Permission: `prm_cards_change_owner` (Transfer / change card owner)
- Risk: danger
- Rate limit bucket: `t_mutate`
- Idempotent on `request_id`: retrying with the same id returns the original result

#### Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `id` | path | integer | yes | Series id. |
| `card_id_range` | body | object | yes | The inclusive id range to move. |
| `unit_price` | body | number | yes | Price per card. Required. |
| `request_id` | body | string | yes | Idempotency key. |

