1. Webhooks (Payland → your server)
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. Webhooks (Payland → your server)

SIMULATE card.created

POST
/
Sends a signed, production-identical card.created delivery to {{webhook_url}}. Set the webhook_url and webhook_secret collection variables first (the signature is computed with webhook_secret). Your endpoint should: verify the signature over the RAW body → respond 2xx quickly → activate the card on your side (match by data.id = the card_... you stored at Create Card).

Request

Header Params

Body Params application/json

Examples

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.paylandcard.com/' \
--header 'User-Agent: Payland-Card-Webhook/1' \
--header 'X-Payland-Event: card.created' \
--header 'X-Payland-Delivery: whd_{{$guid}}' \
--header 'X-Payland-Signature: sha256={{webhook_signature}}' \
--header 'Content-Type: application/json' \
--data '{
    "id": "evt_01kx1z6d1nc0v9k5m2q8e7r4wt",
    "event": "card.created",
    "created_at": "2026-07-08T12:03:00+00:00",
    "data": {
        "id": "card_01kx0hqyr1v9ravmyhqdwzky7c",
        "user_id": "usr_01kx0hq7p3y52m0fbwn4gftzht",
        "brand": "VISA",
        "masked_pan": "401927******9855",
        "last4": "9855",
        "exp_month": 7,
        "exp_year": 2029,
        "status": "active",
        "balance": 0,
        "currency": "USD"
    }
}'
Response Response Example
{}
Modified at 2026-07-17 06:22:49
Previous
Webhooks (Payland → your server)
Next
SIMULATE card.creation_failed
Built with