Kobble
  1. Cards
Kobble
  • Introduction
  • API Fundamentals
    • Idempotency
    • Rate Limits
  • Authorization
    • Authorization
    • Get access token
      POST
  • Beneficiaries
    • List all beneficiaries
      GET
    • Get beneficiary by ID
      GET
    • Create beneficiary
      POST
    • Update beneficiary
      PUT
  • Cards
    • Cards API
    • Get all cards
      GET
    • Create a new card
      POST
    • Get card by ID
      GET
    • Update card status
      PATCH
    • Replace or renew card
      POST
    • Generate card secret
      POST
  • Card Programs
    • Card Programs API
    • Get all programs
      GET
    • Create a new program
      POST
    • Get program by ID
      GET
  • Clients
    • Clients API
    • Get all clients
      GET
    • Get client by ID
      GET
    • Create a new client
      POST
    • Update client status
      PATCH
  • Endusers
    • Endusers API
    • Get all endusers
    • Create a new enduser
    • Get enduser by ID
  • Transactions
    • Transactions API
    • Get all transactions
    • Create a transaction
    • Get transaction by ID
    • Create manual credit transaction
    • Create manual debit transaction
  • Wallets
    • Wallets API
    • Get all wallets
    • Create a new wallet
    • Get wallet by ID
    • Update wallet
  • Relays
    • Relays API
    • Create subscription
  • Webhooks
    • Webhooks API
    • Webhook Signature Verification
    • Get all webhooks
    • Create a webhook
    • Delete a webhook
  1. Cards

Replace or renew card

POST
/customers/v1/cards/{id}/{action}
Renew or replace an existing card based on the action provided (replace or renew).

Request

Path Params

Header Params

Body Params application/json

Example
{
    "reason": "string",
    "expiry": "string"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/customers/v1/cards//' \
--header 'Authorization: Bearer {{access_token}}' \
--header 'idempotency-key: {{$string.uuid}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "reason": "string",
    "expiry": "string"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "id": "1b8ecc17-4edd-4b74-ae4f-208aeb78f105",
    "type": "PHYSICAL",
    "wallet_id": "7b050dab-889e-5d33-6142-0f7cacb90f2a",
    "created_at": "2025-01-13T17:29:20.127Z",
    "updated_at": "2025-01-13T17:29:20.127Z",
    "status": "SUSPENDED",
    "external_id": "1111111",
    "last_four_digit": "1111",
    "expiry": "2011-10-04T06:36:49.799Z",
    "program_id": "a95b68b6-7bf1-56d6-fbcc-fc235b6b824e",
    "m_pan": "1111***1111"
}
Modified at 2025-01-27 04:36:39
Previous
Update card status
Next
Generate card secret
Built with