Artha API
  1. Card Operations
  • Introduction
  • Authentication
  • KYC/KYB Requirements
  • API Setup Guide
  • Customers
    • Create Customer
      POST
    • List Customers
      GET
    • Get Customer
      GET
    • Update Customer
      PATCH
  • Cards
    • Submit KYC/KYB Applicant
      POST
    • Issue Card
      POST
    • Cards List
      GET
    • Get Card
      GET
    • Get Sensitive Card Details
      GET
  • Card Operations
    • Activate Card
      POST
    • Freeze Card
      POST
    • Unfreeze Card
      POST
    • Cancel Card
      POST
    • Replace Card
      POST
    • Set / Reset Card PIN
      POST
    • Get Card Limits
      GET
    • Update Card Limits
      POST
  • Funding
    • Top Up Card
      POST
    • Get Card Balance
      GET
    • List Top-Up History
      GET
  • Transactions
    • List All Transactions
      GET
    • List Card Transactions
      GET
    • List Customer Transactions
      GET
    • Get Transaction
      GET
  • Products
    • List Products
    • Get Product
  • Utilities
    • Upload Documents
  • Webhook's
    • Webhooks
  1. Card Operations

Update Card Limits

POST
{{baseUrl}}/ext/api/v1/cards/{cardId}/limits
Updates spending limits for a card. Only the fields you include in the request will be updated — omitted limits retain their current values.
All values must be >= 0. Setting a limit to null may reset it to the product default (behaviour depends on provider).
Optional Fields
FieldTypeDescriptionConstraints
daily_limitnumber (double)- Example: 1000.0Min: 0 · Nullable
monthly_limitnumber (double)- Example: 10000.0Min: 0 · Nullable
per_transaction_limitnumber (double)- Example: 500.0Min: 0 · Nullable
atm_withdrawal_limitnumber (double)- Example: 300.0Min: 0 · Nullable
yearly_limitnumber (double)-Min: 0 · Nullable
Optional Fields
FieldTypeDescriptionConstraints
daily_limitnumber (double)- Example: 1000.0Min: 0 · Nullable
monthly_limitnumber (double)- Example: 10000.0Min: 0 · Nullable
per_transaction_limitnumber (double)- Example: 500.0Min: 0 · Nullable
atm_withdrawal_limitnumber (double)- Example: 300.0Min: 0 · Nullable
yearly_limitnumber (double)-Min: 0 · Nullable

📤 Response Fields#

FieldTypeDescriptionNotes
card_idstring (uuid)--
daily_limitnumber- Example: 500.0nullable
monthly_limitnumber- Example: 5000.0nullable
per_transaction_limitnumber- Example: 250.0nullable
atm_withdrawal_limitnumber- Example: 200.0nullable
yearly_limitnumber-nullable
lifetime_limitnumber-nullable
currencystring- Example: GBPnullable

Request

Path Params

Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Card limits updated.
Body

🟠401
🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST '{{baseUrl}}/ext/api/v1/cards/a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11/limits' \
--header 'X-API-Key;' \
--header 'X-Signature;' \
--header 'X-Timestamp;' \
--header 'X-Nonce;' \
--header 'X-Body-Hash;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "daily_limit": 1000,
    "per_transaction_limit": 500,
    "atm_withdrawal_limit": 300
}'
Response Response Example
200 - Example 1
{}
Modified at 2026-02-18 11:20:21
Previous
Get Card Limits
Next
Top Up Card
Built with