1. Cards
Payland Card
  • Authentication
  • Users
    • Create User
      POST
    • Get User
      GET
    • City Codes
      GET
  • Cards
    • Create Card
      POST
    • Get Card
      GET
    • Load Funds
      POST
    • Card Transactions
      GET
    • Freeze Card
      POST
    • Unfreeze Card
      POST
    • Card Details
      GET
    • Delete Card
      DELETE
  • Webhooks (Payland → your server)
    • SIMULATE card.created
      POST
    • SIMULATE card.creation_failed
      POST
  1. Cards

Delete Card

DELETE
/api/v1/cards/{{card_id}}
The card is terminated at the provider; any remaining card balance is automatically refunded to your tenant balance (refunded_amount). Irreversible.

Request

Header Params

Responses

🟢200
application/json
Bodyapplication/json

🟠410
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff --request DELETE 'https://api.paylandcard.com/api/v1/cards/{{card_id}}' \
--header 'X-Api-Key: {{api_key}}' \
--header 'X-Timestamp: {{timestamp}}' \
--header 'X-Signature: {{signature}}' \
--header 'Accept: application/json'
Response Response Example
200 - 200 — Deleted (remaining balance refunded)
{
    "data": {
        "id": "card_01kx0hqyr1v9ravmyhqdwzky7c",
        "status": "deleted",
        "refunded_amount": 25000
    },
    "status": true
}
Modified at 2026-07-17 06:22:49
Previous
Card Details
Next
Webhooks (Payland → your server)
Built with