---
title: "BETA: Create a new card limit"
method: POST
path: "/v1/card-limits"
tags: ["Card Limits"]
---

# BETA: Create a new card limit

`POST /v1/card-limits`

## Headers

- `X-Idempotency-Key` string, required

## Request body

- CreateCardLimitForCardSchema
  - `type` 'RECURRING' | 'TEMPORARY', required
  - `description` string, required — Description of the card limit.
  - `expiry_date` string, date, nullable — Expiry date of the card limit. Only used for TEMPORARY limits.
  - `amount_cents` integer, required — Amount of the card limit in cents.
  - `reload_interval` 'DAILY' | 'WEEKLY' | 'MONTHLY' | 'QUARTERLY' | 'YEARLY' | 'NO_RELOAD'
  - `start_date` string, date-time, nullable — Start date of the card limit. If set in the future, the limit is scheduled.
  - `card_id` string, uuid, required — Unique identifier for the card.

## Response `201`

A single card limit

- CardLimitSchema
  - `id` string, uuid, required — Unique identifier for the card limit.
  - `card_id` string, uuid, required — Unique identifier for the card.
  - `type` 'RECURRING' | 'TEMPORARY', required
  - `description` string, required — Description of the card limit.
  - `start_date` string, date-time, required — Start date of the card limit.
  - `end_date` string, date-time, nullable, required — End date of the card limit. If None, the limit is ongoing.
  - `expiry_date` string, date, nullable, required — Expiry date of the card limit.
  - `amount` MoneyValueSchema, required
    - `value` integer, required — The monetary amount in its smallest unit (e.g. cents for CAD).
    - `currency` 'AFN' | 'ALL' | 'DZD' | 'USD' | 'EUR' | 'AOA' | 'XCD' | 'ARS' | 'AMD' | 'AWG' | 'AUD' | 'AZN' | 'BSD' | 'BHD' | 'BDT' | 'BBD' | 'BYN' | 'BZD' | 'XOF' | 'BMD' | 'BTN' | 'INR' | 'BOB' | 'BOV' | 'BAM' | 'BWP' | 'NOK' | 'BRL' | 'BND' | 'BGN' | 'BIF' | 'CVE' | 'KHR' | 'XAF' | 'CAD' | 'KYD' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'COU' | 'KMF' | 'CDF' | 'NZD' | 'CRC' | 'HRK' | 'CUC' | 'CUP' | 'ANG' | 'CZK' | 'DKK' | 'DJF' | 'DOP' | 'EGP' | 'SVC' | 'ERN' | 'ETB' | 'FKP' | 'FJD' | 'XPF' | 'GMD' | 'GEL' | 'GHS' | 'GIP' | 'GTQ' | 'GBP' | 'GNF' | 'GYD' | 'HTG' | 'HNL' | 'HKD' | 'HUF' | 'ISK' | 'IDR' | 'XDR' | 'IRR' | 'IQD' | 'ILS' | 'JMD' | 'JPY' | 'JOD' | 'KZT' | 'KES' | 'KPW' | 'KRW' | 'KWD' | 'KGS' | 'LAK' | 'LBP' | 'LSL' | 'ZAR' | 'LRD' | 'LYD' | 'CHF' | 'MOP' | 'MGA' | 'MWK' | 'MYR' | 'MVR' | 'MRU' | 'MUR' | 'XUA' | 'MXN' | 'MXV' | 'MDL' | 'MNT' | 'MAD' | 'MZN' | 'MMK' | 'NAD' | 'NPR' | 'NIO' | 'NGN' | 'OMR' | 'PKR' | 'PAB' | 'PGK' | 'PYG' | 'PEN' | 'PHP' | 'PLN' | 'QAR' | 'MKD' | 'RON' | 'RUB' | 'RWF' | 'SHP' | 'WST' | 'STN' | 'SAR' | 'RSD' | 'SCR' | 'SLL' | 'SGD' | 'XSU' | 'SBD' | 'SOS' | 'SSP' | 'LKR' | 'SDG' | 'SRD' | 'SZL' | 'SEK' | 'CHE' | 'CHW' | 'SYP' | 'TWD' | 'TJS' | 'TZS' | 'THB' | 'TOP' | 'TTD' | 'TND' | 'TRY' | 'TMT' | 'UGX' | 'UAH' | 'AED' | 'USN' | 'UYI' | 'UYU' | 'UZS' | 'VUV' | 'VEF' | 'VED' | 'VND' | 'YER' | 'ZMW' | 'ZWL' | 'UNK', required
  - `status` 'SCHEDULED' | 'ACTIVE' | 'EXPIRED', required

## Other responses

- `422` — start_date is not enabled for this business

---

[API](https://skmtc.dev/floatfinancial/apis/float-public-api.md) · [All operations](https://skmtc.dev/floatfinancial/apis/float-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/floatfinancial/float-public-api/revisions/a3c42eb1b312/schema)
