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.
Optional Fields
FieldTypeDescription
reasonstringReason for replacement. Nullable.
shippingAddressobjectFields: addressLine1, addressLine2, city, state, postalCode, country

Request

Path Params

Header Params

Body Params application/json

Examples

Responses

🟢202
Replacement request accepted for async processing.
This response does not have a body.
🟠401
🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST '/{{baseurl}}/api/v1/cards//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",
    "shippingAddress": {
        "addressLine1": "10 Downing Street",
        "city": "London",
        "postalCode": "SW1A 2AA",
        "country": "GB"
    }
}'
Modified at 2026-02-19 17:53:55
Previous
Cancel Card
Next
Set / Reset Card PIN
Built with