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

Replace Card

POST
{{baseUrl}}/api/v1/cards/{cardId}/replace
Requests a replacement card (e.g., for lost, stolen, damaged, or expired cards). The existing card is cancelled and a new card is issued.
Returns 202 Accepted — the replacement is processed asynchronously
For physical cards, provide a shipping_address
A task_id in the response can be used to track the replacement status
Optional Fields
FieldTypeDescriptionConstraints
reasonstringReason for replacement (e.g., lost, stolen, damaged, expired). Example: Card damaged beyond useNullable
shipping_addressShippingAddressDto--
Optional Fields
FieldTypeDescriptionConstraints
reasonstringReason for replacement (e.g., lost, stolen, damaged, expired). Example: Card damaged beyond useNullable
shipping_addressShippingAddressDto--

📤 Response Fields#

FieldTypeDescriptionNotes
card_idstring (uuid)--
customer_idstring (uuid)--
product_idstring-nullable
card_typestring-nullable
actionstringThe operation performed: activate, freeze, unfreeze, cancel, replace, set_pin. Example: activate-
statusstringNew card status after the operation. Example: active-
messagestring-nullable
task_idstringAsync task ID for operations processed in the background.nullable
performed_atstring (date-time)--

Request

Path Params

Header Params

Body Params application/json

Examples

Responses

🟢202
application/json
Replacement request accepted for async processing.
Body

🟠401
🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST '{{baseUrl}}/api/v1/cards/a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11/replace' \
--header 'X-API-Key;' \
--header 'X-Signature;' \
--header 'X-Timestamp;' \
--header 'X-Nonce;' \
--header 'X-Body-Hash;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "reason": "Card damaged beyond use",
    "shipping_address": {
        "address_line_1": "10 Downing Street",
        "city": "London",
        "postal_code": "SW1A 2AA",
        "country": "GB"
    }
}'
Response Response Example
202 - Example 1
{}
Modified at 2026-02-18 13:24:12
Previous
Cancel Card
Next
Set / Reset Card PIN
Built with